fix(anthropic-responses): type structured output strictness

This commit is contained in:
eugene-yao-zocdoc 2026-08-25 12:29:18 -04:00
parent 690656e2b3
commit 482e712da1

View file

@ -36,6 +36,7 @@ AnthropicInputSchema = TypedDict(
class AnthropicOutputSchema(TypedDict, total=False):
type: Required[Literal["json_schema"]]
schema: Required[dict]
strict: ReadOnly[bool]
class AnthropicOutputConfig(TypedDict, total=False):