fix: Fix ImageContent schema to use proper default value (#234)

This commit is contained in:
Donghee Na
2026-03-13 11:42:22 +09:00
committed by GitHub
parent 6ae73c0c69
commit 737cf076a0

View File

@@ -41,7 +41,7 @@ class ImageUrl(BaseModel):
class ImageContent(BaseModel):
type: Literal["image_url"] = "image"
type: Literal["image_url"] = "image_url"
image_url: ImageUrl