Skip to content

Commit

Permalink
fix imageUrl type error
Browse files Browse the repository at this point in the history
  • Loading branch information
alt-glitch committed Jul 3, 2024
1 parent c0c862b commit ee7956a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agents-api/agents_api/autogen/openapi_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -841,7 +841,7 @@ class ImageUrl(BaseModel):
"""
URL or base64 data url (e.g. `data:image/jpeg;base64,<the base64 encoded image>`)
"""
detail: Detail | None = "auto"
detail: Detail | None = "auto" # pytype: disable=annotation-type-mismatch
"""
image detail to feed into the model can be low | high | auto
"""
Expand Down

0 comments on commit ee7956a

Please sign in to comment.