Skip to content
4 changes: 2 additions & 2 deletions src/agents/agent_output.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ def __init__(self, output_type: type[Any], strict_json_schema: bool = True):
except UserError as e:
raise UserError(
"Strict JSON schema is enabled, but the output type is not valid. "
"Either make the output type strict, or pass output_schema_strict=False to "
"your Agent()"
"Either make the output type strict, "
"or wrap your type with AgentOutputSchema(your_type, strict_json_schema=False)"
) from e

def is_plain_text(self) -> bool:
Expand Down