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

Fix Schema Validation for AgentOutput #768

Merged
merged 1 commit into from
Feb 19, 2025
Merged

Conversation

XxAlonexX
Copy link

Description

This PR addresses the schema validation issue for the AgentOutput class in the agent/views.py file. The previous implementation allowed an empty array for the action field, which caused errors in function calls. This update ensures that the action field is properly defined, requiring at least one action to be specified.


Changes Made

Updated AgentOutput Class

  • Defined the action field with proper metadata using Pydantic's Field.
  • Set min_items=1 to enforce that at least one action is provided.
  • Added a description to clarify the purpose of the field.
class AgentOutput(BaseModel):
    ...
    action: list[ActionModel] = Field(
        ...,  # This means the field is required
        description="List of actions to execute",
        min_items=1,  # Ensure at least one action is provided
    )

Modified type_with_custom_actions Method

  • Ensured that the new action field schema is preserved when creating dynamic models.
@staticmethod
def type_with_custom_actions(custom_actions: Type[ActionModel]) -> Type['AgentOutput']:
    ...
    action=(
        list[custom_actions],
        Field(
            ...,
            description="List of actions to execute",
            min_items=1
        )
    ),

Testing

  • The changes have been tested against the existing functionality to ensure compatibility.
  • Additional tests can be added to verify the behavior of the AgentOutput class with various action inputs.

Related Issues

@MagMueller MagMueller merged commit 94b5f61 into browser-use:main Feb 19, 2025
2 checks passed
AryamanParida pushed a commit to AryamanParida/browser-use that referenced this pull request Mar 7, 2025
Fix Schema Validation for AgentOutput
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Invalid schema for function 'AgentOutput': [] is not of type 'object'.
2 participants