Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion google/genai/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -10837,7 +10837,11 @@ class TextResponseFormat(_common.BaseModel):
default=None,
description="""Optional. The IANA standard MIME type of the response.""",
)
schema: Optional[Any] = Field(default=None, description="""Optional. The JSON schema that the output should conform to. Only applicable when mime_type is APPLICATION_JSON.""") # type: ignore[assignment]
jsonSchema: Optional[Any] = Field(
alias='schema',
default=None,
description="""Optional. The JSON schema that the output should conform to. Only applicable when mime_type is APPLICATION_JSON.""",
)


class TextResponseFormatDict(TypedDict, total=False):
Expand Down
Loading