AI Agents & Orchestration

AI Model Landscape

Last updated 2026-08-01

What's new

2026-08-01
  • Anthropic (the company behind the AI model) released a guide for Opus 5, their newest AI model, which tells you to simplify your prompts (the instructions you give the AI) by removing certain lines.
  • The guide suggests giving Opus 5 the entire task at once, rather than breaking it into steps, as this newer model works better with complete instructions.
  • It's important to clearly state what the AI should not do, to avoid it adding unnecessary work or content, which could waste your time and usage limits (the amount of data you can use with the AI).
  • When the AI finishes a task, it will tell you about it, but you should set limits on how much it can write in its reply and in the actual task it's completing.

Key points

What it is

  • AI models are programs that generate text, images, or simulate environments, created by companies like Anthropic, OpenAI, and Google.
  • The AI model landscape is the constantly changing collection of these models, with new ones released often, each shifting what's possible.
  • Capability overhang refers to models that are far more advanced than the infrastructure (supporting systems) around them.
  • World models are AIs that simulate physical environments, creating a new area of competition among major labs.

How to use it

  • To start, download HubSpot’s free AI agents cheat sheet to see which tools fit your needs and try one workflow immediately.
  • Build an AI agent by creating a folder with instructions, tool access, and teaching examples, then use a single agent loop to run it.
  • Treat AI agents as distributed systems, focusing on reliable infrastructure rather than just better prompts.
  • Design agents assuming future models will be better, building features that current models will catch up to eventually.

Watch out for

  • Avoid telling the AI it’s an expert in a field, as this can backfire with more literal models; instead, be explicit about files and tasks.
  • If an AI agent makes a mistake, change the system to prevent that class of error, not just rerun the same prompt.
  • Don’t build only for current model capabilities, as this makes your work easy to copy; design for future, more powerful models.
  • Be aware of the split in the AI market between US closed models and Chinese open-source models, and choose what fits your needs.

Tools named

  • Claude (a specific AI model), Opus (a version of Claude), HubSpot’s free AI agents cheat sheet (a guide to AI tools and prompts), Claude Code (an interface for generating consistent outputs)

Lesson 1: What is AI Model Landscape and why it matters

The AI model landscape is the fast-moving array of models from providers like Anthropic, OpenAI, and Google, plus specialized entrants in video and simulation. New models arrive constantly, often monthly, and each one shifts what’s possible. This matters because your development strategy depends on anticipating these shifts, not just coding for today’s models. If you build only for the current level of capability, your work becomes easy to copy; instead, design agentic applications (AI that takes multi-step actions) for future, more powerful models.

The landscape also explains the capability overhang (models far ahead of everything around them). Since AI is so capable, the real challenge isn’t the model itself—it’s the infrastructure around it. Operational overhead, fine-tuning complexity, and unpredictable scaling costs dominate. Treat AI agents as distributed systems (multiple parts working together), where infrastructure must be deterministic (reliable and predictable) even though models are stochastic (random and variable). Better systems win, not better prompts.

The landscape is expanding beyond language. World models (AIs that simulate physical environments) are becoming a separate platform war, with major labs circling the same idea. Intelligence is commoditized; your proprietary processes and historical context remain unique. So, your job is to plug your business knowledge into the right model, giving it the right framework to work within, rather than relying on any single provider's latest release.

Sources

Lesson 2: How to use AI Model Landscape: step-by-step

To start with AI models (programs that generate text or images), know that the landscape (range of available tools) is wide. Download HubSpot’s free AI agents cheat sheet to see who each tool is for and what it does best. It includes real prompts you can copy and paste immediately, so pick one workflow and try it today. For example, connect Claude (a specific AI model) to Excel to automate data tasks—this works with versions like Opus.

To build your own agent (a model that takes actions), remember an agent is just a folder with three things: instructions, tool access, and teaching examples. Start in plan mode to write a clear prompt before letting the agent run. The code loops through steps: the agent reasons, hits the model, asks if it should use a tool, then acts, repeating until finished. This is called a single agent loop (simplest pattern). Levels of autonomy go from basic to self-directed research, which is mostly hypothetical.

For research, use a model landscape tool to understand which model fits which task—many are free. Compare fixed step versus dynamic reasoning to avoid headaches. Automations follow set steps, while agents use judgment. Give your agent memory, connect the right tools, and write a specific prompt to make it work. Finally, treat Claude Code as your interface to generate consistent, repeatable outputs across models.

Sources

Lesson 3: Best practices and pitfalls

Stop telling the AI it’s an expert in whatever field it’s working on. That advice is now backfiring as models get more literal. Instead, be explicit about specific files the AI needs to reference and what you want it to do with them. This is a common mistake — people get impatient and expect great results from a simple prompt, but the model needs clear goals, tools, and context baked in.

When an AI agent makes a mistake, don’t just rerun the same prompt and hope it works. Change the system so that entire class of error doesn’t happen again. This is called harness engineering (building feedback loops that guide a model before, during, and after it answers). You don’t build agents so much as you build the information they read. The agent is just whatever model you point at your information hierarchy — whether it’s Claude, ChatGPT, or another model that reads that same structure.

Design your agents assuming future models will be better. If you only build for current model capability, your work becomes easy to copy. Build features that assume models will catch up eventually. When evaluating an agent, identify its known failure modes, measure costs, and keep a golden data set (a fixed set of examples to test against). Accuracy should improve over iterations.

For research work, the model can write code, run experiments, debug failures, and compare outputs across long task chains. The direction of the research — what to experiment with and taste — still belongs to humans. Remember that the AI market splits into US closed models versus Chinese open-source models, but for many companies either camp’s tools are good enough.

Sources