Skip to content

pydantic_ai.exceptions

PydanticAIDeprecationWarning

Bases: UserWarning

Warning emitted when a deprecated Pydantic AI API is used.

Inherits from UserWarning instead of DeprecationWarning so that deprecations are visible by default at runtime, following the approach described in https://sethmlarson.dev/deprecations-via-warnings-dont-work-for-python-libraries.

CostCalculationFailedWarning

Bases: Warning

Warning raised when cost calculation fails.

CostNotFoundWarning

Bases: Warning

Warning raised when cost is not found.

ModelRetry

Bases: Exception

Exception to raise to request a model retry.

Can be raised from tool functions, output validators, and capability hooks (such as after_model_request, after_tool_execute, etc.) to send a retry prompt back to the model asking it to try again.

For a terminal failure the model should see but not retry, raise ToolFailed instead.

Attributes

message

The message to return to the model.

Type: str Default: message

Methods

__get_pydantic_core_schema__

@classmethod

def __get_pydantic_core_schema__(cls, _: Any, __: Any) -> core_schema.CoreSchema

Pydantic core schema to allow ModelRetry to be (de)serialized.

Returns

core_schema.CoreSchema

ToolFailed

Bases: Exception

Exception to raise to report a terminal tool failure to the model.

Raise this when a tool call is done and has failed — a missing resource, an unsupported operation, a definitive upstream error — and you want the model to see the failure and adapt rather than try the same call again. Can be raised from tool functions, args validators, and tool validation/execution hooks.

Like ModelRetry, this produces a failed tool result the model sees; unlike ModelRetry it does not prepend retry/correction instructions and does not consume the tool’s retry budget. Bound repeated failures with UsageLimits at the run level instead.

Attributes

message

The failure message to return to the model.

Type: str Default: message

Methods

__get_pydantic_core_schema__

@classmethod

def __get_pydantic_core_schema__(cls, _: Any, __: Any) -> core_schema.CoreSchema

Pydantic core schema to allow ToolFailed to be (de)serialized.

Returns

core_schema.CoreSchema

CallDeferred

Bases: Exception

Exception to raise when a tool call should be deferred.

See tools docs for more information.

Constructor Parameters

metadata : dict[str, Any] | None Default: None

Optional dictionary of metadata to attach to the deferred tool call. This metadata will be available in DeferredToolRequests.metadata keyed by tool_call_id.

ApprovalRequired

Bases: Exception

Exception to raise when a tool call requires human-in-the-loop approval.

See tools docs for more information.

Constructor Parameters

metadata : dict[str, Any] | None Default: None

Optional dictionary of metadata to attach to the deferred tool call. This metadata will be available in DeferredToolRequests.metadata keyed by tool_call_id.

SkipModelRequest

Bases: Exception

Exception to raise in before/wrap model request hooks to skip the model call.

The provided response will be used instead of calling the model.

Note: when raised in before_model_request, any message history modifications made by earlier capabilities in that hook will not be persisted to the agent’s message history, since the request preparation is aborted.

SkipToolValidation

Bases: Exception

Exception to raise in before/wrap tool validate hooks to skip validation.

The provided args will be used as the validated arguments.

SkipToolExecution

Bases: Exception

Exception to raise in before/wrap tool execute hooks to skip execution.

The provided result will be used as the tool result.

UserError

Bases: RuntimeError

Error caused by a usage mistake by the application developer — You!

Attributes

message

Description of the mistake.

Type: str Default: message

UndrainedPendingMessagesError

Bases: UserError

Error that used to be raised when an agent run ended with messages still queued via enqueue.

A bare async for node in agent_run loop used to skip the node hooks, so 'when_idle' messages and end-of-run redirects (which drain in after_node_run) were stranded. Bare iteration now advances through AgentRun.next() like every other way of driving a run, so pending messages always drain and this error is no longer raised. It is kept so existing except clauses keep working.

AgentRunError

Bases: RuntimeError

Base class for errors occurring during an agent run.

Attributes

message

The error message.

Type: str Default: message

RunCancelled

Bases: AgentRunError

Raised when the agent run was cancelled by the application itself.

Raised by AgentRun.cancel() and RunContext.cancel(). This is a normal, catchable application-level outcome: the run stopped because your own code asked it to. External cancellation of the task running the agent (asyncio.Task.cancel(), a timeout scope, workflow cancellation under durable execution) is infrastructure-level and keeps propagating as asyncio.CancelledError instead — it is never translated into this exception, and when both race, the external cancellation wins. (On Python 3.10, which lacks Task.uncancel(), the race cannot be disambiguated and a requested first-party cancellation wins instead.)

Everything the run completed before the cancellation took effect — including the partial response of an interrupted stream and the results of tool calls that finished — is preserved in all_messages(): pass it as message_history to a new run (with a new user prompt or not) to resume the conversation; any tool calls that never produced a result are automatically closed out with synthesized outcome='interrupted' returns before the history is sent to a model.

Cancellation is terminal: capability hooks (wrap_run, wrap_node_run, on_run_error) may observe it and clean up, but cannot recover a cancelled run into a successful result.

Attributes

response

Return the last response from the message history.

Type: ModelResponse

timestamp

Return the timestamp of the last response.

Type: datetime

usage

Return the usage of the cancelled run.

Type: RunUsage

metadata

Metadata associated with this agent run, if configured.

Type: dict[str, Any] | None

run_id

The unique identifier for the agent run, or None if it was cancelled before starting.

Type: str | None

conversation_id

The conversation identifier, or None if the run was cancelled before starting.

Type: str | None

Methods

from_cancellation

@classmethod

def from_cancellation(cls, exc: BaseException) -> RunCancelled | None

Recover run state from a cancellation-related exception.

External cancellation of a plain agent.run() keeps its standard asyncio semantics. Catch it with except asyncio.CancelledError as exc, then call RunCancelled.from_cancellation(exc) to access the partial run state attached by Pydantic AI. This also works with the TimeoutError raised by asyncio.timeout() or asyncio.wait_for(), whose exception chain contains the original CancelledError. An external CancelledError must keep propagating for timeouts and task groups to tear down correctly, so re-raise it after capturing the state rather than returning from the handler; only a first-party RunCancelled is yours to consume.

Passing a RunCancelled directly returns the same instance, providing uniform handling for first-party and external cancellation paths.

Python 3.11+ preserves the exception instance across an await task boundary. Python 3.10 recreates the CancelledError there, but chains the original exception — and the attached run state — via __context__, which this method traverses; the chain is attached only to the first await of the cancelled task, so later awaits of the same task see an unchained exception. Use capture_run_messages() as the fallback when only message history is needed.

Returns

RunCancelled | None

all_messages
def all_messages() -> list[ModelMessage]

Return the complete resumable history of the cancelled run.

This is a DETACHED snapshot of the run’s message history at termination, ready to pass as message_history for a resumed run.

Returns

list[ModelMessage] — List of messages.

all_messages_json
def all_messages_json() -> bytes

Return all messages from all_messages as JSON bytes.

Returns

bytes — JSON bytes representing the messages.

new_messages
def new_messages() -> list[ModelMessage]

Return the messages produced during the cancelled run.

Messages provided via message_history and messages from older runs are excluded.

Returns

list[ModelMessage] — List of new messages.

new_messages_json
def new_messages_json() -> bytes

Return new messages from new_messages as JSON bytes.

Returns

bytes — JSON bytes representing the new messages.

SuspendedResponseExpired

Bases: AgentRunError

Raised when resuming a suspended response whose server-side job is no longer available.

Suspended/background jobs are only resumable within the provider’s retention window (e.g. ~10 minutes for OpenAI background mode). Resuming a persisted suspended response after that window raises this instead of an opaque provider HTTP error; start a new run from the preceding messages to retry from scratch.

UsageLimitExceeded

Bases: AgentRunError

Error raised when a Model’s usage exceeds the specified limits.

ConcurrencyLimitExceeded

Bases: AgentRunError

Error raised when the concurrency queue depth exceeds max_queued.

UnexpectedModelBehavior

Bases: AgentRunError

Error caused by unexpected Model behavior, e.g. an unexpected response code.

Attributes

message

Description of the unexpected behavior.

Type: str Default: message

body

The body of the response, if available.

Type: str | None Default: json.dumps(json.loads(body), indent=2)

ContentFilterError

Bases: UnexpectedModelBehavior

Raised when content filtering is triggered by the model provider.

ModelAPIError

Bases: AgentRunError

Raised when a model provider API request fails.

Attributes

model_name

The name of the model associated with the error.

Type: str Default: model_name

ModelHTTPError

Bases: ModelAPIError

Raised when a model provider response has a status code of 4xx or 5xx.

Attributes

status_code

The HTTP status code returned by the API.

Type: int Default: status_code

body

The body of the response, if available.

Type: object | None Default: body

headers

Response headers from the provider, with keys lowercased for consistent access.

For example, use exc.headers.get('retry-after') to read the Retry-After header regardless of provider casing. None when the provider does not supply headers (e.g. gRPC-based providers or synthesised errors).

Type: dict[str, str] | None Default: {(k.lower()): v for k, v in (headers.items())} if headers is not None else None

suggested_model_id

A close known model identifier suggested from a provider-confirmed model-name error.

Type: str | None Default: suggested_model_id

retry_after

Seconds to wait before retrying, parsed from the Retry-After response header.

Returns None when the header is absent or cannot be parsed. The header value is interpreted first as an integer number of seconds, then as an HTTP-date string.

Type: float | None

FallbackExceptionGroup

Bases: ExceptionGroup[Any]

A group of exceptions that can be raised when all fallback models fail.

ToolRetryError

Bases: Exception

Exception used to signal a ToolRetry message should be returned to the LLM.

ToolFailedError

Bases: Exception

Exception used to signal a failed ToolReturnPart should be returned to the LLM.

IncompleteToolCall

Bases: UnexpectedModelBehavior

Error raised when a model stops due to token limit while emitting a tool call.

MessageHistoryMutatedWarning

Bases: Warning

Warning raised when in-place mutation of the message history is detected at the end of a run.

Mutating messages that are already part of the run’s history in place (e.g. ctx.messages[0].parts[0].content = '...' from a tool) is not supported: the per-request gen_ai.input.messages span attribute caches each message’s serialized form, so spans recorded after the mutation may not match the messages actually sent to the model. The run-level pydantic_ai.all_messages attribute is always serialized fresh and does reflect the mutation. To transform history mid-run, build new message or part objects instead — e.g. with dataclasses.replace, passing the message a new parts list (replacing a message in the history and reassigning its parts list are both safe) — for instance in a history processor (ProcessHistory).

The warning is best-effort: it’s raised when a mutation is detected at the end of a successful run, which covers messages still present in the final history. Errored runs aren’t checked — with warnings configured as errors, the warning would displace the run’s own exception. Its absence does not guarantee that no stale span was recorded.