ant_ai.agent.base
BaseAgent
pydantic-model
Bases: BaseModel
Base class for all agent implementations.
Owns the public invocation and streaming APIs, hook chain, and
identity fields. Subclasses implement _make_loop() to provide the
reasoning loop.
Fields:
-
name(str) -
system_prompt(str) -
llm(ChatLLM) -
description(str) -
tools(list[Tool]) -
hooks(list[AgentHook]) -
max_retries(int)
Source code in src/ant_ai/agent/base.py
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 | |
name
pydantic-field
name: str = 'BaseAgent'
Display name used in routing and observability.
system_prompt
pydantic-field
system_prompt: str
System instruction for the LLM.
description
pydantic-field
description: str = 'A base agent.'
Human-readable description of the agent for documentation.
max_retries
pydantic-field
max_retries: int = 3
Maximum number of times to retry after a hook returns RETRY.
stream
async
stream(
state: State,
*,
max_steps: int = 10,
ctx: InvocationContext | None = None,
response_schema: type[BaseModel] | None = None,
) -> AsyncGenerator[Event]
Stream events for a single agent turn.
Pass response_schema to request structured output on the
FinalAnswerEvent. When provided, the final event content will be
valid JSON matching that schema.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
state
|
State
|
Current agent state, including message history and other execution context. |
required |
max_steps
|
int
|
Maximum number of loop steps before stopping. |
10
|
ctx
|
InvocationContext | None
|
Invocation context for the current run. |
None
|
response_schema
|
type[BaseModel] | None
|
Schema for structured output on the
|
None
|
Yields:
| Name | Type | Description |
|---|---|---|
Event |
AsyncGenerator[Event]
|
Events produced during execution, including intermediate |
AsyncGenerator[Event]
|
updates and the final answer event. |
Source code in src/ant_ai/agent/base.py
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 | |
ainvoke
async
ainvoke(
state: State,
*,
max_steps: int = 10,
ctx: InvocationContext | None = None,
response_schema: type[BaseModel] | None = None,
) -> str
Run a single agent turn and return the final answer.
This is the asynchronous counterpart to invoke. Internally, it
consumes stream() and returns the content of the FINAL_ANSWER
event.
Pass response_schema to request structured output on the
FINAL_ANSWER event. When provided, the returned string will contain
valid JSON matching that schema.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
state
|
State
|
Current agent state, including message history and other execution context. |
required |
max_steps
|
int
|
Maximum number of loop steps before stopping. |
10
|
ctx
|
InvocationContext | None
|
Invocation context for the current run. |
None
|
response_schema
|
type[BaseModel] | None
|
Schema for structured output on the
|
None
|
Returns:
| Type | Description |
|---|---|
str
|
The content of the |
Source code in src/ant_ai/agent/base.py
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 | |
invoke
invoke(
state: State,
*,
max_steps: int = 10,
ctx: InvocationContext | None = None,
response_schema: type[BaseModel] | None = None,
) -> str
Run a single agent turn and return the final answer.
This is the synchronous counterpart to ainvoke. Internally, it runs
the asynchronous invocation path and returns the content of the
FinalAnswerEvent.
Pass response_schema to request structured output on the
FinalAnswerEvent. When provided, the returned string will contain
valid JSON matching that schema.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
state
|
State
|
Current agent state, including message history and other execution context. |
required |
max_steps
|
int
|
Maximum number of loop steps before stopping. |
10
|
ctx
|
InvocationContext | None
|
Invocation context for the current run. |
None
|
response_schema
|
type[BaseModel] | None
|
Schema for structured output on the
|
None
|
Returns:
| Type | Description |
|---|---|
str
|
The content of the |
Raises:
| Type | Description |
|---|---|
RuntimeError
|
If called from a thread with an active event loop. |
Source code in src/ant_ai/agent/base.py
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 | |
add_tool
abstractmethod
add_tool(tool: Tool) -> None
Register a tool with the agent.
Source code in src/ant_ai/agent/base.py
220 221 222 223 | |