Bourne Forge AI
Chapter 7, Part 2of 8 chapters

The Future of AI Workflows: From Prompt Engineers to AI Systems Architects

By Mark Bourne

Model Routing

Today many users manually choose between Claude, ChatGPT, and other AI systems. Future workflows may increasingly make that decision automatically.

Different models might be selected according to:

  • task type,
  • cost,
  • latency,
  • context requirements,
  • reliability,
  • tool availability,
  • privacy requirements.

A simple task might use a fast, inexpensive model. Complex architectural analysis might use a more capable reasoning model. A specialised task might use a domain-specific system.

This resembles routing in distributed computing. Work is directed toward the resource most appropriate for handling it.

The question therefore evolves again.

Not:

Which model should I use?

But:

How should my system decide which model to use?

That is an architectural question.

Cost Becomes an Engineering Variable

When AI is used occasionally through a chat interface, cost may be relatively invisible. At scale, cost becomes architectural.

Imagine an automated workflow handling thousands of requests.

A seemingly minor difference in:

  • token usage,
  • model selection,
  • number of iterations,
  • retrieval volume,
  • validation stages

can significantly affect operating costs.

Workflow optimisation therefore involves balancing:

Quality + Reliability + Latency + Cost

The most powerful model is not necessarily the most appropriate model for every stage.

Again, this mirrors traditional infrastructure engineering. You do not deploy the largest possible server for every workload. You choose resources appropriate to the task.

Context Engineering

As prompting evolves, another discipline is becoming increasingly important:

Context engineering.

The quality of an AI response depends heavily on the information available when the model performs the task.

That context may include:

  • instructions,
  • documents,
  • database records,
  • source code,
  • previous decisions,
  • user preferences,
  • tool results.

The challenge is no longer simply:

How should I word the prompt?

It becomes:

What information should this system know at this moment?

Too little context produces uninformed answers. Too much irrelevant context can introduce noise. Incorrect context can be worse than no context at all.

Selecting, validating, and maintaining context therefore becomes part of the architecture.

Retrieval as Infrastructure

This leads naturally to retrieval.

AI systems increasingly operate alongside information stores containing:

  • documentation,
  • knowledge bases,
  • code repositories,
  • business records,
  • policies,
  • research.

Instead of relying entirely on knowledge embedded within a model, workflows retrieve relevant information when required.

The architecture becomes:

Question → Retrieve → Evaluate → Generate → Verify.

This can substantially improve grounding. But retrieval introduces its own failure modes.

What if the wrong document is retrieved?

What if the document is outdated?

What if two sources conflict?

What if no reliable source exists?

Retrieval does not eliminate the need for evaluation.

It simply moves part of the reliability problem elsewhere in the system.

Versioning AI Workflows

Software engineers version code. Infrastructure engineers version configuration. AI practitioners should increasingly version workflows.

A workflow may contain:

  • system instructions,
  • prompts,
  • retrieval rules,
  • model choices,
  • tool permissions,
  • evaluation criteria,
  • approval gates.

If any of these change, behaviour may change.

Without versioning, teams may discover that a previously reliable workflow has gradually drifted.

Versioning allows comparison. Workflow 1.2 may outperform Workflow 1.1. The difference can be measured. Changes can be reversed. Experiments become reproducible.

This is how AI experimentation begins to resemble software engineering.

Testing AI Systems

Traditional software testing asks:

Given known input, does the program produce the expected output?

AI complicates this because acceptable outputs may vary. A writing assistant could produce ten different answers, all of which are valid.

Testing therefore shifts toward evaluation criteria. Examples include:

  • Does the answer contain required facts?
  • Does it avoid prohibited claims?
  • Does it cite appropriate evidence?
  • Does it follow the required structure?
  • Does it recognise uncertainty?
  • Does it escalate when necessary?

This leads toward evaluation suites rather than simple pass/fail unit tests.

The workflow itself becomes testable infrastructure.

Security Must Be Architectural

As AI systems gain access to external tools and information, security becomes inseparable from workflow design.

Potential concerns include:

  • malicious instructions embedded in retrieved content,
  • inappropriate tool access,
  • accidental disclosure of sensitive information,
  • unauthorised actions,
  • compromised external data,
  • excessive permissions.

Trying to solve these problems with one instruction such as:

“Be secure.”

is not enough.

Security must exist at multiple layers. Model behaviour is one layer. Permissions are another. Tool isolation is another. Monitoring is another. Human approval is another.

Architecture provides defence in depth.

The AI Systems Architect

All of these developments point toward an emerging role.

The AI systems architect.

This person does not necessarily spend their day inventing clever prompts. Instead, they design systems in which AI operates reliably.

They think about:

  • information flow,
  • model selection,
  • tool access,
  • context management,
  • failure modes,
  • verification,
  • observability,
  • security,
  • human oversight,
  • cost,
  • maintainability.

These skills should sound familiar. They are extensions of disciplines that already exist in systems engineering, Internet architecture, DevOps, cybersecurity, and software architecture.

AI does not invalidate those disciplines.

It makes them relevant in a new domain.

The Enduring Value of Engineering Principles

Today’s AI systems will change. Model names will change. Interfaces will change. Prompting techniques will change. Agent frameworks will change. Many tools currently considered cutting edge will eventually disappear.

Engineering principles are far more durable.

Reliability matters.

Observability matters.

Security matters.

Repeatability matters.

Failure isolation matters.

Change control matters.

Human accountability matters.

Those principles survived multiple generations of computing because they address fundamental characteristics of complex systems.

AI systems are complex systems.

There is every reason to expect the same principles to remain valuable.

The Real Evolution

The progression can therefore be viewed like this:

  1. 1Chatting — Ask AI questions.
  2. 2Prompting — Improve individual instructions.
  3. 3Workflow Engineering — Design repeatable sequences of AI-assisted tasks.
  4. 4AI Systems Engineering — Integrate models, context, tools, evaluation, security, and human oversight.
  5. 5AI Systems Architecture — Design reliable environments in which multiple intelligent components can operate safely and effectively.

This evolution does not make prompting irrelevant. It puts prompting in perspective.

A prompt is an important component.

But it is not the architecture.

Key Takeaways

The future of professional AI use is unlikely to revolve around increasingly elaborate prompts. As models improve, many low-level prompting techniques will become less important.

What will remain important is the ability to define objectives, structure workflows, provide trustworthy context, control access, observe behaviour, detect failure, evaluate results, and determine where humans must remain responsible.

In other words:

The value is moving upward.

From prompts to workflows.

From workflows to systems.

From systems to architecture.

The practitioners who understand that transition will be better prepared for whatever generation of AI comes next.

Because the enduring skill is not knowing exactly how to talk to today’s AI.

It is knowing how to engineer reliable systems around tomorrow’s AI.

About This Book

This page is part of Prompt and Workflow Experiments: What Actually Improves AI Results?, an eight-chapter deep dive on reliable AI engineering.

More from the Notes

Short technical notes and observations, written up as experiments produce something worth documenting.

Back to Notes

Was this useful?

Published