Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Have any free model provider that can be used for structure output? (output_type argument when creating an agent)? #349

Closed
phuccodetrau opened this issue Mar 26, 2025 · 2 comments
Labels
question Question about using the SDK

Comments

@phuccodetrau
Copy link

@DataClass
class EvaluationFeedback:
feedback: str
score: Literal["pass", "needs_improvement", "fail"]

evaluator = Agent[None](
name="evaluator",
model="deepseek/deepseek-chat-v3-0324:free",
instructions=(
"You evaluate a story outline and decide if it's good enough."
"If it's not good enough, you provide feedback on what needs to be improved."
"Never give it a pass on the first try."
),
output_type=EvaluationFeedback,
)

I have used api from Openrouter for the deepseek model like above but it seems that it can't cast the model output to the predefined Evaluation Feedback

agents.exceptions.ModelBehaviorError: Invalid JSON when parsing I can refine it further! for TypeAdapter(OutputType); 1 validation error for typed-dict
Invalid JSON: expected ident at line 1 column 3 [type=json_invalid, input_value=' I can refine it further!', input_type=str]
For further information visit https://errors.pydantic.dev/2.10/v/json_invalid

Process finished with exit code 1

@phuccodetrau phuccodetrau added the question Question about using the SDK label Mar 26, 2025
@rm-openai
Copy link
Collaborator

It might work if you add stuff like this to the prompt:

Only output JSON. Do not output anything else. I will be parsing this with Pydantic so output valid JSON only. Follow this JSON schema:
{EvaluationFeedback.model_json_schema()}

@phuccodetrau
Copy link
Author

thank you

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Question about using the SDK
Projects
None yet
Development

No branches or pull requests

2 participants