Skip to main content

What are Agents?

Agents are autonomous execution units that orchestrate LLM interactions with tool calling. Without tools, an agent functions as a basic LLM. The simplest agent requires just a name and model:
For a full step-by-step guide, check the quickstart section or see practical examples in the examples section.

Reading guide

The sidebar follows a basics → platform → production path. You can jump anywhere, but this order matches how most agents are built:
  1. Tools — give the agent capabilities (the core primitive)
  2. Structured output — constrain what comes back
  3. MemoryMemory compaction — multi-turn context, then keeping it within the window
  4. Skills — domain packages (knowledge + tools) once the agent loop makes sense
  5. Dynamic agents — runtime prompts and tool sets
  6. Background tasks · Commands — utilities (async tools, slash shortcuts)
After Workflows, see Human in the loop for approvals, suspend(), and durable resume (agents, workflow steps, and tools). This page covers running agents, models, and I/O. The sections below are the reference for that; the linked pages go deeper on each topic.

Model Providers

You can specify any model using the “provider/model” format. See all supported models in the Model Reference. Some models require specific parameters (like max_tokens for Claude). Pass it as a top-level field:
Note: Make sure to define all required environment variables—such as the API key model that you need—in your .env file.

Fallback Models

Use FallbackModel when you want an agent to try another model if the primary provider is rate limited, temporarily unavailable, times out, or returns a retryable server error.
Models are tried in order. By default, each model gets two retries before Timbal moves to the next model in the chain. If every model fails with a retryable provider error, Timbal raises FallbackExhausted with the per-model errors. For per-model settings, use ModelEntry:
Fallback only switches models before the first streamed chunk is emitted. If a stream fails after output has started, Timbal raises the error instead of silently switching models and risking duplicated or inconsistent output.

Thinking and reasoning

Some models support extended thinking before responding. Check per-model capabilities on the Model Reference pages. Configure at construction time via model_params (per-request overrides use provider_params — see Overriding Model Configuration below):
Define tools as Python functions - the framework handles schema generation, parameter validation, and execution orchestration.

Running Agents

Execute agents by calling them with a prompt parameter and using .collect() to get the result:

Streaming Events

For real-time processing, you can stream events as they happen:

Approval-Required Tools

Any runnable — Tool, Agent, or Workflow step — can pause for human approval before it runs. Mark it with requires_approval, listen for ApprovalEvent, and resume by calling the runnable again with resume:
The full reference — durable cross-process resume, audit fields, redaction, parallel gates, pending_approvals(), status reasons, usage counters, plus suspend() for asking the user mid-run — lives on the dedicated Human in the Loop section.

Input

Agents communicate through Message objects - Timbal’s data structure that standardizes both input and output.
Agents accept multiple input formats, automatically converting them to Message objects:
The tool can access user_id and role from the input parameters. Input parameters work with both .collect() and streaming.
For more information about accessing input parameters and using the run context, see the Context & State Management page.

Overriding Model Configuration

What if you want to change the model, max_tokens, or thinking config for each run? Instead of creating multiple agents, you can pass these as input parameters. This is useful for A/B testing different models, adjusting token limits per request, or dynamically selecting models based on task complexity.
The parameter names model, max_tokens, and provider_params are reserved and will affect model configuration when passed as input. These parameters will not be available as regular input to your agent. If you need to pass custom data without changing the actual model configuration, use different parameter names (e.g., data_model instead of model if you want to pass a data model name).

Output

Calling .collect() returns an OutputEvent containing the agent’s response. Access the Message via the .output property:
Learn more about events in Events & Streaming.
Important: When using models with thinking enabled, the content array structure changes:
  • content[0] will contain the thinking/reasoning content
  • content[1] will contain the actual text response
Directly accessing result.output.content[0].text may return thinking content instead of the response text. Always use collect_text() to reliably extract the text response, regardless of whether thinking is enabled.

Messages

Messages are the structured data format that agents use to communicate. They contain a role and content, with automatic handling of different content types and provider compatibility.
Messages contain a role and content: Role Types:
  • user - Messages from the user
  • assistant - Messages from the AI agent
  • system - System instructions and context
  • tool - Tool execution results
Content Types:
  • TextContent - Plain text messages
  • FileContent - Files like PDFs, images, documents
  • ToolUseContent - Function calls to tools
  • ToolResultContent - Results from tool executions
Messages can contain different types of content - text, files, tool calls, and tool results. The framework automatically handles complex content structures:
The same message above can be created easily using Message.validate():

Files

Agents can process files directly through the message content system. The framework automatically handles file reading, content extraction, and formatting for the AI model.
The framework supports common document and media formats:
  • Text files (.txt, .md) - Direct content inclusion
  • PDFs (.pdf) - Text extraction with structure preservation
  • Images (.png, .jpg, .gif) - Visual analysis through vision-capable models
  • Spreadsheets (.xlsx, .csv) - Structured data representation
  • Documents (.docx) - Text and formatting extraction
Files are automatically converted to Timbal File objects using File.validate():