Skip to main content
SolvStream
Featured image for Your Next AI Project Might Not Need AI to Run on SolvStream blog
Back to Blog
aiworkflowstoolsbusiness

Your Next AI Project Might Not Need AI to Run

Shaun RichardsonPublished

AI can help you build a useful tool without needing to be part of every use.

ChatGPT or Claude can help you design a calculator, a form that sorts requests or a simple file organiser. Once the job and its rules are clear, ordinary code may be better at running the finished tool.

The question is not simply, “Can AI do this?” It is whether AI is needed while the tool runs, or whether it has already done its part by helping you build it.

AI can help build the tool without running it

There are two different jobs hiding inside many AI ideas.

The first is building the tool. You need to turn a rough idea into clear inputs, rules and outputs. An AI assistant can help you ask better questions, draft a first version, explain unfamiliar code and suggest test cases.

The second is running the finished tool. That part may be much simpler.

If the same inputs should produce the same answer every time, a fixed calculation or rule can often do the work. The model helped while the tool was being built, but it does not need to make a fresh judgement whenever someone presses a button.

This is one reason to fix the process before adding AI. The clearer the job becomes, the easier it is to see where a model helps and where it only adds another moving part.

A simple example

Say you are planning a community event and need a small supply calculator for bottled drinks. This is a made-up example.

You enter the number of guests, how many drinks each person should have, how many bottles come in a pack and the current price of one pack. One drink means one bottle. The tool tells you how many packs to buy and the estimated total.

For 35 guests at two drinks each, you need 70 drinks. If a pack contains 12, the tool rounds up to six packs. At €4.50 per pack, the estimated cost is €27.

That calculation does not need judgement. The quantities, pack size, rounding rule and price are already known. A small piece of code can apply those rules.

ChatGPT or Claude could still help you turn the idea into a simple web page. They could suggest the fields, draft the calculation and explain how to change the price later. But the finished calculator does not need to ask a model how many packs to buy.

The same decision applies anywhere a task has stable rules.

How do you decide which part needs AI?

Before choosing a tool, write down the job in plain language.

  • Same inputs, same rule. If the same inputs should always give you the same result, fixed code is usually the cleaner way to run it.
  • No interpretation required. Adding numbers, converting units, checking a limit or looking up a known value does not need a model to decide anything.
  • Exceptions can be named. If you can list what should happen when a field is empty, a number is too large or a value is missing, those cases can be written into the tool.
  • The answer needs judgement. If the work depends on tone, incomplete information, competing priorities or an unusual situation, keep a person involved. AI may help prepare the decision, but a person should still make it.

This is also a useful test when you are deciding what to automate first. Start with the task, then choose the lightest method that can do it properly.

Simple code can still be wrong

Removing the model from the finished tool does not make the answer automatically right.

Code repeats the rules it was given. If the pack size is wrong, the price is old or the rounding rule was never agreed, it will repeat that mistake neatly every time.

That is why the useful work happens before and around the code:

  1. Agree the inputs and what each one means.
  2. Write the rule in a form a person can check.
  3. Test normal examples and awkward ones.
  4. Show errors clearly instead of producing a plausible-looking answer.
  5. Decide who updates values that can change.

Keep a few examples where you know the correct answer before the tool is built. Run them again after any change. They tell you more than a page that looks finished and a result that looks believable.

AI can help draft those questions and tests. A person still has to confirm that the rules match the real job.

Use the lightest tool that does the job

Pick one repeated task and write down its inputs, rules and output before choosing the tool. If the result should follow the same rule every time, AI can help you build and test it, then fixed code can handle each use. If the answer still depends on judgement or missing information, keep a person involved.

Shaun Richardson

Founder at SolvStream