We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abf39b8 commit 96404c4Copy full SHA for 96404c4
outlines/types/json_schema_utils.py
@@ -58,7 +58,7 @@ def schema_type_to_python(
58
return json_schema_dict_to_pydantic(schema, name)
59
elif caller_target_type == "typeddict":
60
return json_schema_dict_to_typeddict(schema, name)
61
- if caller_target_type == "dataclass":
+ elif caller_target_type == "dataclass":
62
return json_schema_dict_to_dataclass(schema, name)
63
64
return Any
0 commit comments