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

This commit is contained in:
Donghee Na
2026-03-13 10:42:22 +08:00
committed by GitHub
parent 6ae73c0c69
commit 737cf076a0
+1 -1
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