kittycad.models.async_api_call_output

Classes

file_center_of_mass(**data)

File center of mass.

file_conversion(**data)

A file conversion.

file_density(**data)

A file density.

file_mass(**data)

A file mass.

file_surface_area(**data)

A file surface area.

file_volume(**data)

A file volume.

text_to_cad(**data)

Text to CAD.

class kittycad.models.async_api_call_output.file_center_of_mass(**data)[source][source]

File center of mass.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

__init__ uses __pydantic_self__ instead of the more common self for the first arg to allow self as a field name.

__abstractmethods__ = frozenset({})[source]
__annotations__ = {'__class_vars__': 'ClassVar[set[str]]', '__private_attributes__': 'ClassVar[dict[str, ModelPrivateAttr]]', '__pydantic_complete__': 'ClassVar[bool]', '__pydantic_core_schema__': 'ClassVar[CoreSchema]', '__pydantic_custom_init__': 'ClassVar[bool]', '__pydantic_decorators__': 'ClassVar[_decorators.DecoratorInfos]', '__pydantic_extra__': 'dict[str, Any] | None', '__pydantic_fields_set__': 'set[str]', '__pydantic_generic_metadata__': 'ClassVar[_generics.PydanticGenericMetadata]', '__pydantic_parent_namespace__': 'ClassVar[dict[str, Any] | None]', '__pydantic_post_init__': "ClassVar[None | Literal['model_post_init']]", '__pydantic_private__': 'dict[str, Any] | None', '__pydantic_root_model__': 'ClassVar[bool]', '__pydantic_serializer__': 'ClassVar[SchemaSerializer]', '__pydantic_validator__': 'ClassVar[SchemaValidator]', '__signature__': 'ClassVar[Signature]', 'center_of_mass': typing.Optional[kittycad.models.point3d.Point3d], 'completed_at': typing.Optional[datetime.datetime], 'created_at': <class 'datetime.datetime'>, 'error': typing.Optional[str], 'id': <class 'kittycad.models.uuid.Uuid'>, 'model_config': 'ClassVar[ConfigDict]', 'model_fields': 'ClassVar[dict[str, FieldInfo]]', 'output_unit': <enum 'UnitLength'>, 'src_format': <enum 'FileImportFormat'>, 'started_at': typing.Optional[datetime.datetime], 'status': <enum 'ApiCallStatus'>, 'type': typing.Literal['file_center_of_mass'], 'updated_at': <class 'datetime.datetime'>, 'user_id': <class 'kittycad.models.uuid.Uuid'>}[source]
classmethod __class_getitem__(typevar_values)[source]
__class_vars__: ClassVar[set[str]] = {}[source]
__copy__()[source]

Returns a shallow copy of the model.

Return type:

Model

__deepcopy__(memo=None)[source]

Returns a deep copy of the model.

Return type:

Model

__delattr__(item)[source]

Implement delattr(self, name).

Return type:

Any

__dict__[source]
__eq__(other)[source]

Return self==value.

Return type:

bool

__fields__ = {'center_of_mass': FieldInfo(annotation=Union[Point3d, NoneType], required=False), 'completed_at': FieldInfo(annotation=Union[datetime, NoneType], required=False), 'created_at': FieldInfo(annotation=datetime, required=True), 'error': FieldInfo(annotation=Union[str, NoneType], required=False), 'id': FieldInfo(annotation=Uuid, required=True), 'output_unit': FieldInfo(annotation=UnitLength, required=True), 'src_format': FieldInfo(annotation=FileImportFormat, required=True), 'started_at': FieldInfo(annotation=Union[datetime, NoneType], required=False), 'status': FieldInfo(annotation=ApiCallStatus, required=True), 'type': FieldInfo(annotation=Literal['file_center_of_mass'], required=False, default='file_center_of_mass'), 'updated_at': FieldInfo(annotation=datetime, required=True), 'user_id': FieldInfo(annotation=Uuid, required=True)}[source]
property __fields_set__: set[str][source]
classmethod __get_pydantic_core_schema__(_BaseModel__source, _BaseModel__handler)[source]

Hook into generating the model’s CoreSchema.

Parameters:
  • __source – The class we are generating a schema for. This will generally be the same as the cls argument if this is a classmethod.

  • __handler – Call into Pydantic’s internal JSON schema generation. A callable that calls into Pydantic’s internal CoreSchema generation logic.

Return type:

Union[AnySchema, NoneSchema, BoolSchema, IntSchema, FloatSchema, DecimalSchema, StringSchema, BytesSchema, DateSchema, TimeSchema, DatetimeSchema, TimedeltaSchema, LiteralSchema, IsInstanceSchema, IsSubclassSchema, CallableSchema, ListSchema, TuplePositionalSchema, TupleVariableSchema, SetSchema, FrozenSetSchema, GeneratorSchema, DictSchema, AfterValidatorFunctionSchema, BeforeValidatorFunctionSchema, WrapValidatorFunctionSchema, PlainValidatorFunctionSchema, WithDefaultSchema, NullableSchema, UnionSchema, TaggedUnionSchema, ChainSchema, LaxOrStrictSchema, JsonOrPythonSchema, TypedDictSchema, ModelFieldsSchema, ModelSchema, DataclassArgsSchema, DataclassSchema, ArgumentsSchema, CallSchema, CustomErrorSchema, JsonSchema, UrlSchema, MultiHostUrlSchema, DefinitionsSchema, DefinitionReferenceSchema, UuidSchema]

Returns:

A pydantic-core CoreSchema.

classmethod __get_pydantic_json_schema__(_BaseModel__core_schema, _BaseModel__handler)[source]

Hook into generating the model’s JSON schema.

Parameters:
  • __core_schema – A pydantic-core CoreSchema. You can ignore this argument and call the handler with a new CoreSchema, wrap this CoreSchema ({‘type’: ‘nullable’, ‘schema’: current_schema}), or just call the handler with the original schema.

  • __handler – Call into Pydantic’s internal JSON schema generation. This will raise a pydantic.errors.PydanticInvalidForJsonSchema if JSON schema generation fails. Since this gets called by BaseModel.model_json_schema you can override the schema_generator argument to that function to change JSON schema generation globally for a type.

Return type:

Dict[str, Any]

Returns:

A JSON schema, as a Python object.

__getattr__(item)[source]
Return type:

Any

__getstate__()[source]
Return type:

dict[Any, Any]

__hash__ = None[source]
__init__(**data)[source]

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

__init__ uses __pydantic_self__ instead of the more common self for the first arg to allow self as a field name.

__iter__()[source]

So dict(model) works.

Return type:

TupleGenerator

__module__ = 'kittycad.models.async_api_call_output'[source]
__pretty__(fmt, **kwargs)[source]

Used by devtools (https://python-devtools.helpmanual.io/) to pretty print objects.

Return type:

Generator[Any, None, None]

__private_attributes__: ClassVar[dict[str, ModelPrivateAttr]] = {}[source]
__pydantic_complete__: ClassVar[bool] = True[source]
__pydantic_core_schema__: ClassVar[CoreSchema] = {'cls': <class 'kittycad.models.async_api_call_output.file_center_of_mass'>, 'config': {'title': 'file_center_of_mass'}, 'custom_init': False, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_annotation_functions': [], 'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'kittycad.models.async_api_call_output.file_center_of_mass'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.async_api_call_output.file_center_of_mass'>>]}, 'ref': 'kittycad.models.async_api_call_output.file_center_of_mass:93825015397792', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'center_of_mass': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'cls': <class 'kittycad.models.point3d.Point3d'>, 'config': {'title': 'Point3d'}, 'custom_init': False, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_annotation_functions': [], 'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'kittycad.models.point3d.Point3d'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.point3d.Point3d'>>]}, 'ref': 'kittycad.models.point3d.Point3d:93825014233264', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'x': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'float'}, 'type': 'model-field'}, 'y': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'float'}, 'type': 'model-field'}, 'z': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'float'}, 'type': 'model-field'}}, 'model_name': 'Point3d', 'type': 'model-fields'}, 'type': 'model'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'completed_at': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_annotation_functions': [<bound method InnerSchemaValidator.__get_pydantic_json_schema__ of InnerSchemaValidator(core_schema={'type': 'datetime', 'microseconds_precision': 'truncate', 'metadata': {'pydantic_js_annotation_functions': [...], 'pydantic.internal.needs_apply_discriminated_union': False}}, js_schema=None, js_core_schema=None, js_schema_update=None)>]}, 'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'created_at': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'metadata': {'pydantic_js_annotation_functions': [<bound method InnerSchemaValidator.__get_pydantic_json_schema__ of InnerSchemaValidator(core_schema={'type': 'datetime', 'microseconds_precision': 'truncate', 'metadata': {'pydantic_js_annotation_functions': [...]}}, js_schema=None, js_core_schema=None, js_schema_update=None)>]}, 'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'model-field'}, 'error': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'id': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'function': {'function': <class 'kittycad.models.uuid.Uuid'>, 'type': 'no-info'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'function-after'}, 'type': 'model-field'}, 'output_unit': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'lax_schema': {'steps': [{'type': 'str'}, {'type': 'function-plain', 'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}}], 'type': 'chain'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_functions': [<function get_enum_core_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.unit_length.UnitLength:93825014613552', 'strict_schema': {'json_schema': {'function': {'function': <function get_enum_core_schema.<locals>.to_enum>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'python_schema': {'cls': <enum 'UnitLength'>, 'type': 'is-instance'}, 'type': 'json-or-python'}, 'type': 'lax-or-strict'}, 'type': 'model-field'}, 'src_format': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'lax_schema': {'steps': [{'type': 'str'}, {'type': 'function-plain', 'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}}], 'type': 'chain'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_functions': [<function get_enum_core_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.file_import_format.FileImportFormat:93825014566080', 'strict_schema': {'json_schema': {'function': {'function': <function get_enum_core_schema.<locals>.to_enum>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'python_schema': {'cls': <enum 'FileImportFormat'>, 'type': 'is-instance'}, 'type': 'json-or-python'}, 'type': 'lax-or-strict'}, 'type': 'model-field'}, 'started_at': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_annotation_functions': [<bound method InnerSchemaValidator.__get_pydantic_json_schema__ of InnerSchemaValidator(core_schema={'type': 'datetime', 'microseconds_precision': 'truncate', 'metadata': {'pydantic_js_annotation_functions': [...], 'pydantic.internal.needs_apply_discriminated_union': False}}, js_schema=None, js_core_schema=None, js_schema_update=None)>]}, 'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'status': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'lax_schema': {'steps': [{'type': 'str'}, {'type': 'function-plain', 'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}}], 'type': 'chain'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_functions': [<function get_enum_core_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.api_call_status.ApiCallStatus:93825014051056', 'strict_schema': {'json_schema': {'function': {'function': <function get_enum_core_schema.<locals>.to_enum>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'python_schema': {'cls': <enum 'ApiCallStatus'>, 'type': 'is-instance'}, 'type': 'json-or-python'}, 'type': 'lax-or-strict'}, 'type': 'model-field'}, 'type': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': 'file_center_of_mass', 'schema': {'expected': ['file_center_of_mass'], 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'literal'}, 'type': 'default'}, 'type': 'model-field'}, 'updated_at': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'metadata': {'pydantic_js_annotation_functions': [<bound method InnerSchemaValidator.__get_pydantic_json_schema__ of InnerSchemaValidator(core_schema={'type': 'datetime', 'microseconds_precision': 'truncate', 'metadata': {'pydantic_js_annotation_functions': [...]}}, js_schema=None, js_core_schema=None, js_schema_update=None)>]}, 'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'model-field'}, 'user_id': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'function': {'function': <class 'kittycad.models.uuid.Uuid'>, 'type': 'no-info'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'function-after'}, 'type': 'model-field'}}, 'model_name': 'file_center_of_mass', 'type': 'model-fields'}, 'type': 'model'}[source]
__pydantic_custom_init__: ClassVar[bool] = False[source]
__pydantic_decorators__: ClassVar[_decorators.DecoratorInfos] = DecoratorInfos(validators={}, field_validators={}, root_validators={}, field_serializers={}, model_serializers={}, model_validators={}, computed_fields={})[source]
__pydantic_extra__: dict[str, Any] | None[source]
__pydantic_fields_set__: set[str][source]
__pydantic_generic_metadata__: ClassVar[_generics.PydanticGenericMetadata] = {'args': (), 'origin': None, 'parameters': ()}[source]
classmethod __pydantic_init_subclass__(**kwargs)[source]

This is intended to behave just like __init_subclass__, but is called by ModelMetaclass only after the class is actually fully initialized. In particular, attributes like model_fields will be present when this is called.

This is necessary because __init_subclass__ will always be called by type.__new__, and it would require a prohibitively large refactor to the ModelMetaclass to ensure that type.__new__ was called in such a manner that the class would already be sufficiently initialized.

This will receive the same kwargs that would be passed to the standard __init_subclass__, namely, any kwargs passed to the class definition that aren’t used internally by pydantic.

Parameters:

**kwargs (Any) – Any keyword arguments passed to the class definition that aren’t used internally by pydantic.

Return type:

None

__pydantic_parent_namespace__: ClassVar[dict[str, Any] | None] = {'AiFeedback': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Annotated': <pydantic._internal._model_construction._PydanticWeakRef object>, 'ApiCallStatus': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Base64Data': <pydantic._internal._model_construction._PydanticWeakRef object>, 'BaseModel': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Dict': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Field': <pydantic._internal._model_construction._PydanticWeakRef object>, 'FileExportFormat': <pydantic._internal._model_construction._PydanticWeakRef object>, 'FileImportFormat': <pydantic._internal._model_construction._PydanticWeakRef object>, 'InputFormat': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Literal': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Optional': <pydantic._internal._model_construction._PydanticWeakRef object>, 'OutputFormat': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Point3d': <pydantic._internal._model_construction._PydanticWeakRef object>, 'RootModel': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Union': <pydantic._internal._model_construction._PydanticWeakRef object>, 'UnitArea': <pydantic._internal._model_construction._PydanticWeakRef object>, 'UnitDensity': <pydantic._internal._model_construction._PydanticWeakRef object>, 'UnitLength': <pydantic._internal._model_construction._PydanticWeakRef object>, 'UnitMass': <pydantic._internal._model_construction._PydanticWeakRef object>, 'UnitVolume': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Uuid': <pydantic._internal._model_construction._PydanticWeakRef object>, '__builtins__': {'ArithmeticError': <class 'ArithmeticError'>, 'AssertionError': <class 'AssertionError'>, 'AttributeError': <class 'AttributeError'>, 'BaseException': <class 'BaseException'>, 'BlockingIOError': <class 'BlockingIOError'>, 'BrokenPipeError': <class 'BrokenPipeError'>, 'BufferError': <class 'BufferError'>, 'BytesWarning': <class 'BytesWarning'>, 'ChildProcessError': <class 'ChildProcessError'>, 'ConnectionAbortedError': <class 'ConnectionAbortedError'>, 'ConnectionError': <class 'ConnectionError'>, 'ConnectionRefusedError': <class 'ConnectionRefusedError'>, 'ConnectionResetError': <class 'ConnectionResetError'>, 'DeprecationWarning': <class 'DeprecationWarning'>, 'EOFError': <class 'EOFError'>, 'Ellipsis': Ellipsis, 'EnvironmentError': <class 'OSError'>, 'Exception': <class 'Exception'>, 'False': False, 'FileExistsError': <class 'FileExistsError'>, 'FileNotFoundError': <class 'FileNotFoundError'>, 'FloatingPointError': <class 'FloatingPointError'>, 'FutureWarning': <class 'FutureWarning'>, 'GeneratorExit': <class 'GeneratorExit'>, 'IOError': <class 'OSError'>, 'ImportError': <class 'ImportError'>, 'ImportWarning': <class 'ImportWarning'>, 'IndentationError': <class 'IndentationError'>, 'IndexError': <class 'IndexError'>, 'InterruptedError': <class 'InterruptedError'>, 'IsADirectoryError': <class 'IsADirectoryError'>, 'KeyError': <class 'KeyError'>, 'KeyboardInterrupt': <class 'KeyboardInterrupt'>, 'LookupError': <class 'LookupError'>, 'MemoryError': <class 'MemoryError'>, 'ModuleNotFoundError': <class 'ModuleNotFoundError'>, 'NameError': <class 'NameError'>, 'None': None, 'NotADirectoryError': <class 'NotADirectoryError'>, 'NotImplemented': NotImplemented, 'NotImplementedError': <class 'NotImplementedError'>, 'OSError': <class 'OSError'>, 'OverflowError': <class 'OverflowError'>, 'PendingDeprecationWarning': <class 'PendingDeprecationWarning'>, 'PermissionError': <class 'PermissionError'>, 'ProcessLookupError': <class 'ProcessLookupError'>, 'RecursionError': <class 'RecursionError'>, 'ReferenceError': <class 'ReferenceError'>, 'ResourceWarning': <class 'ResourceWarning'>, 'RuntimeError': <class 'RuntimeError'>, 'RuntimeWarning': <class 'RuntimeWarning'>, 'StopAsyncIteration': <class 'StopAsyncIteration'>, 'StopIteration': <class 'StopIteration'>, 'SyntaxError': <class 'SyntaxError'>, 'SyntaxWarning': <class 'SyntaxWarning'>, 'SystemError': <class 'SystemError'>, 'SystemExit': <class 'SystemExit'>, 'TabError': <class 'TabError'>, 'TimeoutError': <class 'TimeoutError'>, 'True': True, 'TypeError': <class 'TypeError'>, 'UnboundLocalError': <class 'UnboundLocalError'>, 'UnicodeDecodeError': <class 'UnicodeDecodeError'>, 'UnicodeEncodeError': <class 'UnicodeEncodeError'>, 'UnicodeError': <class 'UnicodeError'>, 'UnicodeTranslateError': <class 'UnicodeTranslateError'>, 'UnicodeWarning': <class 'UnicodeWarning'>, 'UserWarning': <class 'UserWarning'>, 'ValueError': <class 'ValueError'>, 'Warning': <class 'Warning'>, 'ZeroDivisionError': <class 'ZeroDivisionError'>, '__build_class__': <built-in function __build_class__>, '__debug__': True, '__doc__': "Built-in functions, exceptions, and other objects.\n\nNoteworthy: None is the `nil' object; Ellipsis represents `...' in slices.", '__import__': <built-in function __import__>, '__loader__': <class '_frozen_importlib.BuiltinImporter'>, '__name__': 'builtins', '__package__': '', '__spec__': ModuleSpec(name='builtins', loader=<class '_frozen_importlib.BuiltinImporter'>, origin='built-in'), 'abs': <built-in function abs>, 'all': <built-in function all>, 'any': <built-in function any>, 'ascii': <built-in function ascii>, 'bin': <built-in function bin>, 'bool': <class 'bool'>, 'breakpoint': <built-in function breakpoint>, 'bytearray': <class 'bytearray'>, 'bytes': <class 'bytes'>, 'callable': <built-in function callable>, 'chr': <built-in function chr>, 'classmethod': <class 'classmethod'>, 'compile': <built-in function compile>, 'complex': <class 'complex'>, 'copyright': Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved.  Copyright (c) 2000 BeOpen.com. All Rights Reserved.  Copyright (c) 1995-2001 Corporation for National Research Initiatives. All Rights Reserved.  Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam. All Rights Reserved., 'credits':     Thanks to CWI, CNRI, BeOpen.com, Zope Corporation and a cast of thousands     for supporting Python development.  See www.python.org for more information., 'delattr': <built-in function delattr>, 'dict': <class 'dict'>, 'dir': <built-in function dir>, 'divmod': <built-in function divmod>, 'enumerate': <class 'enumerate'>, 'eval': <built-in function eval>, 'exec': <built-in function exec>, 'exit': Use exit() or Ctrl-D (i.e. EOF) to exit, 'filter': <class 'filter'>, 'float': <class 'float'>, 'format': <built-in function format>, 'frozenset': <class 'frozenset'>, 'getattr': <built-in function getattr>, 'globals': <built-in function globals>, 'hasattr': <built-in function hasattr>, 'hash': <built-in function hash>, 'help': Type help() for interactive help, or help(object) for help about object., 'hex': <built-in function hex>, 'id': <built-in function id>, 'input': <built-in function input>, 'int': <class 'int'>, 'isinstance': <built-in function isinstance>, 'issubclass': <built-in function issubclass>, 'iter': <built-in function iter>, 'len': <built-in function len>, 'license': Type license() to see the full license text, 'list': <class 'list'>, 'locals': <built-in function locals>, 'map': <class 'map'>, 'max': <built-in function max>, 'memoryview': <class 'memoryview'>, 'min': <built-in function min>, 'next': <built-in function next>, 'object': <class 'object'>, 'oct': <built-in function oct>, 'open': <built-in function open>, 'ord': <built-in function ord>, 'pow': <built-in function pow>, 'print': <built-in function print>, 'property': <class 'property'>, 'quit': Use quit() or Ctrl-D (i.e. EOF) to exit, 'range': <class 'range'>, 'repr': <built-in function repr>, 'reversed': <class 'reversed'>, 'round': <built-in function round>, 'set': <class 'set'>, 'setattr': <built-in function setattr>, 'slice': <class 'slice'>, 'sorted': <built-in function sorted>, 'staticmethod': <class 'staticmethod'>, 'str': <class 'str'>, 'sum': <built-in function sum>, 'super': <class 'super'>, 'tuple': <class 'tuple'>, 'type': <class 'type'>, 'vars': <built-in function vars>, 'zip': <class 'zip'>}, '__cached__': '/home/user/src/kittycad/models/__pycache__/async_api_call_output.cpython-39.pyc', '__doc__': <pydantic._internal._model_construction._PydanticWeakRef object>, '__file__': '/home/user/src/kittycad/models/async_api_call_output.py', '__loader__': <pydantic._internal._model_construction._PydanticWeakRef object>, '__name__': 'kittycad.models.async_api_call_output', '__package__': 'kittycad.models', '__spec__': <pydantic._internal._model_construction._PydanticWeakRef object>, 'datetime': <pydantic._internal._model_construction._PydanticWeakRef object>, 'file_conversion': <pydantic._internal._model_construction._PydanticWeakRef object>}[source]
__pydantic_post_init__: ClassVar[None | Literal['model_post_init']] = None[source]
__pydantic_private__: dict[str, Any] | None[source]
__pydantic_root_model__: ClassVar[bool] = False[source]
__pydantic_serializer__: ClassVar[SchemaSerializer] = SchemaSerializer(serializer=Model(     ModelSerializer {         class: Py(             0x0000555556b6bda0,         ),         serializer: Fields(             GeneralFieldsSerializer {                 fields: {                     "completed_at": SerField {                         key_py: Py(                             0x00007fffe1c78a70,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007ffffff85420,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Datetime(                                                 DatetimeSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "updated_at": SerField {                         key_py: Py(                             0x00007fffe137c6b0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Datetime(                                 DatetimeSerializer,                             ),                         ),                         required: true,                     },                     "error": SerField {                         key_py: Py(                             0x00007fffff904b70,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007ffffff85420,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Str(                                                 StrSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "created_at": SerField {                         key_py: Py(                             0x00007fffe12ecdf0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Datetime(                                 DatetimeSerializer,                             ),                         ),                         required: true,                     },                     "id": SerField {                         key_py: Py(                             0x00007fffff8eb3b0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Str(                                 StrSerializer,                             ),                         ),                         required: true,                     },                     "output_unit": SerField {                         key_py: Py(                             0x00007fffe14f4170,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             JsonOrPython(                                 JsonOrPythonSerializer {                                     json: Str(                                         StrSerializer,                                     ),                                     python: Any(                                         AnySerializer,                                     ),                                     name: "json-or-python[json=str, python=any]",                                 },                             ),                         ),                         required: true,                     },                     "center_of_mass": SerField {                         key_py: Py(                             0x00007fffe1c815b0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007ffffff85420,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Model(                                                 ModelSerializer {                                                     class: Py(                                                         0x0000555556a4f8b0,                                                     ),                                                     serializer: Fields(                                                         GeneralFieldsSerializer {                                                             fields: {                                                                 "y": SerField {                                                                     key_py: Py(                                                                         0x00007fffff72a730,                                                                     ),                                                                     alias: None,                                                                     alias_py: None,                                                                     serializer: Some(                                                                         Float(                                                                             FloatSerializer {                                                                                 inf_nan_mode: Null,                                                                             },                                                                         ),                                                                     ),                                                                     required: true,                                                                 },                                                                 "x": SerField {                                                                     key_py: Py(                                                                         0x00007fffff8fe870,                                                                     ),                                                                     alias: None,                                                                     alias_py: None,                                                                     serializer: Some(                                                                         Float(                                                                             FloatSerializer {                                                                                 inf_nan_mode: Null,                                                                             },                                                                         ),                                                                     ),                                                                     required: true,                                                                 },                                                                 "z": SerField {                                                                     key_py: Py(                                                                         0x00007fffff72a770,                                                                     ),                                                                     alias: None,                                                                     alias_py: None,                                                                     serializer: Some(                                                                         Float(                                                                             FloatSerializer {                                                                                 inf_nan_mode: Null,                                                                             },                                                                         ),                                                                     ),                                                                     required: true,                                                                 },                                                             },                                                             computed_fields: Some(                                                                 ComputedFields(                                                                     [],                                                                 ),                                                             ),                                                             mode: SimpleDict,                                                             extra_serializer: None,                                                             filter: SchemaFilter {                                                                 include: None,                                                                 exclude: None,                                                             },                                                             required_fields: 3,                                                         },                                                     ),                                                     has_extra: false,                                                     root_model: false,                                                     name: "Point3d",                                                 },                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "src_format": SerField {                         key_py: Py(                             0x00007fffe1494470,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             JsonOrPython(                                 JsonOrPythonSerializer {                                     json: Str(                                         StrSerializer,                                     ),                                     python: Any(                                         AnySerializer,                                     ),                                     name: "json-or-python[json=str, python=any]",                                 },                             ),                         ),                         required: true,                     },                     "status": SerField {                         key_py: Py(                             0x00007fffff6e27f0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             JsonOrPython(                                 JsonOrPythonSerializer {                                     json: Str(                                         StrSerializer,                                     ),                                     python: Any(                                         AnySerializer,                                     ),                                     name: "json-or-python[json=str, python=any]",                                 },                             ),                         ),                         required: true,                     },                     "started_at": SerField {                         key_py: Py(                             0x00007fffe137cbf0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007ffffff85420,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Datetime(                                                 DatetimeSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "type": SerField {                         key_py: Py(                             0x00007fffff8ebef0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fffe1c91da0,                                         ),                                     ),                                     serializer: Literal(                                         LiteralSerializer {                                             expected_int: {},                                             expected_str: {                                                 "file_center_of_mass",                                             },                                             expected_py: None,                                             name: "literal['file_center_of_mass']",                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "user_id": SerField {                         key_py: Py(                             0x00007fffe137c730,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Str(                                 StrSerializer,                             ),                         ),                         required: true,                     },                 },                 computed_fields: Some(                     ComputedFields(                         [],                     ),                 ),                 mode: SimpleDict,                 extra_serializer: None,                 filter: SchemaFilter {                     include: None,                     exclude: None,                 },                 required_fields: 12,             },         ),         has_extra: false,         root_model: false,         name: "file_center_of_mass",     }, ), definitions=[])[source]
__pydantic_validator__: ClassVar[SchemaValidator] = SchemaValidator(title="file_center_of_mass", validator=Model(     ModelValidator {         revalidate: Never,         validator: ModelFields(             ModelFieldsValidator {                 fields: [                     Field {                         name: "center_of_mass",                         lookup_key: Simple {                             key: "center_of_mass",                             py_key: Py(                                 0x00007fffe1c815b0,                             ),                             path: LookupPath(                                 [                                     S(                                         "center_of_mass",                                         Py(                                             0x00007fffe1c815b0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe1c815b0,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007ffffff85420,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Model(                                             ModelValidator {                                                 revalidate: Never,                                                 validator: ModelFields(                                                     ModelFieldsValidator {                                                         fields: [                                                             Field {                                                                 name: "x",                                                                 lookup_key: Simple {                                                                     key: "x",                                                                     py_key: Py(                                                                         0x00007fffff8fe870,                                                                     ),                                                                     path: LookupPath(                                                                         [                                                                             S(                                                                                 "x",                                                                                 Py(                                                                                     0x00007fffff8fe870,                                                                                 ),                                                                             ),                                                                         ],                                                                     ),                                                                 },                                                                 name_py: Py(                                                                     0x00007fffff8fe870,                                                                 ),                                                                 validator: Float(                                                                     FloatValidator {                                                                         strict: false,                                                                         allow_inf_nan: true,                                                                     },                                                                 ),                                                                 frozen: false,                                                             },                                                             Field {                                                                 name: "y",                                                                 lookup_key: Simple {                                                                     key: "y",                                                                     py_key: Py(                                                                         0x00007fffff72a730,                                                                     ),                                                                     path: LookupPath(                                                                         [                                                                             S(                                                                                 "y",                                                                                 Py(                                                                                     0x00007fffff72a730,                                                                                 ),                                                                             ),                                                                         ],                                                                     ),                                                                 },                                                                 name_py: Py(                                                                     0x00007fffff72a730,                                                                 ),                                                                 validator: Float(                                                                     FloatValidator {                                                                         strict: false,                                                                         allow_inf_nan: true,                                                                     },                                                                 ),                                                                 frozen: false,                                                             },                                                             Field {                                                                 name: "z",                                                                 lookup_key: Simple {                                                                     key: "z",                                                                     py_key: Py(                                                                         0x00007fffff72a770,                                                                     ),                                                                     path: LookupPath(                                                                         [                                                                             S(                                                                                 "z",                                                                                 Py(                                                                                     0x00007fffff72a770,                                                                                 ),                                                                             ),                                                                         ],                                                                     ),                                                                 },                                                                 name_py: Py(                                                                     0x00007fffff72a770,                                                                 ),                                                                 validator: Float(                                                                     FloatValidator {                                                                         strict: false,                                                                         allow_inf_nan: true,                                                                     },                                                                 ),                                                                 frozen: false,                                                             },                                                         ],                                                         model_name: "Point3d",                                                         extra_behavior: Ignore,                                                         extras_validator: None,                                                         strict: false,                                                         from_attributes: false,                                                         loc_by_alias: true,                                                     },                                                 ),                                                 class: Py(                                                     0x0000555556a4f8b0,                                                 ),                                                 post_init: None,                                                 frozen: false,                                                 custom_init: false,                                                 root_model: false,                                                 name: "Point3d",                                             },                                         ),                                         name: "nullable[Point3d]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[Point3d]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "completed_at",                         lookup_key: Simple {                             key: "completed_at",                             py_key: Py(                                 0x00007fffe1c78a70,                             ),                             path: LookupPath(                                 [                                     S(                                         "completed_at",                                         Py(                                             0x00007fffe1c78a70,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe1c78a70,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007ffffff85420,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Datetime(                                             DateTimeValidator {                                                 strict: false,                                                 constraints: None,                                                 microseconds_precision: Truncate,                                             },                                         ),                                         name: "nullable[datetime]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[datetime]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "created_at",                         lookup_key: Simple {                             key: "created_at",                             py_key: Py(                                 0x00007fffe12ecdf0,                             ),                             path: LookupPath(                                 [                                     S(                                         "created_at",                                         Py(                                             0x00007fffe12ecdf0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe12ecdf0,                         ),                         validator: Datetime(                             DateTimeValidator {                                 strict: false,                                 constraints: None,                                 microseconds_precision: Truncate,                             },                         ),                         frozen: false,                     },                     Field {                         name: "error",                         lookup_key: Simple {                             key: "error",                             py_key: Py(                                 0x00007fffff904b70,                             ),                             path: LookupPath(                                 [                                     S(                                         "error",                                         Py(                                             0x00007fffff904b70,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffff904b70,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007ffffff85420,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Str(                                             StrValidator {                                                 strict: false,                                                 coerce_numbers_to_str: false,                                             },                                         ),                                         name: "nullable[str]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[str]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "id",                         lookup_key: Simple {                             key: "id",                             py_key: Py(                                 0x00007fffff8eb3b0,                             ),                             path: LookupPath(                                 [                                     S(                                         "id",                                         Py(                                             0x00007fffff8eb3b0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffff8eb3b0,                         ),                         validator: FunctionAfter(                             FunctionAfterValidator {                                 validator: Str(                                     StrValidator {                                         strict: false,                                         coerce_numbers_to_str: false,                                     },                                 ),                                 func: Py(                                     0x0000555556a23980,                                 ),                                 config: Py(                                     0x00007fffe1413d40,                                 ),                                 name: "function-after[Uuid(), str]",                                 field_name: None,                                 info_arg: false,                             },                         ),                         frozen: false,                     },                     Field {                         name: "output_unit",                         lookup_key: Simple {                             key: "output_unit",                             py_key: Py(                                 0x00007fffe14f4170,                             ),                             path: LookupPath(                                 [                                     S(                                         "output_unit",                                         Py(                                             0x00007fffe14f4170,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe14f4170,                         ),                         validator: LaxOrStrict(                             LaxOrStrictValidator {                                 strict: false,                                 lax_validator: Chain(                                     ChainValidator {                                         steps: [                                             Str(                                                 StrValidator {                                                     strict: false,                                                     coerce_numbers_to_str: false,                                                 },                                             ),                                             FunctionPlain(                                                 FunctionPlainValidator {                                                     func: Py(                                                         0x00007fffe1459940,                                                     ),                                                     config: Py(                                                         0x00007fffe1413d40,                                                     ),                                                     name: "function-plain[to_enum()]",                                                     field_name: None,                                                     info_arg: false,                                                 },                                             ),                                         ],                                         name: "chain[str,function-plain[to_enum()]]",                                     },                                 ),                                 strict_validator: JsonOrPython(                                     JsonOrPython {                                         json: FunctionAfter(                                             FunctionAfterValidator {                                                 validator: Str(                                                     StrValidator {                                                         strict: false,                                                         coerce_numbers_to_str: false,                                                     },                                                 ),                                                 func: Py(                                                     0x00007fffe1459940,                                                 ),                                                 config: Py(                                                     0x00007fffe1413d40,                                                 ),                                                 name: "function-after[to_enum(), str]",                                                 field_name: None,                                                 info_arg: false,                                             },                                         ),                                         python: IsInstance(                                             IsInstanceValidator {                                                 class: Py(                                                     0x0000555556aac630,                                                 ),                                                 class_repr: "UnitLength",                                                 name: "is-instance[UnitLength]",                                             },                                         ),                                         name: "json-or-python[json=function-after[to_enum(), str],python=is-instance[UnitLength]]",                                     },                                 ),                                 name: "lax-or-strict[lax=chain[str,function-plain[to_enum()]],strict=json-or-python[json=function-after[to_enum(), str],python=is-instance[UnitLength]]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "src_format",                         lookup_key: Simple {                             key: "src_format",                             py_key: Py(                                 0x00007fffe1494470,                             ),                             path: LookupPath(                                 [                                     S(                                         "src_format",                                         Py(                                             0x00007fffe1494470,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe1494470,                         ),                         validator: LaxOrStrict(                             LaxOrStrictValidator {                                 strict: false,                                 lax_validator: Chain(                                     ChainValidator {                                         steps: [                                             Str(                                                 StrValidator {                                                     strict: false,                                                     coerce_numbers_to_str: false,                                                 },                                             ),                                             FunctionPlain(                                                 FunctionPlainValidator {                                                     func: Py(                                                         0x00007fffe1459af0,                                                     ),                                                     config: Py(                                                         0x00007fffe1413d40,                                                     ),                                                     name: "function-plain[to_enum()]",                                                     field_name: None,                                                     info_arg: false,                                                 },                                             ),                                         ],                                         name: "chain[str,function-plain[to_enum()]]",                                     },                                 ),                                 strict_validator: JsonOrPython(                                     JsonOrPython {                                         json: FunctionAfter(                                             FunctionAfterValidator {                                                 validator: Str(                                                     StrValidator {                                                         strict: false,                                                         coerce_numbers_to_str: false,                                                     },                                                 ),                                                 func: Py(                                                     0x00007fffe1459af0,                                                 ),                                                 config: Py(                                                     0x00007fffe1413d40,                                                 ),                                                 name: "function-after[to_enum(), str]",                                                 field_name: None,                                                 info_arg: false,                                             },                                         ),                                         python: IsInstance(                                             IsInstanceValidator {                                                 class: Py(                                                     0x0000555556aa0cc0,                                                 ),                                                 class_repr: "FileImportFormat",                                                 name: "is-instance[FileImportFormat]",                                             },                                         ),                                         name: "json-or-python[json=function-after[to_enum(), str],python=is-instance[FileImportFormat]]",                                     },                                 ),                                 name: "lax-or-strict[lax=chain[str,function-plain[to_enum()]],strict=json-or-python[json=function-after[to_enum(), str],python=is-instance[FileImportFormat]]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "started_at",                         lookup_key: Simple {                             key: "started_at",                             py_key: Py(                                 0x00007fffe137cbf0,                             ),                             path: LookupPath(                                 [                                     S(                                         "started_at",                                         Py(                                             0x00007fffe137cbf0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe137cbf0,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007ffffff85420,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Datetime(                                             DateTimeValidator {                                                 strict: false,                                                 constraints: None,                                                 microseconds_precision: Truncate,                                             },                                         ),                                         name: "nullable[datetime]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[datetime]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "status",                         lookup_key: Simple {                             key: "status",                             py_key: Py(                                 0x00007fffff6e27f0,                             ),                             path: LookupPath(                                 [                                     S(                                         "status",                                         Py(                                             0x00007fffff6e27f0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffff6e27f0,                         ),                         validator: LaxOrStrict(                             LaxOrStrictValidator {                                 strict: false,                                 lax_validator: Chain(                                     ChainValidator {                                         steps: [                                             Str(                                                 StrValidator {                                                     strict: false,                                                     coerce_numbers_to_str: false,                                                 },                                             ),                                             FunctionPlain(                                                 FunctionPlainValidator {                                                     func: Py(                                                         0x00007fffe1459c10,                                                     ),                                                     config: Py(                                                         0x00007fffe1413d40,                                                     ),                                                     name: "function-plain[to_enum()]",                                                     field_name: None,                                                     info_arg: false,                                                 },                                             ),                                         ],                                         name: "chain[str,function-plain[to_enum()]]",                                     },                                 ),                                 strict_validator: JsonOrPython(                                     JsonOrPython {                                         json: FunctionAfter(                                             FunctionAfterValidator {                                                 validator: Str(                                                     StrValidator {                                                         strict: false,                                                         coerce_numbers_to_str: false,                                                     },                                                 ),                                                 func: Py(                                                     0x00007fffe1459c10,                                                 ),                                                 config: Py(                                                     0x00007fffe1413d40,                                                 ),                                                 name: "function-after[to_enum(), str]",                                                 field_name: None,                                                 info_arg: false,                                             },                                         ),                                         python: IsInstance(                                             IsInstanceValidator {                                                 class: Py(                                                     0x0000555556a230f0,                                                 ),                                                 class_repr: "ApiCallStatus",                                                 name: "is-instance[ApiCallStatus]",                                             },                                         ),                                         name: "json-or-python[json=function-after[to_enum(), str],python=is-instance[ApiCallStatus]]",                                     },                                 ),                                 name: "lax-or-strict[lax=chain[str,function-plain[to_enum()]],strict=json-or-python[json=function-after[to_enum(), str],python=is-instance[ApiCallStatus]]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "type",                         lookup_key: Simple {                             key: "type",                             py_key: Py(                                 0x00007fffff8ebef0,                             ),                             path: LookupPath(                                 [                                     S(                                         "type",                                         Py(                                             0x00007fffff8ebef0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffff8ebef0,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fffe1c91da0,                                     ),                                 ),                                 on_error: Raise,                                 validator: Literal(                                     LiteralValidator {                                         lookup: LiteralLookup {                                             expected_bool: None,                                             expected_int: None,                                             expected_str: Some(                                                 {                                                     "file_center_of_mass": 0,                                                 },                                             ),                                             expected_py: None,                                             values: [                                                 Py(                                                     0x00007fffe1c91da0,                                                 ),                                             ],                                         },                                         expected_repr: "'file_center_of_mass'",                                         name: "literal['file_center_of_mass']",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[literal['file_center_of_mass']]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "updated_at",                         lookup_key: Simple {                             key: "updated_at",                             py_key: Py(                                 0x00007fffe137c6b0,                             ),                             path: LookupPath(                                 [                                     S(                                         "updated_at",                                         Py(                                             0x00007fffe137c6b0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe137c6b0,                         ),                         validator: Datetime(                             DateTimeValidator {                                 strict: false,                                 constraints: None,                                 microseconds_precision: Truncate,                             },                         ),                         frozen: false,                     },                     Field {                         name: "user_id",                         lookup_key: Simple {                             key: "user_id",                             py_key: Py(                                 0x00007fffe137c730,                             ),                             path: LookupPath(                                 [                                     S(                                         "user_id",                                         Py(                                             0x00007fffe137c730,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe137c730,                         ),                         validator: FunctionAfter(                             FunctionAfterValidator {                                 validator: Str(                                     StrValidator {                                         strict: false,                                         coerce_numbers_to_str: false,                                     },                                 ),                                 func: Py(                                     0x0000555556a23980,                                 ),                                 config: Py(                                     0x00007fffe1413d40,                                 ),                                 name: "function-after[Uuid(), str]",                                 field_name: None,                                 info_arg: false,                             },                         ),                         frozen: false,                     },                 ],                 model_name: "file_center_of_mass",                 extra_behavior: Ignore,                 extras_validator: None,                 strict: false,                 from_attributes: false,                 loc_by_alias: true,             },         ),         class: Py(             0x0000555556b6bda0,         ),         post_init: None,         frozen: false,         custom_init: false,         root_model: false,         name: "file_center_of_mass",     }, ), definitions=[])[source]
__repr__()[source]

Return repr(self).

Return type:

str

__repr_args__()[source]
__repr_name__()[source]

Name of the instance’s class, used in __repr__.

Return type:

str

__repr_str__(join_str)[source]
Return type:

str

__rich_repr__()[source]

Used by Rich (https://rich.readthedocs.io/en/stable/pretty.html) to pretty print objects.

__setattr__(name, value)[source]

Implement setattr(self, name, value).

Return type:

None

__setstate__(state)[source]
Return type:

None

__signature__: ClassVar[Signature] = <Signature (*, center_of_mass: Optional[kittycad.models.point3d.Point3d] = None, completed_at: Optional[datetime.datetime] = None, created_at: datetime.datetime, error: Optional[str] = None, id: kittycad.models.uuid.Uuid, output_unit: kittycad.models.unit_length.UnitLength, src_format: kittycad.models.file_import_format.FileImportFormat, started_at: Optional[datetime.datetime] = None, status: kittycad.models.api_call_status.ApiCallStatus, type: Literal['file_center_of_mass'] = 'file_center_of_mass', updated_at: datetime.datetime, user_id: kittycad.models.uuid.Uuid) -> None>[source]
__slots__ = ('__dict__', '__pydantic_fields_set__', '__pydantic_extra__', '__pydantic_private__')[source]
__str__()[source]

Return str(self).

Return type:

str

_abc_impl = <_abc._abc_data object>[source]
_calculate_keys(*args, **kwargs)[source]
Return type:

Any

_check_frozen(name, value)[source]
Return type:

None

_copy_and_set_values(*args, **kwargs)[source]
Return type:

Any

classmethod _get_value(cls, *args, **kwargs)[source]
Return type:

Any

_iter(*args, **kwargs)[source]
Return type:

Any

center_of_mass: Optional[Point3d][source]
completed_at: Optional[datetime][source]
classmethod construct(cls, _fields_set=None, **values)[source]
Return type:

Model

copy(*, include=None, exclude=None, update=None, deep=False)[source]

Returns a copy of the model.

!!! warning “Deprecated”

This method is now deprecated; use model_copy instead.

If you need include or exclude, use:

`py data = self.model_dump(include=include, exclude=exclude, round_trip=True) data = {**data, **(update or {})} copied = self.model_validate(data) `

Parameters:
  • include (AbstractSetIntStr | MappingIntStrAny | None) – Optional set or mapping specifying which fields to include in the copied model.

  • exclude (AbstractSetIntStr | MappingIntStrAny | None) – Optional set or mapping specifying which fields to exclude in the copied model.

  • update (Dict[str, Any] | None) – Optional dictionary of field-value pairs to override field values in the copied model.

  • deep (bool) – If True, the values of fields that are Pydantic models will be deep copied.

Return type:

Model

Returns:

A copy of the model with included, excluded and updated fields as specified.

created_at: datetime[source]
dict(*, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False)[source]
Return type:

Dict[str, Any]

error: Optional[str][source]
classmethod from_orm(cls, obj)[source]
Return type:

Model

id: Uuid[source]
json(*, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, encoder=PydanticUndefined, models_as_dict=PydanticUndefined, **dumps_kwargs)[source]
Return type:

str

property model_computed_fields: dict[str, ComputedFieldInfo][source]

Get the computed fields of this model instance.

Returns:

A dictionary of computed field names and their corresponding ComputedFieldInfo objects.

model_config: ClassVar[ConfigDict] = {}[source]

Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].

classmethod model_construct(_fields_set=None, **values)[source]

Creates a new instance of the Model class with validated data.

Creates a new model setting __dict__ and __pydantic_fields_set__ from trusted or pre-validated data. Default values are respected, but no other validation is performed. Behaves as if Config.extra = ‘allow’ was set since it adds all passed values

Parameters:
  • _fields_set (set[str] | None) – The set of field names accepted for the Model instance.

  • values (Any) – Trusted or pre-validated data dictionary.

Return type:

Model

Returns:

A new instance of the Model class with validated data.

model_copy(*, update=None, deep=False)[source]

Usage docs: https://docs.pydantic.dev/2.5/concepts/serialization/#model_copy

Returns a copy of the model.

Parameters:
  • update (dict[str, Any] | None) – Values to change/add in the new model. Note: the data is not validated before creating the new model. You should trust this data.

  • deep (bool) – Set to True to make a deep copy of the model.

Return type:

Model

Returns:

New model instance.

model_dump(*, mode='python', include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, round_trip=False, warnings=True)[source]

Usage docs: https://docs.pydantic.dev/2.5/concepts/serialization/#modelmodel_dump

Generate a dictionary representation of the model, optionally specifying which fields to include or exclude.

Parameters:
  • mode – The mode in which to_python should run. If mode is ‘json’, the dictionary will only contain JSON serializable types. If mode is ‘python’, the dictionary may contain any Python objects.

  • include – A list of fields to include in the output.

  • exclude – A list of fields to exclude from the output.

  • by_alias – Whether to use the field’s alias in the dictionary key if defined.

  • exclude_unset – Whether to exclude fields that have not been explicitly set.

  • exclude_defaults – Whether to exclude fields that are set to their default value from the output.

  • exclude_none – Whether to exclude fields that have a value of None from the output.

  • round_trip – Whether to enable serialization and deserialization round-trip support.

  • warnings – Whether to log warnings when invalid fields are encountered.

Returns:

A dictionary representation of the model.

model_dump_json(*, indent=None, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, round_trip=False, warnings=True)[source]

Usage docs: https://docs.pydantic.dev/2.5/concepts/serialization/#modelmodel_dump_json

Generates a JSON representation of the model using Pydantic’s to_json method.

Parameters:
  • indent – Indentation to use in the JSON output. If None is passed, the output will be compact.

  • include – Field(s) to include in the JSON output. Can take either a string or set of strings.

  • exclude – Field(s) to exclude from the JSON output. Can take either a string or set of strings.

  • by_alias – Whether to serialize using field aliases.

  • exclude_unset – Whether to exclude fields that have not been explicitly set.

  • exclude_defaults – Whether to exclude fields that have the default value.

  • exclude_none – Whether to exclude fields that have a value of None.

  • round_trip – Whether to use serialization/deserialization between JSON and class instance.

  • warnings – Whether to show any warnings that occurred during serialization.

Returns:

A JSON string representation of the model.

property model_extra[source]

Get extra fields set during validation.

Returns:

A dictionary of extra fields, or None if config.extra is not set to “allow”.

model_fields: ClassVar[dict[str, FieldInfo]] = {'center_of_mass': FieldInfo(annotation=Union[Point3d, NoneType], required=False), 'completed_at': FieldInfo(annotation=Union[datetime, NoneType], required=False), 'created_at': FieldInfo(annotation=datetime, required=True), 'error': FieldInfo(annotation=Union[str, NoneType], required=False), 'id': FieldInfo(annotation=Uuid, required=True), 'output_unit': FieldInfo(annotation=UnitLength, required=True), 'src_format': FieldInfo(annotation=FileImportFormat, required=True), 'started_at': FieldInfo(annotation=Union[datetime, NoneType], required=False), 'status': FieldInfo(annotation=ApiCallStatus, required=True), 'type': FieldInfo(annotation=Literal['file_center_of_mass'], required=False, default='file_center_of_mass'), 'updated_at': FieldInfo(annotation=datetime, required=True), 'user_id': FieldInfo(annotation=Uuid, required=True)}[source]

Metadata about the fields defined on the model, mapping of field names to [FieldInfo][pydantic.fields.FieldInfo].

This replaces Model.__fields__ from Pydantic V1.

property model_fields_set: set[str][source]

Returns the set of fields that have been explicitly set on this model instance.

Returns:

A set of strings representing the fields that have been set,

i.e. that were not filled from defaults.

classmethod model_json_schema(by_alias=True, ref_template='#/$defs/{model}', schema_generator=<class 'pydantic.json_schema.GenerateJsonSchema'>, mode='validation')[source]

Generates a JSON schema for a model class.

Parameters:
  • by_alias (bool) – Whether to use attribute aliases or not.

  • ref_template (str) – The reference template.

  • schema_generator (type[GenerateJsonSchema]) – To override the logic used to generate the JSON schema, as a subclass of GenerateJsonSchema with your desired modifications

  • mode (Literal['validation', 'serialization']) – The mode in which to generate the schema.

Return type:

dict[str, Any]

Returns:

The JSON schema for the given model class.

classmethod model_parametrized_name(params)[source]

Compute the class name for parametrizations of generic classes.

This method can be overridden to achieve a custom naming scheme for generic BaseModels.

Parameters:

params (tuple[type[Any], ...]) – Tuple of types of the class. Given a generic class Model with 2 type variables and a concrete model Model[str, int], the value (str, int) would be passed to params.

Return type:

str

Returns:

String representing the new class where params are passed to cls as type variables.

Raises:

TypeError – Raised when trying to generate concrete names for non-generic models.

model_post_init(_BaseModel__context)[source]

Override this method to perform additional initialization after __init__ and model_construct. This is useful if you want to do some validation that requires the entire model to be initialized.

Return type:

None

classmethod model_rebuild(*, force=False, raise_errors=True, _parent_namespace_depth=2, _types_namespace=None)[source]

Try to rebuild the pydantic-core schema for the model.

This may be necessary when one of the annotations is a ForwardRef which could not be resolved during the initial attempt to build the schema, and automatic rebuilding fails.

Parameters:
  • force – Whether to force the rebuilding of the model schema, defaults to False.

  • raise_errors – Whether to raise errors, defaults to True.

  • _parent_namespace_depth – The depth level of the parent namespace, defaults to 2.

  • _types_namespace – The types namespace, defaults to None.

Returns:

Returns None if the schema is already “complete” and rebuilding was not required. If rebuilding _was_ required, returns True if rebuilding was successful, otherwise False.

classmethod model_validate(obj, *, strict=None, from_attributes=None, context=None)[source]

Validate a pydantic model instance.

Parameters:
  • obj (Any) – The object to validate.

  • strict (bool | None) – Whether to raise an exception on invalid fields.

  • from_attributes (bool | None) – Whether to extract data from object attributes.

  • context (dict[str, Any] | None) – Additional context to pass to the validator.

Raises:

ValidationError – If the object could not be validated.

Return type:

Model

Returns:

The validated model instance.

classmethod model_validate_json(json_data, *, strict=None, context=None)[source]

Usage docs: https://docs.pydantic.dev/2.5/concepts/json/#json-parsing

Validate the given JSON data against the Pydantic model.

Parameters:
  • json_data (str | bytes | bytearray) – The JSON data to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • context (dict[str, Any] | None) – Extra variables to pass to the validator.

Return type:

Model

Returns:

The validated Pydantic model.

Raises:

ValueError – If json_data is not a JSON string.

classmethod model_validate_strings(obj, *, strict=None, context=None)[source]

Validate the given object contains string data against the Pydantic model.

Parameters:
  • obj (Any) – The object contains string data to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • context (dict[str, Any] | None) – Extra variables to pass to the validator.

Return type:

Model

Returns:

The validated Pydantic model.

output_unit: UnitLength[source]
classmethod parse_file(cls, path, *, content_type=None, encoding='utf8', proto=None, allow_pickle=False)[source]
Return type:

Model

classmethod parse_obj(cls, obj)[source]
Return type:

Model

classmethod parse_raw(cls, b, *, content_type=None, encoding='utf8', proto=None, allow_pickle=False)[source]
Return type:

Model

classmethod schema(cls, by_alias=True, ref_template='#/$defs/{model}')[source]
Return type:

Dict[str, Any]

classmethod schema_json(cls, *, by_alias=True, ref_template='#/$defs/{model}', **dumps_kwargs)[source]
Return type:

str

src_format: FileImportFormat[source]
started_at: Optional[datetime][source]
status: ApiCallStatus[source]
type: Literal['file_center_of_mass'][source]
classmethod update_forward_refs(cls, **localns)[source]
Return type:

None

updated_at: datetime[source]
user_id: Uuid[source]
classmethod validate(cls, value)[source]
Return type:

Model

class kittycad.models.async_api_call_output.file_conversion(**data)[source][source]

A file conversion.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

__init__ uses __pydantic_self__ instead of the more common self for the first arg to allow self as a field name.

__abstractmethods__ = frozenset({})[source]
__annotations__ = {'__class_vars__': 'ClassVar[set[str]]', '__private_attributes__': 'ClassVar[dict[str, ModelPrivateAttr]]', '__pydantic_complete__': 'ClassVar[bool]', '__pydantic_core_schema__': 'ClassVar[CoreSchema]', '__pydantic_custom_init__': 'ClassVar[bool]', '__pydantic_decorators__': 'ClassVar[_decorators.DecoratorInfos]', '__pydantic_extra__': 'dict[str, Any] | None', '__pydantic_fields_set__': 'set[str]', '__pydantic_generic_metadata__': 'ClassVar[_generics.PydanticGenericMetadata]', '__pydantic_parent_namespace__': 'ClassVar[dict[str, Any] | None]', '__pydantic_post_init__': "ClassVar[None | Literal['model_post_init']]", '__pydantic_private__': 'dict[str, Any] | None', '__pydantic_root_model__': 'ClassVar[bool]', '__pydantic_serializer__': 'ClassVar[SchemaSerializer]', '__pydantic_validator__': 'ClassVar[SchemaValidator]', '__signature__': 'ClassVar[Signature]', 'completed_at': typing.Optional[datetime.datetime], 'created_at': <class 'datetime.datetime'>, 'error': typing.Optional[str], 'id': <class 'kittycad.models.uuid.Uuid'>, 'model_config': 'ClassVar[ConfigDict]', 'model_fields': 'ClassVar[dict[str, FieldInfo]]', 'output_format': <enum 'FileExportFormat'>, 'output_format_options': typing.Optional[pydantic.root_model.RootModel[Annotated[Union[kittycad.models.output_format.fbx, kittycad.models.output_format.gltf, kittycad.models.output_format.obj, kittycad.models.output_format.ply, kittycad.models.output_format.step, kittycad.models.output_format.stl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]], 'outputs': typing.Optional[typing.Dict[str, kittycad.models.base64data.Base64Data]], 'src_format': <enum 'FileImportFormat'>, 'src_format_options': typing.Optional[pydantic.root_model.RootModel[Annotated[Union[kittycad.models.input_format.fbx, kittycad.models.input_format.gltf, kittycad.models.input_format.obj, kittycad.models.input_format.ply, kittycad.models.input_format.sldprt, kittycad.models.input_format.step, kittycad.models.input_format.stl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]], 'started_at': typing.Optional[datetime.datetime], 'status': <enum 'ApiCallStatus'>, 'type': typing.Literal['file_conversion'], 'updated_at': <class 'datetime.datetime'>, 'user_id': <class 'kittycad.models.uuid.Uuid'>}[source]
classmethod __class_getitem__(typevar_values)[source]
__class_vars__: ClassVar[set[str]] = {}[source]
__copy__()[source]

Returns a shallow copy of the model.

Return type:

Model

__deepcopy__(memo=None)[source]

Returns a deep copy of the model.

Return type:

Model

__delattr__(item)[source]

Implement delattr(self, name).

Return type:

Any

__dict__[source]
__eq__(other)[source]

Return self==value.

Return type:

bool

__fields__ = {'completed_at': FieldInfo(annotation=Union[datetime, NoneType], required=False), 'created_at': FieldInfo(annotation=datetime, required=True), 'error': FieldInfo(annotation=Union[str, NoneType], required=False), 'id': FieldInfo(annotation=Uuid, required=True), 'output_format': FieldInfo(annotation=FileExportFormat, required=True), 'output_format_options': FieldInfo(annotation=Union[RootModel[Annotated[Union[kittycad.models.output_format.fbx, kittycad.models.output_format.gltf, kittycad.models.output_format.obj, kittycad.models.output_format.ply, kittycad.models.output_format.step, kittycad.models.output_format.stl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]], NoneType], required=False), 'outputs': FieldInfo(annotation=Union[Dict[str, kittycad.models.base64data.Base64Data], NoneType], required=False), 'src_format': FieldInfo(annotation=FileImportFormat, required=True), 'src_format_options': FieldInfo(annotation=Union[RootModel[Annotated[Union[kittycad.models.input_format.fbx, kittycad.models.input_format.gltf, kittycad.models.input_format.obj, kittycad.models.input_format.ply, kittycad.models.input_format.sldprt, kittycad.models.input_format.step, kittycad.models.input_format.stl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]], NoneType], required=False), 'started_at': FieldInfo(annotation=Union[datetime, NoneType], required=False), 'status': FieldInfo(annotation=ApiCallStatus, required=True), 'type': FieldInfo(annotation=Literal['file_conversion'], required=False, default='file_conversion'), 'updated_at': FieldInfo(annotation=datetime, required=True), 'user_id': FieldInfo(annotation=Uuid, required=True)}[source]
property __fields_set__: set[str][source]
classmethod __get_pydantic_core_schema__(_BaseModel__source, _BaseModel__handler)[source]

Hook into generating the model’s CoreSchema.

Parameters:
  • __source – The class we are generating a schema for. This will generally be the same as the cls argument if this is a classmethod.

  • __handler – Call into Pydantic’s internal JSON schema generation. A callable that calls into Pydantic’s internal CoreSchema generation logic.

Return type:

Union[AnySchema, NoneSchema, BoolSchema, IntSchema, FloatSchema, DecimalSchema, StringSchema, BytesSchema, DateSchema, TimeSchema, DatetimeSchema, TimedeltaSchema, LiteralSchema, IsInstanceSchema, IsSubclassSchema, CallableSchema, ListSchema, TuplePositionalSchema, TupleVariableSchema, SetSchema, FrozenSetSchema, GeneratorSchema, DictSchema, AfterValidatorFunctionSchema, BeforeValidatorFunctionSchema, WrapValidatorFunctionSchema, PlainValidatorFunctionSchema, WithDefaultSchema, NullableSchema, UnionSchema, TaggedUnionSchema, ChainSchema, LaxOrStrictSchema, JsonOrPythonSchema, TypedDictSchema, ModelFieldsSchema, ModelSchema, DataclassArgsSchema, DataclassSchema, ArgumentsSchema, CallSchema, CustomErrorSchema, JsonSchema, UrlSchema, MultiHostUrlSchema, DefinitionsSchema, DefinitionReferenceSchema, UuidSchema]

Returns:

A pydantic-core CoreSchema.

classmethod __get_pydantic_json_schema__(_BaseModel__core_schema, _BaseModel__handler)[source]

Hook into generating the model’s JSON schema.

Parameters:
  • __core_schema – A pydantic-core CoreSchema. You can ignore this argument and call the handler with a new CoreSchema, wrap this CoreSchema ({‘type’: ‘nullable’, ‘schema’: current_schema}), or just call the handler with the original schema.

  • __handler – Call into Pydantic’s internal JSON schema generation. This will raise a pydantic.errors.PydanticInvalidForJsonSchema if JSON schema generation fails. Since this gets called by BaseModel.model_json_schema you can override the schema_generator argument to that function to change JSON schema generation globally for a type.

Return type:

Dict[str, Any]

Returns:

A JSON schema, as a Python object.

__getattr__(item)[source]
Return type:

Any

__getstate__()[source]
Return type:

dict[Any, Any]

__hash__ = None[source]
__init__(**data)[source]

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

__init__ uses __pydantic_self__ instead of the more common self for the first arg to allow self as a field name.

__iter__()[source]

So dict(model) works.

Return type:

TupleGenerator

__module__ = 'kittycad.models.async_api_call_output'[source]
__pretty__(fmt, **kwargs)[source]

Used by devtools (https://python-devtools.helpmanual.io/) to pretty print objects.

Return type:

Generator[Any, None, None]

__private_attributes__: ClassVar[dict[str, ModelPrivateAttr]] = {}[source]
__pydantic_complete__: ClassVar[bool] = True[source]
__pydantic_core_schema__: ClassVar[CoreSchema] = {'definitions': [{'type': 'model', 'cls': <class 'kittycad.models.axis_direction_pair.AxisDirectionPair'>, 'schema': {'type': 'model-fields', 'fields': {'axis': {'type': 'model-field', 'schema': {'type': 'definition-ref', 'schema_ref': 'kittycad.models.axis.Axis:93825014567168'}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}, 'direction': {'type': 'model-field', 'schema': {'type': 'definition-ref', 'schema_ref': 'kittycad.models.direction.Direction:93825014568112'}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}}, 'model_name': 'AxisDirectionPair', 'computed_fields': []}, 'custom_init': False, 'root_model': False, 'config': {'title': 'AxisDirectionPair'}, 'ref': 'kittycad.models.axis_direction_pair.AxisDirectionPair:93825014569648', 'metadata': {'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'kittycad.models.axis_direction_pair.AxisDirectionPair'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.axis_direction_pair.AxisDirectionPair'>>], 'pydantic_js_annotation_functions': [], 'pydantic.internal.needs_apply_discriminated_union': False}}, {'type': 'lax-or-strict', 'lax_schema': {'type': 'chain', 'steps': [{'type': 'str'}, {'type': 'function-plain', 'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}}]}, 'strict_schema': {'type': 'json-or-python', 'json_schema': {'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'python_schema': {'type': 'is-instance', 'cls': <enum 'Axis'>}}, 'ref': 'kittycad.models.axis.Axis:93825014567168', 'metadata': {'pydantic_js_functions': [<function get_enum_core_schema.<locals>.get_json_schema>], 'pydantic.internal.needs_apply_discriminated_union': False}}, {'type': 'lax-or-strict', 'lax_schema': {'type': 'chain', 'steps': [{'type': 'str'}, {'type': 'function-plain', 'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}}]}, 'strict_schema': {'type': 'json-or-python', 'json_schema': {'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'python_schema': {'type': 'is-instance', 'cls': <enum 'Direction'>}}, 'ref': 'kittycad.models.direction.Direction:93825014568112', 'metadata': {'pydantic_js_functions': [<function get_enum_core_schema.<locals>.get_json_schema>], 'pydantic.internal.needs_apply_discriminated_union': False}}, {'type': 'model', 'cls': <class 'kittycad.models.system.System'>, 'schema': {'type': 'model-fields', 'fields': {'forward': {'type': 'model-field', 'schema': {'type': 'definition-ref', 'schema_ref': 'kittycad.models.axis_direction_pair.AxisDirectionPair:93825014569648'}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}, 'up': {'type': 'model-field', 'schema': {'type': 'definition-ref', 'schema_ref': 'kittycad.models.axis_direction_pair.AxisDirectionPair:93825014569648'}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}}, 'model_name': 'System', 'computed_fields': []}, 'custom_init': False, 'root_model': False, 'config': {'title': 'System'}, 'ref': 'kittycad.models.system.System:93825014588992', 'metadata': {'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'kittycad.models.system.System'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.system.System'>>], 'pydantic_js_annotation_functions': [], 'pydantic.internal.needs_apply_discriminated_union': False}}, {'type': 'lax-or-strict', 'lax_schema': {'type': 'chain', 'steps': [{'type': 'str'}, {'type': 'function-plain', 'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}}]}, 'strict_schema': {'type': 'json-or-python', 'json_schema': {'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'python_schema': {'type': 'is-instance', 'cls': <enum 'UnitLength'>}}, 'ref': 'kittycad.models.unit_length.UnitLength:93825014613552', 'metadata': {'pydantic_js_functions': [<function get_enum_core_schema.<locals>.get_json_schema>], 'pydantic.internal.needs_apply_discriminated_union': False}}, {'type': 'model', 'cls': <class 'kittycad.models.selection.default_scene'>, 'schema': {'type': 'model-fields', 'fields': {'type': {'type': 'model-field', 'schema': {'type': 'default', 'schema': {'type': 'literal', 'expected': ['default_scene'], 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}}, 'default': 'default_scene'}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}}, 'model_name': 'default_scene', 'computed_fields': []}, 'custom_init': False, 'root_model': False, 'config': {'title': 'default_scene'}, 'ref': 'kittycad.models.selection.default_scene:93825014224528', 'metadata': {'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'kittycad.models.selection.default_scene'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.selection.default_scene'>>], 'pydantic_js_annotation_functions': [], 'pydantic.internal.needs_apply_discriminated_union': False}}, {'type': 'model', 'cls': <class 'kittycad.models.selection.scene_by_index'>, 'schema': {'type': 'model-fields', 'fields': {'index': {'type': 'model-field', 'schema': {'type': 'int', 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}, 'type': {'type': 'model-field', 'schema': {'type': 'default', 'schema': {'type': 'literal', 'expected': ['scene_by_index'], 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}}, 'default': 'scene_by_index'}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}}, 'model_name': 'scene_by_index', 'computed_fields': []}, 'custom_init': False, 'root_model': False, 'config': {'title': 'scene_by_index'}, 'ref': 'kittycad.models.selection.scene_by_index:93825014871232', 'metadata': {'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'kittycad.models.selection.scene_by_index'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.selection.scene_by_index'>>], 'pydantic_js_annotation_functions': [], 'pydantic.internal.needs_apply_discriminated_union': False}}, {'type': 'model', 'cls': <class 'kittycad.models.selection.scene_by_name'>, 'schema': {'type': 'model-fields', 'fields': {'name': {'type': 'model-field', 'schema': {'type': 'str', 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}, 'type': {'type': 'model-field', 'schema': {'type': 'default', 'schema': {'type': 'literal', 'expected': ['scene_by_name'], 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}}, 'default': 'scene_by_name'}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}}, 'model_name': 'scene_by_name', 'computed_fields': []}, 'custom_init': False, 'root_model': False, 'config': {'title': 'scene_by_name'}, 'ref': 'kittycad.models.selection.scene_by_name:93825014880496', 'metadata': {'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'kittycad.models.selection.scene_by_name'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.selection.scene_by_name'>>], 'pydantic_js_annotation_functions': [], 'pydantic.internal.needs_apply_discriminated_union': False}}, {'type': 'model', 'cls': <class 'kittycad.models.selection.mesh_by_index'>, 'schema': {'type': 'model-fields', 'fields': {'index': {'type': 'model-field', 'schema': {'type': 'int', 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}, 'type': {'type': 'model-field', 'schema': {'type': 'default', 'schema': {'type': 'literal', 'expected': ['mesh_by_index'], 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}}, 'default': 'mesh_by_index'}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}}, 'model_name': 'mesh_by_index', 'computed_fields': []}, 'custom_init': False, 'root_model': False, 'config': {'title': 'mesh_by_index'}, 'ref': 'kittycad.models.selection.mesh_by_index:93825014886016', 'metadata': {'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'kittycad.models.selection.mesh_by_index'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.selection.mesh_by_index'>>], 'pydantic_js_annotation_functions': [], 'pydantic.internal.needs_apply_discriminated_union': False}}, {'type': 'model', 'cls': <class 'kittycad.models.selection.mesh_by_name'>, 'schema': {'type': 'model-fields', 'fields': {'name': {'type': 'model-field', 'schema': {'type': 'str', 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}, 'type': {'type': 'model-field', 'schema': {'type': 'default', 'schema': {'type': 'literal', 'expected': ['mesh_by_name'], 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}}, 'default': 'mesh_by_name'}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}}, 'model_name': 'mesh_by_name', 'computed_fields': []}, 'custom_init': False, 'root_model': False, 'config': {'title': 'mesh_by_name'}, 'ref': 'kittycad.models.selection.mesh_by_name:93825014893472', 'metadata': {'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'kittycad.models.selection.mesh_by_name'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.selection.mesh_by_name'>>], 'pydantic_js_annotation_functions': [], 'pydantic.internal.needs_apply_discriminated_union': False}}, {'type': 'model', 'cls': <class 'pydantic.root_model.RootModel[Annotated[Union[kittycad.models.selection.default_scene, kittycad.models.selection.scene_by_index, kittycad.models.selection.scene_by_name, kittycad.models.selection.mesh_by_index, kittycad.models.selection.mesh_by_name], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]'>, 'schema': {'type': 'union', 'choices': [{'type': 'definition-ref', 'schema_ref': 'kittycad.models.selection.default_scene:93825014224528'}, {'type': 'definition-ref', 'schema_ref': 'kittycad.models.selection.scene_by_index:93825014871232'}, {'type': 'definition-ref', 'schema_ref': 'kittycad.models.selection.scene_by_name:93825014880496'}, {'type': 'definition-ref', 'schema_ref': 'kittycad.models.selection.mesh_by_index:93825014886016'}, {'type': 'definition-ref', 'schema_ref': 'kittycad.models.selection.mesh_by_name:93825014893472'}], 'metadata': {'pydantic.internal.needs_apply_discriminated_union': True, 'pydantic.internal.union_discriminator': 'type'}}, 'custom_init': False, 'root_model': True, 'config': {'title': "RootModel[Annotated[Union[kittycad.models.selection.default_scene, kittycad.models.selection.scene_by_index, kittycad.models.selection.scene_by_name, kittycad.models.selection.mesh_by_index, kittycad.models.selection.mesh_by_name], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]"}, 'ref': "pydantic.root_model.RootModel:93825014829600[Annotated[Union[kittycad.models.selection.default_scene, kittycad.models.selection.scene_by_index, kittycad.models.selection.scene_by_name, kittycad.models.selection.mesh_by_index, kittycad.models.selection.mesh_by_name], FieldInfo(annotation=NoneType, required=True, discriminator='type')]:140736970863040]", 'metadata': {'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'pydantic.root_model.RootModel[Annotated[Union[kittycad.models.selection.default_scene, kittycad.models.selection.scene_by_index, kittycad.models.selection.scene_by_name, kittycad.models.selection.mesh_by_index, kittycad.models.selection.mesh_by_name], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'pydantic.root_model.RootModel[Annotated[Union[kittycad.models.selection.default_scene, kittycad.models.selection.scene_by_index, kittycad.models.selection.scene_by_name, kittycad.models.selection.mesh_by_index, kittycad.models.selection.mesh_by_name], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]'>>], 'pydantic_js_annotation_functions': [], 'pydantic.internal.needs_apply_discriminated_union': False}}], 'schema': {'cls': <class 'kittycad.models.async_api_call_output.file_conversion'>, 'config': {'title': 'file_conversion'}, 'custom_init': False, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_annotation_functions': [], 'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'kittycad.models.async_api_call_output.file_conversion'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.async_api_call_output.file_conversion'>>]}, 'ref': 'kittycad.models.async_api_call_output.file_conversion:93825015382608', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'completed_at': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_annotation_functions': [<bound method InnerSchemaValidator.__get_pydantic_json_schema__ of InnerSchemaValidator(core_schema={'type': 'datetime', 'microseconds_precision': 'truncate', 'metadata': {'pydantic_js_annotation_functions': [...], 'pydantic.internal.needs_apply_discriminated_union': False}}, js_schema=None, js_core_schema=None, js_schema_update=None)>]}, 'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'created_at': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'metadata': {'pydantic_js_annotation_functions': [<bound method InnerSchemaValidator.__get_pydantic_json_schema__ of InnerSchemaValidator(core_schema={'type': 'datetime', 'microseconds_precision': 'truncate', 'metadata': {'pydantic_js_annotation_functions': [...]}}, js_schema=None, js_core_schema=None, js_schema_update=None)>]}, 'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'model-field'}, 'error': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'id': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'function': {'function': <class 'kittycad.models.uuid.Uuid'>, 'type': 'no-info'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'function-after'}, 'type': 'model-field'}, 'output_format': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'lax_schema': {'steps': [{'type': 'str'}, {'type': 'function-plain', 'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}}], 'type': 'chain'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_functions': [<function get_enum_core_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.file_export_format.FileExportFormat:93825014565136', 'strict_schema': {'json_schema': {'function': {'function': <function get_enum_core_schema.<locals>.to_enum>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'python_schema': {'cls': <enum 'FileExportFormat'>, 'type': 'is-instance'}, 'type': 'json-or-python'}, 'type': 'lax-or-strict'}, 'type': 'model-field'}, 'output_format_options': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'cls': <class 'pydantic.root_model.RootModel[Annotated[Union[kittycad.models.output_format.fbx, kittycad.models.output_format.gltf, kittycad.models.output_format.obj, kittycad.models.output_format.ply, kittycad.models.output_format.step, kittycad.models.output_format.stl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]'>, 'config': {'title': "RootModel[Annotated[Union[kittycad.models.output_format.fbx, kittycad.models.output_format.gltf, kittycad.models.output_format.obj, kittycad.models.output_format.ply, kittycad.models.output_format.step, kittycad.models.output_format.stl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]"}, 'custom_init': False, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_annotation_functions': [], 'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'pydantic.root_model.RootModel[Annotated[Union[kittycad.models.output_format.fbx, kittycad.models.output_format.gltf, kittycad.models.output_format.obj, kittycad.models.output_format.ply, kittycad.models.output_format.step, kittycad.models.output_format.stl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'pydantic.root_model.RootModel[Annotated[Union[kittycad.models.output_format.fbx, kittycad.models.output_format.gltf, kittycad.models.output_format.obj, kittycad.models.output_format.ply, kittycad.models.output_format.step, kittycad.models.output_format.stl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]'>>]}, 'ref': "pydantic.root_model.RootModel:93825014829600[Annotated[Union[kittycad.models.output_format.fbx, kittycad.models.output_format.gltf, kittycad.models.output_format.obj, kittycad.models.output_format.ply, kittycad.models.output_format.step, kittycad.models.output_format.stl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]:140736972011504]", 'root_model': True, 'schema': {'choices': [{'type': 'model', 'cls': <class 'kittycad.models.output_format.fbx'>, 'schema': {'type': 'model-fields', 'fields': {'storage': {'type': 'model-field', 'schema': {'type': 'lax-or-strict', 'lax_schema': {'type': 'chain', 'steps': [{'type': 'str'}, {'type': 'function-plain', 'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}}]}, 'strict_schema': {'type': 'json-or-python', 'json_schema': {'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'python_schema': {'type': 'is-instance', 'cls': <enum 'FbxStorage'>}}, 'ref': 'kittycad.models.fbx_storage.FbxStorage:93825014854800', 'metadata': {'pydantic_js_functions': [<function get_enum_core_schema.<locals>.get_json_schema>], 'pydantic.internal.needs_apply_discriminated_union': False}}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}, 'type': {'type': 'model-field', 'schema': {'type': 'default', 'schema': {'type': 'literal', 'expected': ['fbx'], 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}}, 'default': 'fbx'}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}}, 'model_name': 'fbx', 'computed_fields': []}, 'custom_init': False, 'root_model': False, 'config': {'title': 'fbx'}, 'ref': 'kittycad.models.output_format.fbx:93825014049936', 'metadata': {'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'kittycad.models.output_format.fbx'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.output_format.fbx'>>], 'pydantic_js_annotation_functions': [], 'pydantic.internal.needs_apply_discriminated_union': False}}, {'type': 'model', 'cls': <class 'kittycad.models.output_format.gltf'>, 'schema': {'type': 'model-fields', 'fields': {'presentation': {'type': 'model-field', 'schema': {'type': 'lax-or-strict', 'lax_schema': {'type': 'chain', 'steps': [{'type': 'str'}, {'type': 'function-plain', 'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}}]}, 'strict_schema': {'type': 'json-or-python', 'json_schema': {'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'python_schema': {'type': 'is-instance', 'cls': <enum 'GltfPresentation'>}}, 'ref': 'kittycad.models.gltf_presentation.GltfPresentation:93825014855744', 'metadata': {'pydantic_js_functions': [<function get_enum_core_schema.<locals>.get_json_schema>], 'pydantic.internal.needs_apply_discriminated_union': False}}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}, 'storage': {'type': 'model-field', 'schema': {'type': 'lax-or-strict', 'lax_schema': {'type': 'chain', 'steps': [{'type': 'str'}, {'type': 'function-plain', 'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}}]}, 'strict_schema': {'type': 'json-or-python', 'json_schema': {'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'python_schema': {'type': 'is-instance', 'cls': <enum 'GltfStorage'>}}, 'ref': 'kittycad.models.gltf_storage.GltfStorage:93825014856688', 'metadata': {'pydantic_js_functions': [<function get_enum_core_schema.<locals>.get_json_schema>], 'pydantic.internal.needs_apply_discriminated_union': False}}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}, 'type': {'type': 'model-field', 'schema': {'type': 'default', 'schema': {'type': 'literal', 'expected': ['gltf'], 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}}, 'default': 'gltf'}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}}, 'model_name': 'gltf', 'computed_fields': []}, 'custom_init': False, 'root_model': False, 'config': {'title': 'gltf'}, 'ref': 'kittycad.models.output_format.gltf:93825014946976', 'metadata': {'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'kittycad.models.output_format.gltf'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.output_format.gltf'>>], 'pydantic_js_annotation_functions': [], 'pydantic.internal.needs_apply_discriminated_union': False}}, {'type': 'model', 'cls': <class 'kittycad.models.output_format.obj'>, 'schema': {'type': 'model-fields', 'fields': {'coords': {'type': 'model-field', 'schema': {'type': 'definition-ref', 'schema_ref': 'kittycad.models.system.System:93825014588992'}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}, 'type': {'type': 'model-field', 'schema': {'type': 'default', 'schema': {'type': 'literal', 'expected': ['obj'], 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}}, 'default': 'obj'}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}, 'units': {'type': 'model-field', 'schema': {'type': 'definition-ref', 'schema_ref': 'kittycad.models.unit_length.UnitLength:93825014613552'}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}}, 'model_name': 'obj', 'computed_fields': []}, 'custom_init': False, 'root_model': False, 'config': {'title': 'obj'}, 'ref': 'kittycad.models.output_format.obj:93825014960000', 'metadata': {'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'kittycad.models.output_format.obj'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.output_format.obj'>>], 'pydantic_js_annotation_functions': [], 'pydantic.internal.needs_apply_discriminated_union': False}}, {'type': 'model', 'cls': <class 'kittycad.models.output_format.ply'>, 'schema': {'type': 'model-fields', 'fields': {'coords': {'type': 'model-field', 'schema': {'type': 'definition-ref', 'schema_ref': 'kittycad.models.system.System:93825014588992'}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}, 'selection': {'type': 'model-field', 'schema': {'type': 'definition-ref', 'schema_ref': "pydantic.root_model.RootModel:93825014829600[Annotated[Union[kittycad.models.selection.default_scene, kittycad.models.selection.scene_by_index, kittycad.models.selection.scene_by_name, kittycad.models.selection.mesh_by_index, kittycad.models.selection.mesh_by_name], FieldInfo(annotation=NoneType, required=True, discriminator='type')]:140736970863040]"}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}, 'storage': {'type': 'model-field', 'schema': {'type': 'lax-or-strict', 'lax_schema': {'type': 'chain', 'steps': [{'type': 'str'}, {'type': 'function-plain', 'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}}]}, 'strict_schema': {'type': 'json-or-python', 'json_schema': {'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'python_schema': {'type': 'is-instance', 'cls': <enum 'PlyStorage'>}}, 'ref': 'kittycad.models.ply_storage.PlyStorage:93825014857632', 'metadata': {'pydantic_js_functions': [<function get_enum_core_schema.<locals>.get_json_schema>], 'pydantic.internal.needs_apply_discriminated_union': False}}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}, 'type': {'type': 'model-field', 'schema': {'type': 'default', 'schema': {'type': 'literal', 'expected': ['ply'], 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}}, 'default': 'ply'}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}, 'units': {'type': 'model-field', 'schema': {'type': 'definition-ref', 'schema_ref': 'kittycad.models.unit_length.UnitLength:93825014613552'}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}}, 'model_name': 'ply', 'computed_fields': []}, 'custom_init': False, 'root_model': False, 'config': {'title': 'ply'}, 'ref': 'kittycad.models.output_format.ply:93825014985680', 'metadata': {'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'kittycad.models.output_format.ply'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.output_format.ply'>>], 'pydantic_js_annotation_functions': [], 'pydantic.internal.needs_apply_discriminated_union': False}}, {'type': 'model', 'cls': <class 'kittycad.models.output_format.step'>, 'schema': {'type': 'model-fields', 'fields': {'coords': {'type': 'model-field', 'schema': {'type': 'definition-ref', 'schema_ref': 'kittycad.models.system.System:93825014588992'}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}, 'type': {'type': 'model-field', 'schema': {'type': 'default', 'schema': {'type': 'literal', 'expected': ['step'], 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}}, 'default': 'step'}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}}, 'model_name': 'step', 'computed_fields': []}, 'custom_init': False, 'root_model': False, 'config': {'title': 'step'}, 'ref': 'kittycad.models.output_format.step:93825015024240', 'metadata': {'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'kittycad.models.output_format.step'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.output_format.step'>>], 'pydantic_js_annotation_functions': [], 'pydantic.internal.needs_apply_discriminated_union': False}}, {'type': 'model', 'cls': <class 'kittycad.models.output_format.stl'>, 'schema': {'type': 'model-fields', 'fields': {'coords': {'type': 'model-field', 'schema': {'type': 'definition-ref', 'schema_ref': 'kittycad.models.system.System:93825014588992'}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}, 'selection': {'type': 'model-field', 'schema': {'type': 'definition-ref', 'schema_ref': "pydantic.root_model.RootModel:93825014829600[Annotated[Union[kittycad.models.selection.default_scene, kittycad.models.selection.scene_by_index, kittycad.models.selection.scene_by_name, kittycad.models.selection.mesh_by_index, kittycad.models.selection.mesh_by_name], FieldInfo(annotation=NoneType, required=True, discriminator='type')]:140736970863040]"}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}, 'storage': {'type': 'model-field', 'schema': {'type': 'lax-or-strict', 'lax_schema': {'type': 'chain', 'steps': [{'type': 'str'}, {'type': 'function-plain', 'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}}]}, 'strict_schema': {'type': 'json-or-python', 'json_schema': {'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'python_schema': {'type': 'is-instance', 'cls': <enum 'StlStorage'>}}, 'ref': 'kittycad.models.stl_storage.StlStorage:93825014940464', 'metadata': {'pydantic_js_functions': [<function get_enum_core_schema.<locals>.get_json_schema>], 'pydantic.internal.needs_apply_discriminated_union': False}}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}, 'type': {'type': 'model-field', 'schema': {'type': 'default', 'schema': {'type': 'literal', 'expected': ['stl'], 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}}, 'default': 'stl'}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}, 'units': {'type': 'model-field', 'schema': {'type': 'definition-ref', 'schema_ref': 'kittycad.models.unit_length.UnitLength:93825014613552'}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}}, 'model_name': 'stl', 'computed_fields': []}, 'custom_init': False, 'root_model': False, 'config': {'title': 'stl'}, 'ref': 'kittycad.models.output_format.stl:93825015103056', 'metadata': {'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'kittycad.models.output_format.stl'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.output_format.stl'>>], 'pydantic_js_annotation_functions': [], 'pydantic.internal.needs_apply_discriminated_union': False}}], 'metadata': {'pydantic.internal.needs_apply_discriminated_union': True, 'pydantic.internal.union_discriminator': 'type'}, 'type': 'union'}, 'type': 'model'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'outputs': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'keys_schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'strict': False, 'type': 'dict', 'values_schema': {'function': {'function': <class 'kittycad.models.base64data.Base64Data'>, 'type': 'no-info'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'bytes'}, 'type': 'function-after'}}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'src_format': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'lax_schema': {'steps': [{'type': 'str'}, {'type': 'function-plain', 'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}}], 'type': 'chain'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_functions': [<function get_enum_core_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.file_import_format.FileImportFormat:93825014566080', 'strict_schema': {'json_schema': {'function': {'function': <function get_enum_core_schema.<locals>.to_enum>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'python_schema': {'cls': <enum 'FileImportFormat'>, 'type': 'is-instance'}, 'type': 'json-or-python'}, 'type': 'lax-or-strict'}, 'type': 'model-field'}, 'src_format_options': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'cls': <class 'pydantic.root_model.RootModel[Annotated[Union[kittycad.models.input_format.fbx, kittycad.models.input_format.gltf, kittycad.models.input_format.obj, kittycad.models.input_format.ply, kittycad.models.input_format.sldprt, kittycad.models.input_format.step, kittycad.models.input_format.stl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]'>, 'config': {'title': "RootModel[Annotated[Union[kittycad.models.input_format.fbx, kittycad.models.input_format.gltf, kittycad.models.input_format.obj, kittycad.models.input_format.ply, kittycad.models.input_format.sldprt, kittycad.models.input_format.step, kittycad.models.input_format.stl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]"}, 'custom_init': False, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_annotation_functions': [], 'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'pydantic.root_model.RootModel[Annotated[Union[kittycad.models.input_format.fbx, kittycad.models.input_format.gltf, kittycad.models.input_format.obj, kittycad.models.input_format.ply, kittycad.models.input_format.sldprt, kittycad.models.input_format.step, kittycad.models.input_format.stl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'pydantic.root_model.RootModel[Annotated[Union[kittycad.models.input_format.fbx, kittycad.models.input_format.gltf, kittycad.models.input_format.obj, kittycad.models.input_format.ply, kittycad.models.input_format.sldprt, kittycad.models.input_format.step, kittycad.models.input_format.stl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]'>>]}, 'ref': "pydantic.root_model.RootModel:93825014829600[Annotated[Union[kittycad.models.input_format.fbx, kittycad.models.input_format.gltf, kittycad.models.input_format.obj, kittycad.models.input_format.ply, kittycad.models.input_format.sldprt, kittycad.models.input_format.step, kittycad.models.input_format.stl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]:140736972009584]", 'root_model': True, 'schema': {'choices': [{'type': 'model', 'cls': <class 'kittycad.models.input_format.fbx'>, 'schema': {'type': 'model-fields', 'fields': {'type': {'type': 'model-field', 'schema': {'type': 'default', 'schema': {'type': 'literal', 'expected': ['fbx'], 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}}, 'default': 'fbx'}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}}, 'model_name': 'fbx', 'computed_fields': []}, 'custom_init': False, 'root_model': False, 'config': {'title': 'fbx'}, 'ref': 'kittycad.models.input_format.fbx:93825014614496', 'metadata': {'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'kittycad.models.input_format.fbx'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.input_format.fbx'>>], 'pydantic_js_annotation_functions': [], 'pydantic.internal.needs_apply_discriminated_union': False}}, {'type': 'model', 'cls': <class 'kittycad.models.input_format.gltf'>, 'schema': {'type': 'model-fields', 'fields': {'type': {'type': 'model-field', 'schema': {'type': 'default', 'schema': {'type': 'literal', 'expected': ['gltf'], 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}}, 'default': 'gltf'}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}}, 'model_name': 'gltf', 'computed_fields': []}, 'custom_init': False, 'root_model': False, 'config': {'title': 'gltf'}, 'ref': 'kittycad.models.input_format.gltf:93825014623968', 'metadata': {'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'kittycad.models.input_format.gltf'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.input_format.gltf'>>], 'pydantic_js_annotation_functions': [], 'pydantic.internal.needs_apply_discriminated_union': False}}, {'type': 'model', 'cls': <class 'kittycad.models.input_format.obj'>, 'schema': {'type': 'model-fields', 'fields': {'coords': {'type': 'model-field', 'schema': {'type': 'definition-ref', 'schema_ref': 'kittycad.models.system.System:93825014588992'}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}, 'type': {'type': 'model-field', 'schema': {'type': 'default', 'schema': {'type': 'literal', 'expected': ['obj'], 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}}, 'default': 'obj'}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}, 'units': {'type': 'model-field', 'schema': {'type': 'definition-ref', 'schema_ref': 'kittycad.models.unit_length.UnitLength:93825014613552'}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}}, 'model_name': 'obj', 'computed_fields': []}, 'custom_init': False, 'root_model': False, 'config': {'title': 'obj'}, 'ref': 'kittycad.models.input_format.obj:93825014631616', 'metadata': {'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'kittycad.models.input_format.obj'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.input_format.obj'>>], 'pydantic_js_annotation_functions': [], 'pydantic.internal.needs_apply_discriminated_union': False}}, {'type': 'model', 'cls': <class 'kittycad.models.input_format.ply'>, 'schema': {'type': 'model-fields', 'fields': {'coords': {'type': 'model-field', 'schema': {'type': 'definition-ref', 'schema_ref': 'kittycad.models.system.System:93825014588992'}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}, 'type': {'type': 'model-field', 'schema': {'type': 'default', 'schema': {'type': 'literal', 'expected': ['ply'], 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}}, 'default': 'ply'}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}, 'units': {'type': 'model-field', 'schema': {'type': 'definition-ref', 'schema_ref': 'kittycad.models.unit_length.UnitLength:93825014613552'}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}}, 'model_name': 'ply', 'computed_fields': []}, 'custom_init': False, 'root_model': False, 'config': {'title': 'ply'}, 'ref': 'kittycad.models.input_format.ply:93825014670816', 'metadata': {'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'kittycad.models.input_format.ply'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.input_format.ply'>>], 'pydantic_js_annotation_functions': [], 'pydantic.internal.needs_apply_discriminated_union': False}}, {'type': 'model', 'cls': <class 'kittycad.models.input_format.sldprt'>, 'schema': {'type': 'model-fields', 'fields': {'type': {'type': 'model-field', 'schema': {'type': 'default', 'schema': {'type': 'literal', 'expected': ['sldprt'], 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}}, 'default': 'sldprt'}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}}, 'model_name': 'sldprt', 'computed_fields': []}, 'custom_init': False, 'root_model': False, 'config': {'title': 'sldprt'}, 'ref': 'kittycad.models.input_format.sldprt:93825014708240', 'metadata': {'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'kittycad.models.input_format.sldprt'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.input_format.sldprt'>>], 'pydantic_js_annotation_functions': [], 'pydantic.internal.needs_apply_discriminated_union': False}}, {'type': 'model', 'cls': <class 'kittycad.models.input_format.step'>, 'schema': {'type': 'model-fields', 'fields': {'type': {'type': 'model-field', 'schema': {'type': 'default', 'schema': {'type': 'literal', 'expected': ['step'], 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}}, 'default': 'step'}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}}, 'model_name': 'step', 'computed_fields': []}, 'custom_init': False, 'root_model': False, 'config': {'title': 'step'}, 'ref': 'kittycad.models.input_format.step:93825014715072', 'metadata': {'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'kittycad.models.input_format.step'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.input_format.step'>>], 'pydantic_js_annotation_functions': [], 'pydantic.internal.needs_apply_discriminated_union': False}}, {'type': 'model', 'cls': <class 'kittycad.models.input_format.stl'>, 'schema': {'type': 'model-fields', 'fields': {'coords': {'type': 'model-field', 'schema': {'type': 'definition-ref', 'schema_ref': 'kittycad.models.system.System:93825014588992'}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}, 'type': {'type': 'model-field', 'schema': {'type': 'default', 'schema': {'type': 'literal', 'expected': ['stl'], 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}}, 'default': 'stl'}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}, 'units': {'type': 'model-field', 'schema': {'type': 'definition-ref', 'schema_ref': 'kittycad.models.unit_length.UnitLength:93825014613552'}, 'metadata': {'pydantic_js_functions': [], 'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>]}}}, 'model_name': 'stl', 'computed_fields': []}, 'custom_init': False, 'root_model': False, 'config': {'title': 'stl'}, 'ref': 'kittycad.models.input_format.stl:93825014722912', 'metadata': {'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'kittycad.models.input_format.stl'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.input_format.stl'>>], 'pydantic_js_annotation_functions': [], 'pydantic.internal.needs_apply_discriminated_union': False}}], 'metadata': {'pydantic.internal.needs_apply_discriminated_union': True, 'pydantic.internal.union_discriminator': 'type'}, 'type': 'union'}, 'type': 'model'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'started_at': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_annotation_functions': [<bound method InnerSchemaValidator.__get_pydantic_json_schema__ of InnerSchemaValidator(core_schema={'type': 'datetime', 'microseconds_precision': 'truncate', 'metadata': {'pydantic_js_annotation_functions': [...], 'pydantic.internal.needs_apply_discriminated_union': False}}, js_schema=None, js_core_schema=None, js_schema_update=None)>]}, 'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'status': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'lax_schema': {'steps': [{'type': 'str'}, {'type': 'function-plain', 'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}}], 'type': 'chain'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_functions': [<function get_enum_core_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.api_call_status.ApiCallStatus:93825014051056', 'strict_schema': {'json_schema': {'function': {'function': <function get_enum_core_schema.<locals>.to_enum>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'python_schema': {'cls': <enum 'ApiCallStatus'>, 'type': 'is-instance'}, 'type': 'json-or-python'}, 'type': 'lax-or-strict'}, 'type': 'model-field'}, 'type': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': 'file_conversion', 'schema': {'expected': ['file_conversion'], 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'literal'}, 'type': 'default'}, 'type': 'model-field'}, 'updated_at': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'metadata': {'pydantic_js_annotation_functions': [<bound method InnerSchemaValidator.__get_pydantic_json_schema__ of InnerSchemaValidator(core_schema={'type': 'datetime', 'microseconds_precision': 'truncate', 'metadata': {'pydantic_js_annotation_functions': [...]}}, js_schema=None, js_core_schema=None, js_schema_update=None)>]}, 'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'model-field'}, 'user_id': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'function': {'function': <class 'kittycad.models.uuid.Uuid'>, 'type': 'no-info'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'function-after'}, 'type': 'model-field'}}, 'model_name': 'file_conversion', 'type': 'model-fields'}, 'type': 'model'}, 'type': 'definitions'}[source]
__pydantic_custom_init__: ClassVar[bool] = False[source]
__pydantic_decorators__: ClassVar[_decorators.DecoratorInfos] = DecoratorInfos(validators={}, field_validators={}, root_validators={}, field_serializers={}, model_serializers={}, model_validators={}, computed_fields={})[source]
__pydantic_extra__: dict[str, Any] | None[source]
__pydantic_fields_set__: set[str][source]
__pydantic_generic_metadata__: ClassVar[_generics.PydanticGenericMetadata] = {'args': (), 'origin': None, 'parameters': ()}[source]
classmethod __pydantic_init_subclass__(**kwargs)[source]

This is intended to behave just like __init_subclass__, but is called by ModelMetaclass only after the class is actually fully initialized. In particular, attributes like model_fields will be present when this is called.

This is necessary because __init_subclass__ will always be called by type.__new__, and it would require a prohibitively large refactor to the ModelMetaclass to ensure that type.__new__ was called in such a manner that the class would already be sufficiently initialized.

This will receive the same kwargs that would be passed to the standard __init_subclass__, namely, any kwargs passed to the class definition that aren’t used internally by pydantic.

Parameters:

**kwargs (Any) – Any keyword arguments passed to the class definition that aren’t used internally by pydantic.

Return type:

None

__pydantic_parent_namespace__: ClassVar[dict[str, Any] | None] = {'AiFeedback': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Annotated': <pydantic._internal._model_construction._PydanticWeakRef object>, 'ApiCallStatus': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Base64Data': <pydantic._internal._model_construction._PydanticWeakRef object>, 'BaseModel': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Dict': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Field': <pydantic._internal._model_construction._PydanticWeakRef object>, 'FileExportFormat': <pydantic._internal._model_construction._PydanticWeakRef object>, 'FileImportFormat': <pydantic._internal._model_construction._PydanticWeakRef object>, 'InputFormat': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Literal': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Optional': <pydantic._internal._model_construction._PydanticWeakRef object>, 'OutputFormat': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Point3d': <pydantic._internal._model_construction._PydanticWeakRef object>, 'RootModel': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Union': <pydantic._internal._model_construction._PydanticWeakRef object>, 'UnitArea': <pydantic._internal._model_construction._PydanticWeakRef object>, 'UnitDensity': <pydantic._internal._model_construction._PydanticWeakRef object>, 'UnitLength': <pydantic._internal._model_construction._PydanticWeakRef object>, 'UnitMass': <pydantic._internal._model_construction._PydanticWeakRef object>, 'UnitVolume': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Uuid': <pydantic._internal._model_construction._PydanticWeakRef object>, '__builtins__': {'ArithmeticError': <class 'ArithmeticError'>, 'AssertionError': <class 'AssertionError'>, 'AttributeError': <class 'AttributeError'>, 'BaseException': <class 'BaseException'>, 'BlockingIOError': <class 'BlockingIOError'>, 'BrokenPipeError': <class 'BrokenPipeError'>, 'BufferError': <class 'BufferError'>, 'BytesWarning': <class 'BytesWarning'>, 'ChildProcessError': <class 'ChildProcessError'>, 'ConnectionAbortedError': <class 'ConnectionAbortedError'>, 'ConnectionError': <class 'ConnectionError'>, 'ConnectionRefusedError': <class 'ConnectionRefusedError'>, 'ConnectionResetError': <class 'ConnectionResetError'>, 'DeprecationWarning': <class 'DeprecationWarning'>, 'EOFError': <class 'EOFError'>, 'Ellipsis': Ellipsis, 'EnvironmentError': <class 'OSError'>, 'Exception': <class 'Exception'>, 'False': False, 'FileExistsError': <class 'FileExistsError'>, 'FileNotFoundError': <class 'FileNotFoundError'>, 'FloatingPointError': <class 'FloatingPointError'>, 'FutureWarning': <class 'FutureWarning'>, 'GeneratorExit': <class 'GeneratorExit'>, 'IOError': <class 'OSError'>, 'ImportError': <class 'ImportError'>, 'ImportWarning': <class 'ImportWarning'>, 'IndentationError': <class 'IndentationError'>, 'IndexError': <class 'IndexError'>, 'InterruptedError': <class 'InterruptedError'>, 'IsADirectoryError': <class 'IsADirectoryError'>, 'KeyError': <class 'KeyError'>, 'KeyboardInterrupt': <class 'KeyboardInterrupt'>, 'LookupError': <class 'LookupError'>, 'MemoryError': <class 'MemoryError'>, 'ModuleNotFoundError': <class 'ModuleNotFoundError'>, 'NameError': <class 'NameError'>, 'None': None, 'NotADirectoryError': <class 'NotADirectoryError'>, 'NotImplemented': NotImplemented, 'NotImplementedError': <class 'NotImplementedError'>, 'OSError': <class 'OSError'>, 'OverflowError': <class 'OverflowError'>, 'PendingDeprecationWarning': <class 'PendingDeprecationWarning'>, 'PermissionError': <class 'PermissionError'>, 'ProcessLookupError': <class 'ProcessLookupError'>, 'RecursionError': <class 'RecursionError'>, 'ReferenceError': <class 'ReferenceError'>, 'ResourceWarning': <class 'ResourceWarning'>, 'RuntimeError': <class 'RuntimeError'>, 'RuntimeWarning': <class 'RuntimeWarning'>, 'StopAsyncIteration': <class 'StopAsyncIteration'>, 'StopIteration': <class 'StopIteration'>, 'SyntaxError': <class 'SyntaxError'>, 'SyntaxWarning': <class 'SyntaxWarning'>, 'SystemError': <class 'SystemError'>, 'SystemExit': <class 'SystemExit'>, 'TabError': <class 'TabError'>, 'TimeoutError': <class 'TimeoutError'>, 'True': True, 'TypeError': <class 'TypeError'>, 'UnboundLocalError': <class 'UnboundLocalError'>, 'UnicodeDecodeError': <class 'UnicodeDecodeError'>, 'UnicodeEncodeError': <class 'UnicodeEncodeError'>, 'UnicodeError': <class 'UnicodeError'>, 'UnicodeTranslateError': <class 'UnicodeTranslateError'>, 'UnicodeWarning': <class 'UnicodeWarning'>, 'UserWarning': <class 'UserWarning'>, 'ValueError': <class 'ValueError'>, 'Warning': <class 'Warning'>, 'ZeroDivisionError': <class 'ZeroDivisionError'>, '__build_class__': <built-in function __build_class__>, '__debug__': True, '__doc__': "Built-in functions, exceptions, and other objects.\n\nNoteworthy: None is the `nil' object; Ellipsis represents `...' in slices.", '__import__': <built-in function __import__>, '__loader__': <class '_frozen_importlib.BuiltinImporter'>, '__name__': 'builtins', '__package__': '', '__spec__': ModuleSpec(name='builtins', loader=<class '_frozen_importlib.BuiltinImporter'>, origin='built-in'), 'abs': <built-in function abs>, 'all': <built-in function all>, 'any': <built-in function any>, 'ascii': <built-in function ascii>, 'bin': <built-in function bin>, 'bool': <class 'bool'>, 'breakpoint': <built-in function breakpoint>, 'bytearray': <class 'bytearray'>, 'bytes': <class 'bytes'>, 'callable': <built-in function callable>, 'chr': <built-in function chr>, 'classmethod': <class 'classmethod'>, 'compile': <built-in function compile>, 'complex': <class 'complex'>, 'copyright': Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved.  Copyright (c) 2000 BeOpen.com. All Rights Reserved.  Copyright (c) 1995-2001 Corporation for National Research Initiatives. All Rights Reserved.  Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam. All Rights Reserved., 'credits':     Thanks to CWI, CNRI, BeOpen.com, Zope Corporation and a cast of thousands     for supporting Python development.  See www.python.org for more information., 'delattr': <built-in function delattr>, 'dict': <class 'dict'>, 'dir': <built-in function dir>, 'divmod': <built-in function divmod>, 'enumerate': <class 'enumerate'>, 'eval': <built-in function eval>, 'exec': <built-in function exec>, 'exit': Use exit() or Ctrl-D (i.e. EOF) to exit, 'filter': <class 'filter'>, 'float': <class 'float'>, 'format': <built-in function format>, 'frozenset': <class 'frozenset'>, 'getattr': <built-in function getattr>, 'globals': <built-in function globals>, 'hasattr': <built-in function hasattr>, 'hash': <built-in function hash>, 'help': Type help() for interactive help, or help(object) for help about object., 'hex': <built-in function hex>, 'id': <built-in function id>, 'input': <built-in function input>, 'int': <class 'int'>, 'isinstance': <built-in function isinstance>, 'issubclass': <built-in function issubclass>, 'iter': <built-in function iter>, 'len': <built-in function len>, 'license': Type license() to see the full license text, 'list': <class 'list'>, 'locals': <built-in function locals>, 'map': <class 'map'>, 'max': <built-in function max>, 'memoryview': <class 'memoryview'>, 'min': <built-in function min>, 'next': <built-in function next>, 'object': <class 'object'>, 'oct': <built-in function oct>, 'open': <built-in function open>, 'ord': <built-in function ord>, 'pow': <built-in function pow>, 'print': <built-in function print>, 'property': <class 'property'>, 'quit': Use quit() or Ctrl-D (i.e. EOF) to exit, 'range': <class 'range'>, 'repr': <built-in function repr>, 'reversed': <class 'reversed'>, 'round': <built-in function round>, 'set': <class 'set'>, 'setattr': <built-in function setattr>, 'slice': <class 'slice'>, 'sorted': <built-in function sorted>, 'staticmethod': <class 'staticmethod'>, 'str': <class 'str'>, 'sum': <built-in function sum>, 'super': <class 'super'>, 'tuple': <class 'tuple'>, 'type': <class 'type'>, 'vars': <built-in function vars>, 'zip': <class 'zip'>}, '__cached__': '/home/user/src/kittycad/models/__pycache__/async_api_call_output.cpython-39.pyc', '__doc__': <pydantic._internal._model_construction._PydanticWeakRef object>, '__file__': '/home/user/src/kittycad/models/async_api_call_output.py', '__loader__': <pydantic._internal._model_construction._PydanticWeakRef object>, '__name__': 'kittycad.models.async_api_call_output', '__package__': 'kittycad.models', '__spec__': <pydantic._internal._model_construction._PydanticWeakRef object>, 'datetime': <pydantic._internal._model_construction._PydanticWeakRef object>}[source]
__pydantic_post_init__: ClassVar[None | Literal['model_post_init']] = None[source]
__pydantic_private__: dict[str, Any] | None[source]
__pydantic_root_model__: ClassVar[bool] = False[source]
__pydantic_serializer__: ClassVar[SchemaSerializer] = SchemaSerializer(serializer=Model(     ModelSerializer {         class: Py(             0x0000555556b68250,         ),         serializer: Fields(             GeneralFieldsSerializer {                 fields: {                     "user_id": SerField {                         key_py: Py(                             0x00007fffe137c730,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Str(                                 StrSerializer,                             ),                         ),                         required: true,                     },                     "started_at": SerField {                         key_py: Py(                             0x00007fffe137cbf0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007ffffff85420,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Datetime(                                                 DatetimeSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "id": SerField {                         key_py: Py(                             0x00007fffff8eb3b0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Str(                                 StrSerializer,                             ),                         ),                         required: true,                     },                     "error": SerField {                         key_py: Py(                             0x00007fffff904b70,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007ffffff85420,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Str(                                                 StrSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "output_format": SerField {                         key_py: Py(                             0x00007fffe1c7b830,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             JsonOrPython(                                 JsonOrPythonSerializer {                                     json: Str(                                         StrSerializer,                                     ),                                     python: Any(                                         AnySerializer,                                     ),                                     name: "json-or-python[json=str, python=any]",                                 },                             ),                         ),                         required: true,                     },                     "created_at": SerField {                         key_py: Py(                             0x00007fffe12ecdf0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Datetime(                                 DatetimeSerializer,                             ),                         ),                         required: true,                     },                     "type": SerField {                         key_py: Py(                             0x00007fffff8ebef0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fffe1c7bb70,                                         ),                                     ),                                     serializer: Literal(                                         LiteralSerializer {                                             expected_int: {},                                             expected_str: {                                                 "file_conversion",                                             },                                             expected_py: None,                                             name: "literal['file_conversion']",                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "src_format": SerField {                         key_py: Py(                             0x00007fffe1494470,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             JsonOrPython(                                 JsonOrPythonSerializer {                                     json: Str(                                         StrSerializer,                                     ),                                     python: Any(                                         AnySerializer,                                     ),                                     name: "json-or-python[json=str, python=any]",                                 },                             ),                         ),                         required: true,                     },                     "src_format_options": SerField {                         key_py: Py(                             0x00007fffe14cdf30,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007ffffff85420,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Model(                                                 ModelSerializer {                                                     class: Py(                                                         0x0000555556ac7ba0,                                                     ),                                                     serializer: Union(                                                         UnionSerializer {                                                             choices: [                                                                 Model(                                                                     ModelSerializer {                                                                         class: Py(                                                                             0x0000555556aac9e0,                                                                         ),                                                                         serializer: Fields(                                                                             GeneralFieldsSerializer {                                                                                 fields: {                                                                                     "type": SerField {                                                                                         key_py: Py(                                                                                             0x00007fffff8ebef0,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             WithDefault(                                                                                                 WithDefaultSerializer {                                                                                                     default: Default(                                                                                                         Py(                                                                                                             0x00007fffe14d8f70,                                                                                                         ),                                                                                                     ),                                                                                                     serializer: Literal(                                                                                                         LiteralSerializer {                                                                                                             expected_int: {},                                                                                                             expected_str: {                                                                                                                 "fbx",                                                                                                             },                                                                                                             expected_py: None,                                                                                                             name: "literal['fbx']",                                                                                                         },                                                                                                     ),                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                 },                                                                                 computed_fields: Some(                                                                                     ComputedFields(                                                                                         [],                                                                                     ),                                                                                 ),                                                                                 mode: SimpleDict,                                                                                 extra_serializer: None,                                                                                 filter: SchemaFilter {                                                                                     include: None,                                                                                     exclude: None,                                                                                 },                                                                                 required_fields: 1,                                                                             },                                                                         ),                                                                         has_extra: false,                                                                         root_model: false,                                                                         name: "fbx",                                                                     },                                                                 ),                                                                 Model(                                                                     ModelSerializer {                                                                         class: Py(                                                                             0x0000555556aaeee0,                                                                         ),                                                                         serializer: Fields(                                                                             GeneralFieldsSerializer {                                                                                 fields: {                                                                                     "type": SerField {                                                                                         key_py: Py(                                                                                             0x00007fffff8ebef0,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             WithDefault(                                                                                                 WithDefaultSerializer {                                                                                                     default: Default(                                                                                                         Py(                                                                                                             0x00007fffe137ba30,                                                                                                         ),                                                                                                     ),                                                                                                     serializer: Literal(                                                                                                         LiteralSerializer {                                                                                                             expected_int: {},                                                                                                             expected_str: {                                                                                                                 "gltf",                                                                                                             },                                                                                                             expected_py: None,                                                                                                             name: "literal['gltf']",                                                                                                         },                                                                                                     ),                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                 },                                                                                 computed_fields: Some(                                                                                     ComputedFields(                                                                                         [],                                                                                     ),                                                                                 ),                                                                                 mode: SimpleDict,                                                                                 extra_serializer: None,                                                                                 filter: SchemaFilter {                                                                                     include: None,                                                                                     exclude: None,                                                                                 },                                                                                 required_fields: 1,                                                                             },                                                                         ),                                                                         has_extra: false,                                                                         root_model: false,                                                                         name: "gltf",                                                                     },                                                                 ),                                                                 Model(                                                                     ModelSerializer {                                                                         class: Py(                                                                             0x0000555556ab0cc0,                                                                         ),                                                                         serializer: Fields(                                                                             GeneralFieldsSerializer {                                                                                 fields: {                                                                                     "coords": SerField {                                                                                         key_py: Py(                                                                                             0x00007ffffcb0d8f0,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             Recursive(                                                                                                 DefinitionRefSerializer {                                                                                                     definition: "kittycad.models.system.System:93825014588992",                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "units": SerField {                                                                                         key_py: Py(                                                                                             0x00007fffff2402b0,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             Recursive(                                                                                                 DefinitionRefSerializer {                                                                                                     definition: "kittycad.models.unit_length.UnitLength:93825014613552",                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "type": SerField {                                                                                         key_py: Py(                                                                                             0x00007fffff8ebef0,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             WithDefault(                                                                                                 WithDefaultSerializer {                                                                                                     default: Default(                                                                                                         Py(                                                                                                             0x00007fffff93a970,                                                                                                         ),                                                                                                     ),                                                                                                     serializer: Literal(                                                                                                         LiteralSerializer {                                                                                                             expected_int: {},                                                                                                             expected_str: {                                                                                                                 "obj",                                                                                                             },                                                                                                             expected_py: None,                                                                                                             name: "literal['obj']",                                                                                                         },                                                                                                     ),                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                 },                                                                                 computed_fields: Some(                                                                                     ComputedFields(                                                                                         [],                                                                                     ),                                                                                 ),                                                                                 mode: SimpleDict,                                                                                 extra_serializer: None,                                                                                 filter: SchemaFilter {                                                                                     include: None,                                                                                     exclude: None,                                                                                 },                                                                                 required_fields: 3,                                                                             },                                                                         ),                                                                         has_extra: false,                                                                         root_model: false,                                                                         name: "obj",                                                                     },                                                                 ),                                                                 Model(                                                                     ModelSerializer {                                                                         class: Py(                                                                             0x0000555556aba5e0,                                                                         ),                                                                         serializer: Fields(                                                                             GeneralFieldsSerializer {                                                                                 fields: {                                                                                     "units": SerField {                                                                                         key_py: Py(                                                                                             0x00007fffff2402b0,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             Recursive(                                                                                                 DefinitionRefSerializer {                                                                                                     definition: "kittycad.models.unit_length.UnitLength:93825014613552",                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "type": SerField {                                                                                         key_py: Py(                                                                                             0x00007fffff8ebef0,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             WithDefault(                                                                                                 WithDefaultSerializer {                                                                                                     default: Default(                                                                                                         Py(                                                                                                             0x00007fffe137bab0,                                                                                                         ),                                                                                                     ),                                                                                                     serializer: Literal(                                                                                                         LiteralSerializer {                                                                                                             expected_int: {},                                                                                                             expected_str: {                                                                                                                 "ply",                                                                                                             },                                                                                                             expected_py: None,                                                                                                             name: "literal['ply']",                                                                                                         },                                                                                                     ),                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "coords": SerField {                                                                                         key_py: Py(                                                                                             0x00007ffffcb0d8f0,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             Recursive(                                                                                                 DefinitionRefSerializer {                                                                                                     definition: "kittycad.models.system.System:93825014588992",                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                 },                                                                                 computed_fields: Some(                                                                                     ComputedFields(                                                                                         [],                                                                                     ),                                                                                 ),                                                                                 mode: SimpleDict,                                                                                 extra_serializer: None,                                                                                 filter: SchemaFilter {                                                                                     include: None,                                                                                     exclude: None,                                                                                 },                                                                                 required_fields: 3,                                                                             },                                                                         ),                                                                         has_extra: false,                                                                         root_model: false,                                                                         name: "ply",                                                                     },                                                                 ),                                                                 Model(                                                                     ModelSerializer {                                                                         class: Py(                                                                             0x0000555556ac3810,                                                                         ),                                                                         serializer: Fields(                                                                             GeneralFieldsSerializer {                                                                                 fields: {                                                                                     "type": SerField {                                                                                         key_py: Py(                                                                                             0x00007fffff8ebef0,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             WithDefault(                                                                                                 WithDefaultSerializer {                                                                                                     default: Default(                                                                                                         Py(                                                                                                             0x00007fffe1ef6430,                                                                                                         ),                                                                                                     ),                                                                                                     serializer: Literal(                                                                                                         LiteralSerializer {                                                                                                             expected_int: {},                                                                                                             expected_str: {                                                                                                                 "sldprt",                                                                                                             },                                                                                                             expected_py: None,                                                                                                             name: "literal['sldprt']",                                                                                                         },                                                                                                     ),                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                 },                                                                                 computed_fields: Some(                                                                                     ComputedFields(                                                                                         [],                                                                                     ),                                                                                 ),                                                                                 mode: SimpleDict,                                                                                 extra_serializer: None,                                                                                 filter: SchemaFilter {                                                                                     include: None,                                                                                     exclude: None,                                                                                 },                                                                                 required_fields: 1,                                                                             },                                                                         ),                                                                         has_extra: false,                                                                         root_model: false,                                                                         name: "sldprt",                                                                     },                                                                 ),                                                                 Model(                                                                     ModelSerializer {                                                                         class: Py(                                                                             0x0000555556ac52c0,                                                                         ),                                                                         serializer: Fields(                                                                             GeneralFieldsSerializer {                                                                                 fields: {                                                                                     "type": SerField {                                                                                         key_py: Py(                                                                                             0x00007fffff8ebef0,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             WithDefault(                                                                                                 WithDefaultSerializer {                                                                                                     default: Default(                                                                                                         Py(                                                                                                             0x00007fffff929d30,                                                                                                         ),                                                                                                     ),                                                                                                     serializer: Literal(                                                                                                         LiteralSerializer {                                                                                                             expected_int: {},                                                                                                             expected_str: {                                                                                                                 "step",                                                                                                             },                                                                                                             expected_py: None,                                                                                                             name: "literal['step']",                                                                                                         },                                                                                                     ),                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                 },                                                                                 computed_fields: Some(                                                                                     ComputedFields(                                                                                         [],                                                                                     ),                                                                                 ),                                                                                 mode: SimpleDict,                                                                                 extra_serializer: None,                                                                                 filter: SchemaFilter {                                                                                     include: None,                                                                                     exclude: None,                                                                                 },                                                                                 required_fields: 1,                                                                             },                                                                         ),                                                                         has_extra: false,                                                                         root_model: false,                                                                         name: "step",                                                                     },                                                                 ),                                                                 Model(                                                                     ModelSerializer {                                                                         class: Py(                                                                             0x0000555556ac7160,                                                                         ),                                                                         serializer: Fields(                                                                             GeneralFieldsSerializer {                                                                                 fields: {                                                                                     "units": SerField {                                                                                         key_py: Py(                                                                                             0x00007fffff2402b0,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             Recursive(                                                                                                 DefinitionRefSerializer {                                                                                                     definition: "kittycad.models.unit_length.UnitLength:93825014613552",                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "coords": SerField {                                                                                         key_py: Py(                                                                                             0x00007ffffcb0d8f0,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             Recursive(                                                                                                 DefinitionRefSerializer {                                                                                                     definition: "kittycad.models.system.System:93825014588992",                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "type": SerField {                                                                                         key_py: Py(                                                                                             0x00007fffff8ebef0,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             WithDefault(                                                                                                 WithDefaultSerializer {                                                                                                     default: Default(                                                                                                         Py(                                                                                                             0x00007fffe137bb30,                                                                                                         ),                                                                                                     ),                                                                                                     serializer: Literal(                                                                                                         LiteralSerializer {                                                                                                             expected_int: {},                                                                                                             expected_str: {                                                                                                                 "stl",                                                                                                             },                                                                                                             expected_py: None,                                                                                                             name: "literal['stl']",                                                                                                         },                                                                                                     ),                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                 },                                                                                 computed_fields: Some(                                                                                     ComputedFields(                                                                                         [],                                                                                     ),                                                                                 ),                                                                                 mode: SimpleDict,                                                                                 extra_serializer: None,                                                                                 filter: SchemaFilter {                                                                                     include: None,                                                                                     exclude: None,                                                                                 },                                                                                 required_fields: 3,                                                                             },                                                                         ),                                                                         has_extra: false,                                                                         root_model: false,                                                                         name: "stl",                                                                     },                                                                 ),                                                             ],                                                             name: "Union[fbx, gltf, obj, ply, sldprt, step, stl]",                                                         },                                                     ),                                                     has_extra: false,                                                     root_model: true,                                                     name: "RootModel[Annotated[Union[kittycad.models.input_format.fbx, kittycad.models.input_format.gltf, kittycad.models.input_format.obj, kittycad.models.input_format.ply, kittycad.models.input_format.sldprt, kittycad.models.input_format.step, kittycad.models.input_format.stl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]",                                                 },                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "status": SerField {                         key_py: Py(                             0x00007fffff6e27f0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             JsonOrPython(                                 JsonOrPythonSerializer {                                     json: Str(                                         StrSerializer,                                     ),                                     python: Any(                                         AnySerializer,                                     ),                                     name: "json-or-python[json=str, python=any]",                                 },                             ),                         ),                         required: true,                     },                     "completed_at": SerField {                         key_py: Py(                             0x00007fffe1c78a70,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007ffffff85420,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Datetime(                                                 DatetimeSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "output_format_options": SerField {                         key_py: Py(                             0x00007fffe14edbc0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007ffffff85420,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Model(                                                 ModelSerializer {                                                     class: Py(                                                         0x0000555556b2bea0,                                                     ),                                                     serializer: Union(                                                         UnionSerializer {                                                             choices: [                                                                 Model(                                                                     ModelSerializer {                                                                         class: Py(                                                                             0x0000555556a22c90,                                                                         ),                                                                         serializer: Fields(                                                                             GeneralFieldsSerializer {                                                                                 fields: {                                                                                     "type": SerField {                                                                                         key_py: Py(                                                                                             0x00007fffff8ebef0,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             WithDefault(                                                                                                 WithDefaultSerializer {                                                                                                     default: Default(                                                                                                         Py(                                                                                                             0x00007fffe14d8f70,                                                                                                         ),                                                                                                     ),                                                                                                     serializer: Literal(                                                                                                         LiteralSerializer {                                                                                                             expected_int: {},                                                                                                             expected_str: {                                                                                                                 "fbx",                                                                                                             },                                                                                                             expected_py: None,                                                                                                             name: "literal['fbx']",                                                                                                         },                                                                                                     ),                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "storage": SerField {                                                                                         key_py: Py(                                                                                             0x00007ffffd064cb0,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             JsonOrPython(                                                                                                 JsonOrPythonSerializer {                                                                                                     json: Str(                                                                                                         StrSerializer,                                                                                                     ),                                                                                                     python: Any(                                                                                                         AnySerializer,                                                                                                     ),                                                                                                     name: "json-or-python[json=str, python=any]",                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                 },                                                                                 computed_fields: Some(                                                                                     ComputedFields(                                                                                         [],                                                                                     ),                                                                                 ),                                                                                 mode: SimpleDict,                                                                                 extra_serializer: None,                                                                                 filter: SchemaFilter {                                                                                     include: None,                                                                                     exclude: None,                                                                                 },                                                                                 required_fields: 2,                                                                             },                                                                         ),                                                                         has_extra: false,                                                                         root_model: false,                                                                         name: "fbx",                                                                     },                                                                 ),                                                                 Model(                                                                     ModelSerializer {                                                                         class: Py(                                                                             0x0000555556afdca0,                                                                         ),                                                                         serializer: Fields(                                                                             GeneralFieldsSerializer {                                                                                 fields: {                                                                                     "presentation": SerField {                                                                                         key_py: Py(                                                                                             0x00007fffe14c1eb0,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             JsonOrPython(                                                                                                 JsonOrPythonSerializer {                                                                                                     json: Str(                                                                                                         StrSerializer,                                                                                                     ),                                                                                                     python: Any(                                                                                                         AnySerializer,                                                                                                     ),                                                                                                     name: "json-or-python[json=str, python=any]",                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "storage": SerField {                                                                                         key_py: Py(                                                                                             0x00007ffffd064cb0,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             JsonOrPython(                                                                                                 JsonOrPythonSerializer {                                                                                                     json: Str(                                                                                                         StrSerializer,                                                                                                     ),                                                                                                     python: Any(                                                                                                         AnySerializer,                                                                                                     ),                                                                                                     name: "json-or-python[json=str, python=any]",                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "type": SerField {                                                                                         key_py: Py(                                                                                             0x00007fffff8ebef0,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             WithDefault(                                                                                                 WithDefaultSerializer {                                                                                                     default: Default(                                                                                                         Py(                                                                                                             0x00007fffe137ba30,                                                                                                         ),                                                                                                     ),                                                                                                     serializer: Literal(                                                                                                         LiteralSerializer {                                                                                                             expected_int: {},                                                                                                             expected_str: {                                                                                                                 "gltf",                                                                                                             },                                                                                                             expected_py: None,                                                                                                             name: "literal['gltf']",                                                                                                         },                                                                                                     ),                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                 },                                                                                 computed_fields: Some(                                                                                     ComputedFields(                                                                                         [],                                                                                     ),                                                                                 ),                                                                                 mode: SimpleDict,                                                                                 extra_serializer: None,                                                                                 filter: SchemaFilter {                                                                                     include: None,                                                                                     exclude: None,                                                                                 },                                                                                 required_fields: 3,                                                                             },                                                                         ),                                                                         has_extra: false,                                                                         root_model: false,                                                                         name: "gltf",                                                                     },                                                                 ),                                                                 Model(                                                                     ModelSerializer {                                                                         class: Py(                                                                             0x0000555556b00f80,                                                                         ),                                                                         serializer: Fields(                                                                             GeneralFieldsSerializer {                                                                                 fields: {                                                                                     "coords": SerField {                                                                                         key_py: Py(                                                                                             0x00007ffffcb0d8f0,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             Recursive(                                                                                                 DefinitionRefSerializer {                                                                                                     definition: "kittycad.models.system.System:93825014588992",                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "units": SerField {                                                                                         key_py: Py(                                                                                             0x00007fffff2402b0,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             Recursive(                                                                                                 DefinitionRefSerializer {                                                                                                     definition: "kittycad.models.unit_length.UnitLength:93825014613552",                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "type": SerField {                                                                                         key_py: Py(                                                                                             0x00007fffff8ebef0,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             WithDefault(                                                                                                 WithDefaultSerializer {                                                                                                     default: Default(                                                                                                         Py(                                                                                                             0x00007fffff93a970,                                                                                                         ),                                                                                                     ),                                                                                                     serializer: Literal(                                                                                                         LiteralSerializer {                                                                                                             expected_int: {},                                                                                                             expected_str: {                                                                                                                 "obj",                                                                                                             },                                                                                                             expected_py: None,                                                                                                             name: "literal['obj']",                                                                                                         },                                                                                                     ),                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                 },                                                                                 computed_fields: Some(                                                                                     ComputedFields(                                                                                         [],                                                                                     ),                                                                                 ),                                                                                 mode: SimpleDict,                                                                                 extra_serializer: None,                                                                                 filter: SchemaFilter {                                                                                     include: None,                                                                                     exclude: None,                                                                                 },                                                                                 required_fields: 3,                                                                             },                                                                         ),                                                                         has_extra: false,                                                                         root_model: false,                                                                         name: "obj",                                                                     },                                                                 ),                                                                 Model(                                                                     ModelSerializer {                                                                         class: Py(                                                                             0x0000555556b073d0,                                                                         ),                                                                         serializer: Fields(                                                                             GeneralFieldsSerializer {                                                                                 fields: {                                                                                     "type": SerField {                                                                                         key_py: Py(                                                                                             0x00007fffff8ebef0,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             WithDefault(                                                                                                 WithDefaultSerializer {                                                                                                     default: Default(                                                                                                         Py(                                                                                                             0x00007fffe137bab0,                                                                                                         ),                                                                                                     ),                                                                                                     serializer: Literal(                                                                                                         LiteralSerializer {                                                                                                             expected_int: {},                                                                                                             expected_str: {                                                                                                                 "ply",                                                                                                             },                                                                                                             expected_py: None,                                                                                                             name: "literal['ply']",                                                                                                         },                                                                                                     ),                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "units": SerField {                                                                                         key_py: Py(                                                                                             0x00007fffff2402b0,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             Recursive(                                                                                                 DefinitionRefSerializer {                                                                                                     definition: "kittycad.models.unit_length.UnitLength:93825014613552",                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "coords": SerField {                                                                                         key_py: Py(                                                                                             0x00007ffffcb0d8f0,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             Recursive(                                                                                                 DefinitionRefSerializer {                                                                                                     definition: "kittycad.models.system.System:93825014588992",                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "storage": SerField {                                                                                         key_py: Py(                                                                                             0x00007ffffd064cb0,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             JsonOrPython(                                                                                                 JsonOrPythonSerializer {                                                                                                     json: Str(                                                                                                         StrSerializer,                                                                                                     ),                                                                                                     python: Any(                                                                                                         AnySerializer,                                                                                                     ),                                                                                                     name: "json-or-python[json=str, python=any]",                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "selection": SerField {                                                                                         key_py: Py(                                                                                             0x00007fffe1c7b670,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             Recursive(                                                                                                 DefinitionRefSerializer {                                                                                                     definition: "pydantic.root_model.RootModel:93825014829600[Annotated[Union[kittycad.models.selection.default_scene, kittycad.models.selection.scene_by_index, kittycad.models.selection.scene_by_name, kittycad.models.selection.mesh_by_index, kittycad.models.selection.mesh_by_name], FieldInfo(annotation=NoneType, required=True, discriminator='type')]:140736970863040]",                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                 },                                                                                 computed_fields: Some(                                                                                     ComputedFields(                                                                                         [],                                                                                     ),                                                                                 ),                                                                                 mode: SimpleDict,                                                                                 extra_serializer: None,                                                                                 filter: SchemaFilter {                                                                                     include: None,                                                                                     exclude: None,                                                                                 },                                                                                 required_fields: 5,                                                                             },                                                                         ),                                                                         has_extra: false,                                                                         root_model: false,                                                                         name: "ply",                                                                     },                                                                 ),                                                                 Model(                                                                     ModelSerializer {                                                                         class: Py(                                                                             0x0000555556b10a70,                                                                         ),                                                                         serializer: Fields(                                                                             GeneralFieldsSerializer {                                                                                 fields: {                                                                                     "coords": SerField {                                                                                         key_py: Py(                                                                                             0x00007ffffcb0d8f0,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             Recursive(                                                                                                 DefinitionRefSerializer {                                                                                                     definition: "kittycad.models.system.System:93825014588992",                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "type": SerField {                                                                                         key_py: Py(                                                                                             0x00007fffff8ebef0,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             WithDefault(                                                                                                 WithDefaultSerializer {                                                                                                     default: Default(                                                                                                         Py(                                                                                                             0x00007fffff929d30,                                                                                                         ),                                                                                                     ),                                                                                                     serializer: Literal(                                                                                                         LiteralSerializer {                                                                                                             expected_int: {},                                                                                                             expected_str: {                                                                                                                 "step",                                                                                                             },                                                                                                             expected_py: None,                                                                                                             name: "literal['step']",                                                                                                         },                                                                                                     ),                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                 },                                                                                 computed_fields: Some(                                                                                     ComputedFields(                                                                                         [],                                                                                     ),                                                                                 ),                                                                                 mode: SimpleDict,                                                                                 extra_serializer: None,                                                                                 filter: SchemaFilter {                                                                                     include: None,                                                                                     exclude: None,                                                                                 },                                                                                 required_fields: 2,                                                                             },                                                                         ),                                                                         has_extra: false,                                                                         root_model: false,                                                                         name: "step",                                                                     },                                                                 ),                                                                 Model(                                                                     ModelSerializer {                                                                         class: Py(                                                                             0x0000555556b23e50,                                                                         ),                                                                         serializer: Fields(                                                                             GeneralFieldsSerializer {                                                                                 fields: {                                                                                     "coords": SerField {                                                                                         key_py: Py(                                                                                             0x00007ffffcb0d8f0,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             Recursive(                                                                                                 DefinitionRefSerializer {                                                                                                     definition: "kittycad.models.system.System:93825014588992",                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "type": SerField {                                                                                         key_py: Py(                                                                                             0x00007fffff8ebef0,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             WithDefault(                                                                                                 WithDefaultSerializer {                                                                                                     default: Default(                                                                                                         Py(                                                                                                             0x00007fffe137bb30,                                                                                                         ),                                                                                                     ),                                                                                                     serializer: Literal(                                                                                                         LiteralSerializer {                                                                                                             expected_int: {},                                                                                                             expected_str: {                                                                                                                 "stl",                                                                                                             },                                                                                                             expected_py: None,                                                                                                             name: "literal['stl']",                                                                                                         },                                                                                                     ),                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "units": SerField {                                                                                         key_py: Py(                                                                                             0x00007fffff2402b0,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             Recursive(                                                                                                 DefinitionRefSerializer {                                                                                                     definition: "kittycad.models.unit_length.UnitLength:93825014613552",                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "selection": SerField {                                                                                         key_py: Py(                                                                                             0x00007fffe1c7b670,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             Recursive(                                                                                                 DefinitionRefSerializer {                                                                                                     definition: "pydantic.root_model.RootModel:93825014829600[Annotated[Union[kittycad.models.selection.default_scene, kittycad.models.selection.scene_by_index, kittycad.models.selection.scene_by_name, kittycad.models.selection.mesh_by_index, kittycad.models.selection.mesh_by_name], FieldInfo(annotation=NoneType, required=True, discriminator='type')]:140736970863040]",                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "storage": SerField {                                                                                         key_py: Py(                                                                                             0x00007ffffd064cb0,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             JsonOrPython(                                                                                                 JsonOrPythonSerializer {                                                                                                     json: Str(                                                                                                         StrSerializer,                                                                                                     ),                                                                                                     python: Any(                                                                                                         AnySerializer,                                                                                                     ),                                                                                                     name: "json-or-python[json=str, python=any]",                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                 },                                                                                 computed_fields: Some(                                                                                     ComputedFields(                                                                                         [],                                                                                     ),                                                                                 ),                                                                                 mode: SimpleDict,                                                                                 extra_serializer: None,                                                                                 filter: SchemaFilter {                                                                                     include: None,                                                                                     exclude: None,                                                                                 },                                                                                 required_fields: 5,                                                                             },                                                                         ),                                                                         has_extra: false,                                                                         root_model: false,                                                                         name: "stl",                                                                     },                                                                 ),                                                             ],                                                             name: "Union[fbx, gltf, obj, ply, step, stl]",                                                         },                                                     ),                                                     has_extra: false,                                                     root_model: true,                                                     name: "RootModel[Annotated[Union[kittycad.models.output_format.fbx, kittycad.models.output_format.gltf, kittycad.models.output_format.obj, kittycad.models.output_format.ply, kittycad.models.output_format.step, kittycad.models.output_format.stl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]",                                                 },                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "outputs": SerField {                         key_py: Py(                             0x00007fffe35f2670,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007ffffff85420,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Dict(                                                 DictSerializer {                                                     key_serializer: Str(                                                         StrSerializer,                                                     ),                                                     value_serializer: Bytes(                                                         BytesSerializer,                                                     ),                                                     filter: SchemaFilter {                                                         include: None,                                                         exclude: None,                                                     },                                                     name: "dict[str, bytes]",                                                 },                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "updated_at": SerField {                         key_py: Py(                             0x00007fffe137c6b0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Datetime(                                 DatetimeSerializer,                             ),                         ),                         required: true,                     },                 },                 computed_fields: Some(                     ComputedFields(                         [],                     ),                 ),                 mode: SimpleDict,                 extra_serializer: None,                 filter: SchemaFilter {                     include: None,                     exclude: None,                 },                 required_fields: 14,             },         ),         has_extra: false,         root_model: false,         name: "file_conversion",     }, ), definitions=[JsonOrPython(JsonOrPythonSerializer { json: Str(StrSerializer), python: Any(AnySerializer), name: "json-or-python[json=str, python=any]" }), Model(ModelSerializer { class: Py(0x555556aed8f0), serializer: Fields(GeneralFieldsSerializer { fields: {"type": SerField { key_py: Py(0x7fffff8ebef0), alias: None, alias_py: None, serializer: Some(WithDefault(WithDefaultSerializer { default: Default(Py(0x7fffe1f77ab0)), serializer: Literal(LiteralSerializer { expected_int: {}, expected_str: {"scene_by_name"}, expected_py: None, name: "literal['scene_by_name']" }) })), required: true }, "name": SerField { key_py: Py(0x7fffff9521b0), alias: None, alias_py: None, serializer: Some(Str(StrSerializer)), required: true }}, computed_fields: Some(ComputedFields([])), mode: SimpleDict, extra_serializer: None, filter: SchemaFilter { include: None, exclude: None }, required_fields: 2 }), has_extra: false, root_model: false, name: "scene_by_name" }), JsonOrPython(JsonOrPythonSerializer { json: Str(StrSerializer), python: Any(AnySerializer), name: "json-or-python[json=str, python=any]" }), Model(ModelSerializer { class: Py(0x555556aa6640), serializer: Fields(GeneralFieldsSerializer { fields: {"up": SerField { key_py: Py(0x7ffffdc55170), alias: None, alias_py: None, serializer: Some(Recursive(DefinitionRefSerializer { definition: "kittycad.models.axis_direction_pair.AxisDirectionPair:93825014569648" })), required: true }, "forward": SerField { key_py: Py(0x7ffffddd9770), alias: None, alias_py: None, serializer: Some(Recursive(DefinitionRefSerializer { definition: "kittycad.models.axis_direction_pair.AxisDirectionPair:93825014569648" })), required: true }}, computed_fields: Some(ComputedFields([])), mode: SimpleDict, extra_serializer: None, filter: SchemaFilter { include: None, exclude: None }, required_fields: 2 }), has_extra: false, root_model: false, name: "System" }), Model(ModelSerializer { class: Py(0x555556af0ba0), serializer: Fields(GeneralFieldsSerializer { fields: {"name": SerField { key_py: Py(0x7fffff9521b0), alias: None, alias_py: None, serializer: Some(Str(StrSerializer)), required: true }, "type": SerField { key_py: Py(0x7fffff8ebef0), alias: None, alias_py: None, serializer: Some(WithDefault(WithDefaultSerializer { default: Default(Py(0x7fffe1390870)), serializer: Literal(LiteralSerializer { expected_int: {}, expected_str: {"mesh_by_name"}, expected_py: None, name: "literal['mesh_by_name']" }) })), required: true }}, computed_fields: Some(ComputedFields([])), mode: SimpleDict, extra_serializer: None, filter: SchemaFilter { include: None, exclude: None }, required_fields: 2 }), has_extra: false, root_model: false, name: "mesh_by_name" }), Model(ModelSerializer { class: Py(0x555556af2d80), serializer: Union(UnionSerializer { choices: [Recursive(DefinitionRefSerializer { definition: "kittycad.models.selection.default_scene:93825014224528" }), Recursive(DefinitionRefSerializer { definition: "kittycad.models.selection.scene_by_index:93825014871232" }), Recursive(DefinitionRefSerializer { definition: "kittycad.models.selection.scene_by_name:93825014880496" }), Recursive(DefinitionRefSerializer { definition: "kittycad.models.selection.mesh_by_index:93825014886016" }), Recursive(DefinitionRefSerializer { definition: "kittycad.models.selection.mesh_by_name:93825014893472" })], name: "Union[definition-ref, definition-ref, definition-ref, definition-ref, definition-ref]" }), has_extra: false, root_model: true, name: "RootModel[Annotated[Union[kittycad.models.selection.default_scene, kittycad.models.selection.scene_by_index, kittycad.models.selection.scene_by_name, kittycad.models.selection.mesh_by_index, kittycad.models.selection.mesh_by_name], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]" }), Model(ModelSerializer { class: Py(0x555556aa1ab0), serializer: Fields(GeneralFieldsSerializer { fields: {"direction": SerField { key_py: Py(0x7fffff77c7f0), alias: None, alias_py: None, serializer: Some(Recursive(DefinitionRefSerializer { definition: "kittycad.models.direction.Direction:93825014568112" })), required: true }, "axis": SerField { key_py: Py(0x7ffffcb74b30), alias: None, alias_py: None, serializer: Some(Recursive(DefinitionRefSerializer { definition: "kittycad.models.axis.Axis:93825014567168" })), required: true }}, computed_fields: Some(ComputedFields([])), mode: SimpleDict, extra_serializer: None, filter: SchemaFilter { include: None, exclude: None }, required_fields: 2 }), has_extra: false, root_model: false, name: "AxisDirectionPair" }), Model(ModelSerializer { class: Py(0x555556a4d690), serializer: Fields(GeneralFieldsSerializer { fields: {"type": SerField { key_py: Py(0x7fffff8ebef0), alias: None, alias_py: None, serializer: Some(WithDefault(WithDefaultSerializer { default: Default(Py(0x7fffe1285fb0)), serializer: Literal(LiteralSerializer { expected_int: {}, expected_str: {"default_scene"}, expected_py: None, name: "literal['default_scene']" }) })), required: true }}, computed_fields: Some(ComputedFields([])), mode: SimpleDict, extra_serializer: None, filter: SchemaFilter { include: None, exclude: None }, required_fields: 1 }), has_extra: false, root_model: false, name: "default_scene" }), JsonOrPython(JsonOrPythonSerializer { json: Str(StrSerializer), python: Any(AnySerializer), name: "json-or-python[json=str, python=any]" }), Model(ModelSerializer { class: Py(0x555556aeee80), serializer: Fields(GeneralFieldsSerializer { fields: {"index": SerField { key_py: Py(0x7fffff920af0), alias: None, alias_py: None, serializer: Some(Int(IntSerializer)), required: true }, "type": SerField { key_py: Py(0x7fffff8ebef0), alias: None, alias_py: None, serializer: Some(WithDefault(WithDefaultSerializer { default: Default(Py(0x7fffe13987f0)), serializer: Literal(LiteralSerializer { expected_int: {}, expected_str: {"mesh_by_index"}, expected_py: None, name: "literal['mesh_by_index']" }) })), required: true }}, computed_fields: Some(ComputedFields([])), mode: SimpleDict, extra_serializer: None, filter: SchemaFilter { include: None, exclude: None }, required_fields: 2 }), has_extra: false, root_model: false, name: "mesh_by_index" }), Model(ModelSerializer { class: Py(0x555556aeb4c0), serializer: Fields(GeneralFieldsSerializer { fields: {"index": SerField { key_py: Py(0x7fffff920af0), alias: None, alias_py: None, serializer: Some(Int(IntSerializer)), required: true }, "type": SerField { key_py: Py(0x7fffff8ebef0), alias: None, alias_py: None, serializer: Some(WithDefault(WithDefaultSerializer { default: Default(Py(0x7fffe1285ef0)), serializer: Literal(LiteralSerializer { expected_int: {}, expected_str: {"scene_by_index"}, expected_py: None, name: "literal['scene_by_index']" }) })), required: true }}, computed_fields: Some(ComputedFields([])), mode: SimpleDict, extra_serializer: None, filter: SchemaFilter { include: None, exclude: None }, required_fields: 2 }), has_extra: false, root_model: false, name: "scene_by_index" })])[source]
__pydantic_validator__: ClassVar[SchemaValidator] = SchemaValidator(title="file_conversion", validator=Model(     ModelValidator {         revalidate: Never,         validator: ModelFields(             ModelFieldsValidator {                 fields: [                     Field {                         name: "completed_at",                         lookup_key: Simple {                             key: "completed_at",                             py_key: Py(                                 0x00007fffe1c78a70,                             ),                             path: LookupPath(                                 [                                     S(                                         "completed_at",                                         Py(                                             0x00007fffe1c78a70,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe1c78a70,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007ffffff85420,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Datetime(                                             DateTimeValidator {                                                 strict: false,                                                 constraints: None,                                                 microseconds_precision: Truncate,                                             },                                         ),                                         name: "nullable[datetime]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[datetime]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "created_at",                         lookup_key: Simple {                             key: "created_at",                             py_key: Py(                                 0x00007fffe12ecdf0,                             ),                             path: LookupPath(                                 [                                     S(                                         "created_at",                                         Py(                                             0x00007fffe12ecdf0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe12ecdf0,                         ),                         validator: Datetime(                             DateTimeValidator {                                 strict: false,                                 constraints: None,                                 microseconds_precision: Truncate,                             },                         ),                         frozen: false,                     },                     Field {                         name: "error",                         lookup_key: Simple {                             key: "error",                             py_key: Py(                                 0x00007fffff904b70,                             ),                             path: LookupPath(                                 [                                     S(                                         "error",                                         Py(                                             0x00007fffff904b70,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffff904b70,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007ffffff85420,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Str(                                             StrValidator {                                                 strict: false,                                                 coerce_numbers_to_str: false,                                             },                                         ),                                         name: "nullable[str]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[str]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "id",                         lookup_key: Simple {                             key: "id",                             py_key: Py(                                 0x00007fffff8eb3b0,                             ),                             path: LookupPath(                                 [                                     S(                                         "id",                                         Py(                                             0x00007fffff8eb3b0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffff8eb3b0,                         ),                         validator: FunctionAfter(                             FunctionAfterValidator {                                 validator: Str(                                     StrValidator {                                         strict: false,                                         coerce_numbers_to_str: false,                                     },                                 ),                                 func: Py(                                     0x0000555556a23980,                                 ),                                 config: Py(                                     0x00007fffe1344540,                                 ),                                 name: "function-after[Uuid(), str]",                                 field_name: None,                                 info_arg: false,                             },                         ),                         frozen: false,                     },                     Field {                         name: "output_format",                         lookup_key: Simple {                             key: "output_format",                             py_key: Py(                                 0x00007fffe1c7b830,                             ),                             path: LookupPath(                                 [                                     S(                                         "output_format",                                         Py(                                             0x00007fffe1c7b830,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe1c7b830,                         ),                         validator: LaxOrStrict(                             LaxOrStrictValidator {                                 strict: false,                                 lax_validator: Chain(                                     ChainValidator {                                         steps: [                                             Str(                                                 StrValidator {                                                     strict: false,                                                     coerce_numbers_to_str: false,                                                 },                                             ),                                             FunctionPlain(                                                 FunctionPlainValidator {                                                     func: Py(                                                         0x00007fffe143e1f0,                                                     ),                                                     config: Py(                                                         0x00007fffe1344540,                                                     ),                                                     name: "function-plain[to_enum()]",                                                     field_name: None,                                                     info_arg: false,                                                 },                                             ),                                         ],                                         name: "chain[str,function-plain[to_enum()]]",                                     },                                 ),                                 strict_validator: JsonOrPython(                                     JsonOrPython {                                         json: FunctionAfter(                                             FunctionAfterValidator {                                                 validator: Str(                                                     StrValidator {                                                         strict: false,                                                         coerce_numbers_to_str: false,                                                     },                                                 ),                                                 func: Py(                                                     0x00007fffe143e1f0,                                                 ),                                                 config: Py(                                                     0x00007fffe1344540,                                                 ),                                                 name: "function-after[to_enum(), str]",                                                 field_name: None,                                                 info_arg: false,                                             },                                         ),                                         python: IsInstance(                                             IsInstanceValidator {                                                 class: Py(                                                     0x0000555556aa0910,                                                 ),                                                 class_repr: "FileExportFormat",                                                 name: "is-instance[FileExportFormat]",                                             },                                         ),                                         name: "json-or-python[json=function-after[to_enum(), str],python=is-instance[FileExportFormat]]",                                     },                                 ),                                 name: "lax-or-strict[lax=chain[str,function-plain[to_enum()]],strict=json-or-python[json=function-after[to_enum(), str],python=is-instance[FileExportFormat]]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "output_format_options",                         lookup_key: Simple {                             key: "output_format_options",                             py_key: Py(                                 0x00007fffe14edbc0,                             ),                             path: LookupPath(                                 [                                     S(                                         "output_format_options",                                         Py(                                             0x00007fffe14edbc0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe14edbc0,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007ffffff85420,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Model(                                             ModelValidator {                                                 revalidate: Never,                                                 validator: Union(                                                     UnionValidator {                                                         mode: Smart,                                                         choices: [                                                             (                                                                 Model(                                                                     ModelValidator {                                                                         revalidate: Never,                                                                         validator: ModelFields(                                                                             ModelFieldsValidator {                                                                                 fields: [                                                                                     Field {                                                                                         name: "storage",                                                                                         lookup_key: Simple {                                                                                             key: "storage",                                                                                             py_key: Py(                                                                                                 0x00007ffffd064cb0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "storage",                                                                                                         Py(                                                                                                             0x00007ffffd064cb0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007ffffd064cb0,                                                                                         ),                                                                                         validator: LaxOrStrict(                                                                                             LaxOrStrictValidator {                                                                                                 strict: false,                                                                                                 lax_validator: Chain(                                                                                                     ChainValidator {                                                                                                         steps: [                                                                                                             Str(                                                                                                                 StrValidator {                                                                                                                     strict: false,                                                                                                                     coerce_numbers_to_str: false,                                                                                                                 },                                                                                                             ),                                                                                                             FunctionPlain(                                                                                                                 FunctionPlainValidator {                                                                                                                     func: Py(                                                                                                                         0x00007fffe13878b0,                                                                                                                     ),                                                                                                                     config: Py(                                                                                                                         0x00007fffe134ca00,                                                                                                                     ),                                                                                                                     name: "function-plain[to_enum()]",                                                                                                                     field_name: None,                                                                                                                     info_arg: false,                                                                                                                 },                                                                                                             ),                                                                                                         ],                                                                                                         name: "chain[str,function-plain[to_enum()]]",                                                                                                     },                                                                                                 ),                                                                                                 strict_validator: JsonOrPython(                                                                                                     JsonOrPython {                                                                                                         json: FunctionAfter(                                                                                                             FunctionAfterValidator {                                                                                                                 validator: Str(                                                                                                                     StrValidator {                                                                                                                         strict: false,                                                                                                                         coerce_numbers_to_str: false,                                                                                                                     },                                                                                                                 ),                                                                                                                 func: Py(                                                                                                                     0x00007fffe13878b0,                                                                                                                 ),                                                                                                                 config: Py(                                                                                                                     0x00007fffe134ca00,                                                                                                                 ),                                                                                                                 name: "function-after[to_enum(), str]",                                                                                                                 field_name: None,                                                                                                                 info_arg: false,                                                                                                             },                                                                                                         ),                                                                                                         python: IsInstance(                                                                                                             IsInstanceValidator {                                                                                                                 class: Py(                                                                                                                     0x0000555556ae7490,                                                                                                                 ),                                                                                                                 class_repr: "FbxStorage",                                                                                                                 name: "is-instance[FbxStorage]",                                                                                                             },                                                                                                         ),                                                                                                         name: "json-or-python[json=function-after[to_enum(), str],python=is-instance[FbxStorage]]",                                                                                                     },                                                                                                 ),                                                                                                 name: "lax-or-strict[lax=chain[str,function-plain[to_enum()]],strict=json-or-python[json=function-after[to_enum(), str],python=is-instance[FbxStorage]]]",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "type",                                                                                         lookup_key: Simple {                                                                                             key: "type",                                                                                             py_key: Py(                                                                                                 0x00007fffff8ebef0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "type",                                                                                                         Py(                                                                                                             0x00007fffff8ebef0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fffff8ebef0,                                                                                         ),                                                                                         validator: WithDefault(                                                                                             WithDefaultValidator {                                                                                                 default: Default(                                                                                                     Py(                                                                                                         0x00007fffe14d8f70,                                                                                                     ),                                                                                                 ),                                                                                                 on_error: Raise,                                                                                                 validator: Literal(                                                                                                     LiteralValidator {                                                                                                         lookup: LiteralLookup {                                                                                                             expected_bool: None,                                                                                                             expected_int: None,                                                                                                             expected_str: Some(                                                                                                                 {                                                                                                                     "fbx": 0,                                                                                                                 },                                                                                                             ),                                                                                                             expected_py: None,                                                                                                             values: [                                                                                                                 Py(                                                                                                                     0x00007fffe14d8f70,                                                                                                                 ),                                                                                                             ],                                                                                                         },                                                                                                         expected_repr: "'fbx'",                                                                                                         name: "literal['fbx']",                                                                                                     },                                                                                                 ),                                                                                                 validate_default: false,                                                                                                 copy_default: false,                                                                                                 name: "default[literal['fbx']]",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                 ],                                                                                 model_name: "fbx",                                                                                 extra_behavior: Ignore,                                                                                 extras_validator: None,                                                                                 strict: false,                                                                                 from_attributes: false,                                                                                 loc_by_alias: true,                                                                             },                                                                         ),                                                                         class: Py(                                                                             0x0000555556a22c90,                                                                         ),                                                                         post_init: None,                                                                         frozen: false,                                                                         custom_init: false,                                                                         root_model: false,                                                                         name: "fbx",                                                                     },                                                                 ),                                                                 None,                                                             ),                                                             (                                                                 Model(                                                                     ModelValidator {                                                                         revalidate: Never,                                                                         validator: ModelFields(                                                                             ModelFieldsValidator {                                                                                 fields: [                                                                                     Field {                                                                                         name: "presentation",                                                                                         lookup_key: Simple {                                                                                             key: "presentation",                                                                                             py_key: Py(                                                                                                 0x00007fffe14c1eb0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "presentation",                                                                                                         Py(                                                                                                             0x00007fffe14c1eb0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fffe14c1eb0,                                                                                         ),                                                                                         validator: LaxOrStrict(                                                                                             LaxOrStrictValidator {                                                                                                 strict: false,                                                                                                 lax_validator: Chain(                                                                                                     ChainValidator {                                                                                                         steps: [                                                                                                             Str(                                                                                                                 StrValidator {                                                                                                                     strict: false,                                                                                                                     coerce_numbers_to_str: false,                                                                                                                 },                                                                                                             ),                                                                                                             FunctionPlain(                                                                                                                 FunctionPlainValidator {                                                                                                                     func: Py(                                                                                                                         0x00007fffe139ea60,                                                                                                                     ),                                                                                                                     config: Py(                                                                                                                         0x00007fffe13feec0,                                                                                                                     ),                                                                                                                     name: "function-plain[to_enum()]",                                                                                                                     field_name: None,                                                                                                                     info_arg: false,                                                                                                                 },                                                                                                             ),                                                                                                         ],                                                                                                         name: "chain[str,function-plain[to_enum()]]",                                                                                                     },                                                                                                 ),                                                                                                 strict_validator: JsonOrPython(                                                                                                     JsonOrPython {                                                                                                         json: FunctionAfter(                                                                                                             FunctionAfterValidator {                                                                                                                 validator: Str(                                                                                                                     StrValidator {                                                                                                                         strict: false,                                                                                                                         coerce_numbers_to_str: false,                                                                                                                     },                                                                                                                 ),                                                                                                                 func: Py(                                                                                                                     0x00007fffe139ea60,                                                                                                                 ),                                                                                                                 config: Py(                                                                                                                     0x00007fffe13feec0,                                                                                                                 ),                                                                                                                 name: "function-after[to_enum(), str]",                                                                                                                 field_name: None,                                                                                                                 info_arg: false,                                                                                                             },                                                                                                         ),                                                                                                         python: IsInstance(                                                                                                             IsInstanceValidator {                                                                                                                 class: Py(                                                                                                                     0x0000555556ae7840,                                                                                                                 ),                                                                                                                 class_repr: "GltfPresentation",                                                                                                                 name: "is-instance[GltfPresentation]",                                                                                                             },                                                                                                         ),                                                                                                         name: "json-or-python[json=function-after[to_enum(), str],python=is-instance[GltfPresentation]]",                                                                                                     },                                                                                                 ),                                                                                                 name: "lax-or-strict[lax=chain[str,function-plain[to_enum()]],strict=json-or-python[json=function-after[to_enum(), str],python=is-instance[GltfPresentation]]]",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "storage",                                                                                         lookup_key: Simple {                                                                                             key: "storage",                                                                                             py_key: Py(                                                                                                 0x00007ffffd064cb0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "storage",                                                                                                         Py(                                                                                                             0x00007ffffd064cb0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007ffffd064cb0,                                                                                         ),                                                                                         validator: LaxOrStrict(                                                                                             LaxOrStrictValidator {                                                                                                 strict: false,                                                                                                 lax_validator: Chain(                                                                                                     ChainValidator {                                                                                                         steps: [                                                                                                             Str(                                                                                                                 StrValidator {                                                                                                                     strict: false,                                                                                                                     coerce_numbers_to_str: false,                                                                                                                 },                                                                                                             ),                                                                                                             FunctionPlain(                                                                                                                 FunctionPlainValidator {                                                                                                                     func: Py(                                                                                                                         0x00007fffe139e550,                                                                                                                     ),                                                                                                                     config: Py(                                                                                                                         0x00007fffe13feec0,                                                                                                                     ),                                                                                                                     name: "function-plain[to_enum()]",                                                                                                                     field_name: None,                                                                                                                     info_arg: false,                                                                                                                 },                                                                                                             ),                                                                                                         ],                                                                                                         name: "chain[str,function-plain[to_enum()]]",                                                                                                     },                                                                                                 ),                                                                                                 strict_validator: JsonOrPython(                                                                                                     JsonOrPython {                                                                                                         json: FunctionAfter(                                                                                                             FunctionAfterValidator {                                                                                                                 validator: Str(                                                                                                                     StrValidator {                                                                                                                         strict: false,                                                                                                                         coerce_numbers_to_str: false,                                                                                                                     },                                                                                                                 ),                                                                                                                 func: Py(                                                                                                                     0x00007fffe139e550,                                                                                                                 ),                                                                                                                 config: Py(                                                                                                                     0x00007fffe13feec0,                                                                                                                 ),                                                                                                                 name: "function-after[to_enum(), str]",                                                                                                                 field_name: None,                                                                                                                 info_arg: false,                                                                                                             },                                                                                                         ),                                                                                                         python: IsInstance(                                                                                                             IsInstanceValidator {                                                                                                                 class: Py(                                                                                                                     0x0000555556ae7bf0,                                                                                                                 ),                                                                                                                 class_repr: "GltfStorage",                                                                                                                 name: "is-instance[GltfStorage]",                                                                                                             },                                                                                                         ),                                                                                                         name: "json-or-python[json=function-after[to_enum(), str],python=is-instance[GltfStorage]]",                                                                                                     },                                                                                                 ),                                                                                                 name: "lax-or-strict[lax=chain[str,function-plain[to_enum()]],strict=json-or-python[json=function-after[to_enum(), str],python=is-instance[GltfStorage]]]",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "type",                                                                                         lookup_key: Simple {                                                                                             key: "type",                                                                                             py_key: Py(                                                                                                 0x00007fffff8ebef0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "type",                                                                                                         Py(                                                                                                             0x00007fffff8ebef0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fffff8ebef0,                                                                                         ),                                                                                         validator: WithDefault(                                                                                             WithDefaultValidator {                                                                                                 default: Default(                                                                                                     Py(                                                                                                         0x00007fffe137ba30,                                                                                                     ),                                                                                                 ),                                                                                                 on_error: Raise,                                                                                                 validator: Literal(                                                                                                     LiteralValidator {                                                                                                         lookup: LiteralLookup {                                                                                                             expected_bool: None,                                                                                                             expected_int: None,                                                                                                             expected_str: Some(                                                                                                                 {                                                                                                                     "gltf": 0,                                                                                                                 },                                                                                                             ),                                                                                                             expected_py: None,                                                                                                             values: [                                                                                                                 Py(                                                                                                                     0x00007fffe137ba30,                                                                                                                 ),                                                                                                             ],                                                                                                         },                                                                                                         expected_repr: "'gltf'",                                                                                                         name: "literal['gltf']",                                                                                                     },                                                                                                 ),                                                                                                 validate_default: false,                                                                                                 copy_default: false,                                                                                                 name: "default[literal['gltf']]",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                 ],                                                                                 model_name: "gltf",                                                                                 extra_behavior: Ignore,                                                                                 extras_validator: None,                                                                                 strict: false,                                                                                 from_attributes: false,                                                                                 loc_by_alias: true,                                                                             },                                                                         ),                                                                         class: Py(                                                                             0x0000555556afdca0,                                                                         ),                                                                         post_init: None,                                                                         frozen: false,                                                                         custom_init: false,                                                                         root_model: false,                                                                         name: "gltf",                                                                     },                                                                 ),                                                                 None,                                                             ),                                                             (                                                                 Model(                                                                     ModelValidator {                                                                         revalidate: Never,                                                                         validator: ModelFields(                                                                             ModelFieldsValidator {                                                                                 fields: [                                                                                     Field {                                                                                         name: "coords",                                                                                         lookup_key: Simple {                                                                                             key: "coords",                                                                                             py_key: Py(                                                                                                 0x00007ffffcb0d8f0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "coords",                                                                                                         Py(                                                                                                             0x00007ffffcb0d8f0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007ffffcb0d8f0,                                                                                         ),                                                                                         validator: DefinitionRef(                                                                                             DefinitionRefValidator {                                                                                                 definition: "kittycad.models.system.System:93825014588992",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "type",                                                                                         lookup_key: Simple {                                                                                             key: "type",                                                                                             py_key: Py(                                                                                                 0x00007fffff8ebef0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "type",                                                                                                         Py(                                                                                                             0x00007fffff8ebef0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fffff8ebef0,                                                                                         ),                                                                                         validator: WithDefault(                                                                                             WithDefaultValidator {                                                                                                 default: Default(                                                                                                     Py(                                                                                                         0x00007fffff93a970,                                                                                                     ),                                                                                                 ),                                                                                                 on_error: Raise,                                                                                                 validator: Literal(                                                                                                     LiteralValidator {                                                                                                         lookup: LiteralLookup {                                                                                                             expected_bool: None,                                                                                                             expected_int: None,                                                                                                             expected_str: Some(                                                                                                                 {                                                                                                                     "obj": 0,                                                                                                                 },                                                                                                             ),                                                                                                             expected_py: None,                                                                                                             values: [                                                                                                                 Py(                                                                                                                     0x00007fffff93a970,                                                                                                                 ),                                                                                                             ],                                                                                                         },                                                                                                         expected_repr: "'obj'",                                                                                                         name: "literal['obj']",                                                                                                     },                                                                                                 ),                                                                                                 validate_default: false,                                                                                                 copy_default: false,                                                                                                 name: "default[literal['obj']]",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "units",                                                                                         lookup_key: Simple {                                                                                             key: "units",                                                                                             py_key: Py(                                                                                                 0x00007fffff2402b0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "units",                                                                                                         Py(                                                                                                             0x00007fffff2402b0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fffff2402b0,                                                                                         ),                                                                                         validator: DefinitionRef(                                                                                             DefinitionRefValidator {                                                                                                 definition: "kittycad.models.unit_length.UnitLength:93825014613552",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                 ],                                                                                 model_name: "obj",                                                                                 extra_behavior: Ignore,                                                                                 extras_validator: None,                                                                                 strict: false,                                                                                 from_attributes: false,                                                                                 loc_by_alias: true,                                                                             },                                                                         ),                                                                         class: Py(                                                                             0x0000555556b00f80,                                                                         ),                                                                         post_init: None,                                                                         frozen: false,                                                                         custom_init: false,                                                                         root_model: false,                                                                         name: "obj",                                                                     },                                                                 ),                                                                 None,                                                             ),                                                             (                                                                 Model(                                                                     ModelValidator {                                                                         revalidate: Never,                                                                         validator: ModelFields(                                                                             ModelFieldsValidator {                                                                                 fields: [                                                                                     Field {                                                                                         name: "coords",                                                                                         lookup_key: Simple {                                                                                             key: "coords",                                                                                             py_key: Py(                                                                                                 0x00007ffffcb0d8f0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "coords",                                                                                                         Py(                                                                                                             0x00007ffffcb0d8f0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007ffffcb0d8f0,                                                                                         ),                                                                                         validator: DefinitionRef(                                                                                             DefinitionRefValidator {                                                                                                 definition: "kittycad.models.system.System:93825014588992",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "selection",                                                                                         lookup_key: Simple {                                                                                             key: "selection",                                                                                             py_key: Py(                                                                                                 0x00007fffe1c7b670,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "selection",                                                                                                         Py(                                                                                                             0x00007fffe1c7b670,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fffe1c7b670,                                                                                         ),                                                                                         validator: DefinitionRef(                                                                                             DefinitionRefValidator {                                                                                                 definition: "pydantic.root_model.RootModel:93825014829600[Annotated[Union[kittycad.models.selection.default_scene, kittycad.models.selection.scene_by_index, kittycad.models.selection.scene_by_name, kittycad.models.selection.mesh_by_index, kittycad.models.selection.mesh_by_name], FieldInfo(annotation=NoneType, required=True, discriminator='type')]:140736970863040]",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "storage",                                                                                         lookup_key: Simple {                                                                                             key: "storage",                                                                                             py_key: Py(                                                                                                 0x00007ffffd064cb0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "storage",                                                                                                         Py(                                                                                                             0x00007ffffd064cb0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007ffffd064cb0,                                                                                         ),                                                                                         validator: LaxOrStrict(                                                                                             LaxOrStrictValidator {                                                                                                 strict: false,                                                                                                 lax_validator: Chain(                                                                                                     ChainValidator {                                                                                                         steps: [                                                                                                             Str(                                                                                                                 StrValidator {                                                                                                                     strict: false,                                                                                                                     coerce_numbers_to_str: false,                                                                                                                 },                                                                                                             ),                                                                                                             FunctionPlain(                                                                                                                 FunctionPlainValidator {                                                                                                                     func: Py(                                                                                                                         0x00007fffe143e790,                                                                                                                     ),                                                                                                                     config: Py(                                                                                                                         0x00007fffe140bbc0,                                                                                                                     ),                                                                                                                     name: "function-plain[to_enum()]",                                                                                                                     field_name: None,                                                                                                                     info_arg: false,                                                                                                                 },                                                                                                             ),                                                                                                         ],                                                                                                         name: "chain[str,function-plain[to_enum()]]",                                                                                                     },                                                                                                 ),                                                                                                 strict_validator: JsonOrPython(                                                                                                     JsonOrPython {                                                                                                         json: FunctionAfter(                                                                                                             FunctionAfterValidator {                                                                                                                 validator: Str(                                                                                                                     StrValidator {                                                                                                                         strict: false,                                                                                                                         coerce_numbers_to_str: false,                                                                                                                     },                                                                                                                 ),                                                                                                                 func: Py(                                                                                                                     0x00007fffe143e790,                                                                                                                 ),                                                                                                                 config: Py(                                                                                                                     0x00007fffe140bbc0,                                                                                                                 ),                                                                                                                 name: "function-after[to_enum(), str]",                                                                                                                 field_name: None,                                                                                                                 info_arg: false,                                                                                                             },                                                                                                         ),                                                                                                         python: IsInstance(                                                                                                             IsInstanceValidator {                                                                                                                 class: Py(                                                                                                                     0x0000555556ae7fa0,                                                                                                                 ),                                                                                                                 class_repr: "PlyStorage",                                                                                                                 name: "is-instance[PlyStorage]",                                                                                                             },                                                                                                         ),                                                                                                         name: "json-or-python[json=function-after[to_enum(), str],python=is-instance[PlyStorage]]",                                                                                                     },                                                                                                 ),                                                                                                 name: "lax-or-strict[lax=chain[str,function-plain[to_enum()]],strict=json-or-python[json=function-after[to_enum(), str],python=is-instance[PlyStorage]]]",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "type",                                                                                         lookup_key: Simple {                                                                                             key: "type",                                                                                             py_key: Py(                                                                                                 0x00007fffff8ebef0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "type",                                                                                                         Py(                                                                                                             0x00007fffff8ebef0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fffff8ebef0,                                                                                         ),                                                                                         validator: WithDefault(                                                                                             WithDefaultValidator {                                                                                                 default: Default(                                                                                                     Py(                                                                                                         0x00007fffe137bab0,                                                                                                     ),                                                                                                 ),                                                                                                 on_error: Raise,                                                                                                 validator: Literal(                                                                                                     LiteralValidator {                                                                                                         lookup: LiteralLookup {                                                                                                             expected_bool: None,                                                                                                             expected_int: None,                                                                                                             expected_str: Some(                                                                                                                 {                                                                                                                     "ply": 0,                                                                                                                 },                                                                                                             ),                                                                                                             expected_py: None,                                                                                                             values: [                                                                                                                 Py(                                                                                                                     0x00007fffe137bab0,                                                                                                                 ),                                                                                                             ],                                                                                                         },                                                                                                         expected_repr: "'ply'",                                                                                                         name: "literal['ply']",                                                                                                     },                                                                                                 ),                                                                                                 validate_default: false,                                                                                                 copy_default: false,                                                                                                 name: "default[literal['ply']]",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "units",                                                                                         lookup_key: Simple {                                                                                             key: "units",                                                                                             py_key: Py(                                                                                                 0x00007fffff2402b0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "units",                                                                                                         Py(                                                                                                             0x00007fffff2402b0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fffff2402b0,                                                                                         ),                                                                                         validator: DefinitionRef(                                                                                             DefinitionRefValidator {                                                                                                 definition: "kittycad.models.unit_length.UnitLength:93825014613552",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                 ],                                                                                 model_name: "ply",                                                                                 extra_behavior: Ignore,                                                                                 extras_validator: None,                                                                                 strict: false,                                                                                 from_attributes: false,                                                                                 loc_by_alias: true,                                                                             },                                                                         ),                                                                         class: Py(                                                                             0x0000555556b073d0,                                                                         ),                                                                         post_init: None,                                                                         frozen: false,                                                                         custom_init: false,                                                                         root_model: false,                                                                         name: "ply",                                                                     },                                                                 ),                                                                 None,                                                             ),                                                             (                                                                 Model(                                                                     ModelValidator {                                                                         revalidate: Never,                                                                         validator: ModelFields(                                                                             ModelFieldsValidator {                                                                                 fields: [                                                                                     Field {                                                                                         name: "coords",                                                                                         lookup_key: Simple {                                                                                             key: "coords",                                                                                             py_key: Py(                                                                                                 0x00007ffffcb0d8f0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "coords",                                                                                                         Py(                                                                                                             0x00007ffffcb0d8f0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007ffffcb0d8f0,                                                                                         ),                                                                                         validator: DefinitionRef(                                                                                             DefinitionRefValidator {                                                                                                 definition: "kittycad.models.system.System:93825014588992",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "type",                                                                                         lookup_key: Simple {                                                                                             key: "type",                                                                                             py_key: Py(                                                                                                 0x00007fffff8ebef0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "type",                                                                                                         Py(                                                                                                             0x00007fffff8ebef0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fffff8ebef0,                                                                                         ),                                                                                         validator: WithDefault(                                                                                             WithDefaultValidator {                                                                                                 default: Default(                                                                                                     Py(                                                                                                         0x00007fffff929d30,                                                                                                     ),                                                                                                 ),                                                                                                 on_error: Raise,                                                                                                 validator: Literal(                                                                                                     LiteralValidator {                                                                                                         lookup: LiteralLookup {                                                                                                             expected_bool: None,                                                                                                             expected_int: None,                                                                                                             expected_str: Some(                                                                                                                 {                                                                                                                     "step": 0,                                                                                                                 },                                                                                                             ),                                                                                                             expected_py: None,                                                                                                             values: [                                                                                                                 Py(                                                                                                                     0x00007fffff929d30,                                                                                                                 ),                                                                                                             ],                                                                                                         },                                                                                                         expected_repr: "'step'",                                                                                                         name: "literal['step']",                                                                                                     },                                                                                                 ),                                                                                                 validate_default: false,                                                                                                 copy_default: false,                                                                                                 name: "default[literal['step']]",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                 ],                                                                                 model_name: "step",                                                                                 extra_behavior: Ignore,                                                                                 extras_validator: None,                                                                                 strict: false,                                                                                 from_attributes: false,                                                                                 loc_by_alias: true,                                                                             },                                                                         ),                                                                         class: Py(                                                                             0x0000555556b10a70,                                                                         ),                                                                         post_init: None,                                                                         frozen: false,                                                                         custom_init: false,                                                                         root_model: false,                                                                         name: "step",                                                                     },                                                                 ),                                                                 None,                                                             ),                                                             (                                                                 Model(                                                                     ModelValidator {                                                                         revalidate: Never,                                                                         validator: ModelFields(                                                                             ModelFieldsValidator {                                                                                 fields: [                                                                                     Field {                                                                                         name: "coords",                                                                                         lookup_key: Simple {                                                                                             key: "coords",                                                                                             py_key: Py(                                                                                                 0x00007ffffcb0d8f0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "coords",                                                                                                         Py(                                                                                                             0x00007ffffcb0d8f0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007ffffcb0d8f0,                                                                                         ),                                                                                         validator: DefinitionRef(                                                                                             DefinitionRefValidator {                                                                                                 definition: "kittycad.models.system.System:93825014588992",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "selection",                                                                                         lookup_key: Simple {                                                                                             key: "selection",                                                                                             py_key: Py(                                                                                                 0x00007fffe1c7b670,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "selection",                                                                                                         Py(                                                                                                             0x00007fffe1c7b670,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fffe1c7b670,                                                                                         ),                                                                                         validator: DefinitionRef(                                                                                             DefinitionRefValidator {                                                                                                 definition: "pydantic.root_model.RootModel:93825014829600[Annotated[Union[kittycad.models.selection.default_scene, kittycad.models.selection.scene_by_index, kittycad.models.selection.scene_by_name, kittycad.models.selection.mesh_by_index, kittycad.models.selection.mesh_by_name], FieldInfo(annotation=NoneType, required=True, discriminator='type')]:140736970863040]",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "storage",                                                                                         lookup_key: Simple {                                                                                             key: "storage",                                                                                             py_key: Py(                                                                                                 0x00007ffffd064cb0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "storage",                                                                                                         Py(                                                                                                             0x00007ffffd064cb0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007ffffd064cb0,                                                                                         ),                                                                                         validator: LaxOrStrict(                                                                                             LaxOrStrictValidator {                                                                                                 strict: false,                                                                                                 lax_validator: Chain(                                                                                                     ChainValidator {                                                                                                         steps: [                                                                                                             Str(                                                                                                                 StrValidator {                                                                                                                     strict: false,                                                                                                                     coerce_numbers_to_str: false,                                                                                                                 },                                                                                                             ),                                                                                                             FunctionPlain(                                                                                                                 FunctionPlainValidator {                                                                                                                     func: Py(                                                                                                                         0x00007fffe1459310,                                                                                                                     ),                                                                                                                     config: Py(                                                                                                                         0x00007fffe1412a40,                                                                                                                     ),                                                                                                                     name: "function-plain[to_enum()]",                                                                                                                     field_name: None,                                                                                                                     info_arg: false,                                                                                                                 },                                                                                                             ),                                                                                                         ],                                                                                                         name: "chain[str,function-plain[to_enum()]]",                                                                                                     },                                                                                                 ),                                                                                                 strict_validator: JsonOrPython(                                                                                                     JsonOrPython {                                                                                                         json: FunctionAfter(                                                                                                             FunctionAfterValidator {                                                                                                                 validator: Str(                                                                                                                     StrValidator {                                                                                                                         strict: false,                                                                                                                         coerce_numbers_to_str: false,                                                                                                                     },                                                                                                                 ),                                                                                                                 func: Py(                                                                                                                     0x00007fffe1459310,                                                                                                                 ),                                                                                                                 config: Py(                                                                                                                     0x00007fffe1412a40,                                                                                                                 ),                                                                                                                 name: "function-after[to_enum(), str]",                                                                                                                 field_name: None,                                                                                                                 info_arg: false,                                                                                                             },                                                                                                         ),                                                                                                         python: IsInstance(                                                                                                             IsInstanceValidator {                                                                                                                 class: Py(                                                                                                                     0x0000555556afc330,                                                                                                                 ),                                                                                                                 class_repr: "StlStorage",                                                                                                                 name: "is-instance[StlStorage]",                                                                                                             },                                                                                                         ),                                                                                                         name: "json-or-python[json=function-after[to_enum(), str],python=is-instance[StlStorage]]",                                                                                                     },                                                                                                 ),                                                                                                 name: "lax-or-strict[lax=chain[str,function-plain[to_enum()]],strict=json-or-python[json=function-after[to_enum(), str],python=is-instance[StlStorage]]]",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "type",                                                                                         lookup_key: Simple {                                                                                             key: "type",                                                                                             py_key: Py(                                                                                                 0x00007fffff8ebef0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "type",                                                                                                         Py(                                                                                                             0x00007fffff8ebef0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fffff8ebef0,                                                                                         ),                                                                                         validator: WithDefault(                                                                                             WithDefaultValidator {                                                                                                 default: Default(                                                                                                     Py(                                                                                                         0x00007fffe137bb30,                                                                                                     ),                                                                                                 ),                                                                                                 on_error: Raise,                                                                                                 validator: Literal(                                                                                                     LiteralValidator {                                                                                                         lookup: LiteralLookup {                                                                                                             expected_bool: None,                                                                                                             expected_int: None,                                                                                                             expected_str: Some(                                                                                                                 {                                                                                                                     "stl": 0,                                                                                                                 },                                                                                                             ),                                                                                                             expected_py: None,                                                                                                             values: [                                                                                                                 Py(                                                                                                                     0x00007fffe137bb30,                                                                                                                 ),                                                                                                             ],                                                                                                         },                                                                                                         expected_repr: "'stl'",                                                                                                         name: "literal['stl']",                                                                                                     },                                                                                                 ),                                                                                                 validate_default: false,                                                                                                 copy_default: false,                                                                                                 name: "default[literal['stl']]",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "units",                                                                                         lookup_key: Simple {                                                                                             key: "units",                                                                                             py_key: Py(                                                                                                 0x00007fffff2402b0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "units",                                                                                                         Py(                                                                                                             0x00007fffff2402b0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fffff2402b0,                                                                                         ),                                                                                         validator: DefinitionRef(                                                                                             DefinitionRefValidator {                                                                                                 definition: "kittycad.models.unit_length.UnitLength:93825014613552",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                 ],                                                                                 model_name: "stl",                                                                                 extra_behavior: Ignore,                                                                                 extras_validator: None,                                                                                 strict: false,                                                                                 from_attributes: false,                                                                                 loc_by_alias: true,                                                                             },                                                                         ),                                                                         class: Py(                                                                             0x0000555556b23e50,                                                                         ),                                                                         post_init: None,                                                                         frozen: false,                                                                         custom_init: false,                                                                         root_model: false,                                                                         name: "stl",                                                                     },                                                                 ),                                                                 None,                                                             ),                                                         ],                                                         custom_error: None,                                                         strict: false,                                                         name: "union[fbx,gltf,obj,ply,step,stl]",                                                     },                                                 ),                                                 class: Py(                                                     0x0000555556b2bea0,                                                 ),                                                 post_init: None,                                                 frozen: false,                                                 custom_init: false,                                                 root_model: true,                                                 name: "RootModel[Annotated[Union[kittycad.models.output_format.fbx, kittycad.models.output_format.gltf, kittycad.models.output_format.obj, kittycad.models.output_format.ply, kittycad.models.output_format.step, kittycad.models.output_format.stl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]",                                             },                                         ),                                         name: "nullable[RootModel[Annotated[Union[kittycad.models.output_format.fbx, kittycad.models.output_format.gltf, kittycad.models.output_format.obj, kittycad.models.output_format.ply, kittycad.models.output_format.step, kittycad.models.output_format.stl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[RootModel[Annotated[Union[kittycad.models.output_format.fbx, kittycad.models.output_format.gltf, kittycad.models.output_format.obj, kittycad.models.output_format.ply, kittycad.models.output_format.step, kittycad.models.output_format.stl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "outputs",                         lookup_key: Simple {                             key: "outputs",                             py_key: Py(                                 0x00007fffe35f2670,                             ),                             path: LookupPath(                                 [                                     S(                                         "outputs",                                         Py(                                             0x00007fffe35f2670,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe35f2670,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007ffffff85420,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Dict(                                             DictValidator {                                                 strict: false,                                                 key_validator: Str(                                                     StrValidator {                                                         strict: false,                                                         coerce_numbers_to_str: false,                                                     },                                                 ),                                                 value_validator: FunctionAfter(                                                     FunctionAfterValidator {                                                         validator: Bytes(                                                             BytesValidator {                                                                 strict: false,                                                             },                                                         ),                                                         func: Py(                                                             0x0000555556b67730,                                                         ),                                                         config: Py(                                                             0x00007fffe1344540,                                                         ),                                                         name: "function-after[Base64Data(), bytes]",                                                         field_name: None,                                                         info_arg: false,                                                     },                                                 ),                                                 min_length: None,                                                 max_length: None,                                                 name: "dict[str,function-after[Base64Data(), bytes]]",                                             },                                         ),                                         name: "nullable[dict[str,function-after[Base64Data(), bytes]]]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[dict[str,function-after[Base64Data(), bytes]]]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "src_format",                         lookup_key: Simple {                             key: "src_format",                             py_key: Py(                                 0x00007fffe1494470,                             ),                             path: LookupPath(                                 [                                     S(                                         "src_format",                                         Py(                                             0x00007fffe1494470,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe1494470,                         ),                         validator: LaxOrStrict(                             LaxOrStrictValidator {                                 strict: false,                                 lax_validator: Chain(                                     ChainValidator {                                         steps: [                                             Str(                                                 StrValidator {                                                     strict: false,                                                     coerce_numbers_to_str: false,                                                 },                                             ),                                             FunctionPlain(                                                 FunctionPlainValidator {                                                     func: Py(                                                         0x00007fffe1387280,                                                     ),                                                     config: Py(                                                         0x00007fffe1344540,                                                     ),                                                     name: "function-plain[to_enum()]",                                                     field_name: None,                                                     info_arg: false,                                                 },                                             ),                                         ],                                         name: "chain[str,function-plain[to_enum()]]",                                     },                                 ),                                 strict_validator: JsonOrPython(                                     JsonOrPython {                                         json: FunctionAfter(                                             FunctionAfterValidator {                                                 validator: Str(                                                     StrValidator {                                                         strict: false,                                                         coerce_numbers_to_str: false,                                                     },                                                 ),                                                 func: Py(                                                     0x00007fffe1387280,                                                 ),                                                 config: Py(                                                     0x00007fffe1344540,                                                 ),                                                 name: "function-after[to_enum(), str]",                                                 field_name: None,                                                 info_arg: false,                                             },                                         ),                                         python: IsInstance(                                             IsInstanceValidator {                                                 class: Py(                                                     0x0000555556aa0cc0,                                                 ),                                                 class_repr: "FileImportFormat",                                                 name: "is-instance[FileImportFormat]",                                             },                                         ),                                         name: "json-or-python[json=function-after[to_enum(), str],python=is-instance[FileImportFormat]]",                                     },                                 ),                                 name: "lax-or-strict[lax=chain[str,function-plain[to_enum()]],strict=json-or-python[json=function-after[to_enum(), str],python=is-instance[FileImportFormat]]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "src_format_options",                         lookup_key: Simple {                             key: "src_format_options",                             py_key: Py(                                 0x00007fffe14cdf30,                             ),                             path: LookupPath(                                 [                                     S(                                         "src_format_options",                                         Py(                                             0x00007fffe14cdf30,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe14cdf30,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007ffffff85420,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Model(                                             ModelValidator {                                                 revalidate: Never,                                                 validator: Union(                                                     UnionValidator {                                                         mode: Smart,                                                         choices: [                                                             (                                                                 Model(                                                                     ModelValidator {                                                                         revalidate: Never,                                                                         validator: ModelFields(                                                                             ModelFieldsValidator {                                                                                 fields: [                                                                                     Field {                                                                                         name: "type",                                                                                         lookup_key: Simple {                                                                                             key: "type",                                                                                             py_key: Py(                                                                                                 0x00007fffff8ebef0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "type",                                                                                                         Py(                                                                                                             0x00007fffff8ebef0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fffff8ebef0,                                                                                         ),                                                                                         validator: WithDefault(                                                                                             WithDefaultValidator {                                                                                                 default: Default(                                                                                                     Py(                                                                                                         0x00007fffe14d8f70,                                                                                                     ),                                                                                                 ),                                                                                                 on_error: Raise,                                                                                                 validator: Literal(                                                                                                     LiteralValidator {                                                                                                         lookup: LiteralLookup {                                                                                                             expected_bool: None,                                                                                                             expected_int: None,                                                                                                             expected_str: Some(                                                                                                                 {                                                                                                                     "fbx": 0,                                                                                                                 },                                                                                                             ),                                                                                                             expected_py: None,                                                                                                             values: [                                                                                                                 Py(                                                                                                                     0x00007fffe14d8f70,                                                                                                                 ),                                                                                                             ],                                                                                                         },                                                                                                         expected_repr: "'fbx'",                                                                                                         name: "literal['fbx']",                                                                                                     },                                                                                                 ),                                                                                                 validate_default: false,                                                                                                 copy_default: false,                                                                                                 name: "default[literal['fbx']]",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                 ],                                                                                 model_name: "fbx",                                                                                 extra_behavior: Ignore,                                                                                 extras_validator: None,                                                                                 strict: false,                                                                                 from_attributes: false,                                                                                 loc_by_alias: true,                                                                             },                                                                         ),                                                                         class: Py(                                                                             0x0000555556aac9e0,                                                                         ),                                                                         post_init: None,                                                                         frozen: false,                                                                         custom_init: false,                                                                         root_model: false,                                                                         name: "fbx",                                                                     },                                                                 ),                                                                 None,                                                             ),                                                             (                                                                 Model(                                                                     ModelValidator {                                                                         revalidate: Never,                                                                         validator: ModelFields(                                                                             ModelFieldsValidator {                                                                                 fields: [                                                                                     Field {                                                                                         name: "type",                                                                                         lookup_key: Simple {                                                                                             key: "type",                                                                                             py_key: Py(                                                                                                 0x00007fffff8ebef0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "type",                                                                                                         Py(                                                                                                             0x00007fffff8ebef0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fffff8ebef0,                                                                                         ),                                                                                         validator: WithDefault(                                                                                             WithDefaultValidator {                                                                                                 default: Default(                                                                                                     Py(                                                                                                         0x00007fffe137ba30,                                                                                                     ),                                                                                                 ),                                                                                                 on_error: Raise,                                                                                                 validator: Literal(                                                                                                     LiteralValidator {                                                                                                         lookup: LiteralLookup {                                                                                                             expected_bool: None,                                                                                                             expected_int: None,                                                                                                             expected_str: Some(                                                                                                                 {                                                                                                                     "gltf": 0,                                                                                                                 },                                                                                                             ),                                                                                                             expected_py: None,                                                                                                             values: [                                                                                                                 Py(                                                                                                                     0x00007fffe137ba30,                                                                                                                 ),                                                                                                             ],                                                                                                         },                                                                                                         expected_repr: "'gltf'",                                                                                                         name: "literal['gltf']",                                                                                                     },                                                                                                 ),                                                                                                 validate_default: false,                                                                                                 copy_default: false,                                                                                                 name: "default[literal['gltf']]",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                 ],                                                                                 model_name: "gltf",                                                                                 extra_behavior: Ignore,                                                                                 extras_validator: None,                                                                                 strict: false,                                                                                 from_attributes: false,                                                                                 loc_by_alias: true,                                                                             },                                                                         ),                                                                         class: Py(                                                                             0x0000555556aaeee0,                                                                         ),                                                                         post_init: None,                                                                         frozen: false,                                                                         custom_init: false,                                                                         root_model: false,                                                                         name: "gltf",                                                                     },                                                                 ),                                                                 None,                                                             ),                                                             (                                                                 Model(                                                                     ModelValidator {                                                                         revalidate: Never,                                                                         validator: ModelFields(                                                                             ModelFieldsValidator {                                                                                 fields: [                                                                                     Field {                                                                                         name: "coords",                                                                                         lookup_key: Simple {                                                                                             key: "coords",                                                                                             py_key: Py(                                                                                                 0x00007ffffcb0d8f0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "coords",                                                                                                         Py(                                                                                                             0x00007ffffcb0d8f0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007ffffcb0d8f0,                                                                                         ),                                                                                         validator: DefinitionRef(                                                                                             DefinitionRefValidator {                                                                                                 definition: "kittycad.models.system.System:93825014588992",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "type",                                                                                         lookup_key: Simple {                                                                                             key: "type",                                                                                             py_key: Py(                                                                                                 0x00007fffff8ebef0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "type",                                                                                                         Py(                                                                                                             0x00007fffff8ebef0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fffff8ebef0,                                                                                         ),                                                                                         validator: WithDefault(                                                                                             WithDefaultValidator {                                                                                                 default: Default(                                                                                                     Py(                                                                                                         0x00007fffff93a970,                                                                                                     ),                                                                                                 ),                                                                                                 on_error: Raise,                                                                                                 validator: Literal(                                                                                                     LiteralValidator {                                                                                                         lookup: LiteralLookup {                                                                                                             expected_bool: None,                                                                                                             expected_int: None,                                                                                                             expected_str: Some(                                                                                                                 {                                                                                                                     "obj": 0,                                                                                                                 },                                                                                                             ),                                                                                                             expected_py: None,                                                                                                             values: [                                                                                                                 Py(                                                                                                                     0x00007fffff93a970,                                                                                                                 ),                                                                                                             ],                                                                                                         },                                                                                                         expected_repr: "'obj'",                                                                                                         name: "literal['obj']",                                                                                                     },                                                                                                 ),                                                                                                 validate_default: false,                                                                                                 copy_default: false,                                                                                                 name: "default[literal['obj']]",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "units",                                                                                         lookup_key: Simple {                                                                                             key: "units",                                                                                             py_key: Py(                                                                                                 0x00007fffff2402b0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "units",                                                                                                         Py(                                                                                                             0x00007fffff2402b0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fffff2402b0,                                                                                         ),                                                                                         validator: DefinitionRef(                                                                                             DefinitionRefValidator {                                                                                                 definition: "kittycad.models.unit_length.UnitLength:93825014613552",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                 ],                                                                                 model_name: "obj",                                                                                 extra_behavior: Ignore,                                                                                 extras_validator: None,                                                                                 strict: false,                                                                                 from_attributes: false,                                                                                 loc_by_alias: true,                                                                             },                                                                         ),                                                                         class: Py(                                                                             0x0000555556ab0cc0,                                                                         ),                                                                         post_init: None,                                                                         frozen: false,                                                                         custom_init: false,                                                                         root_model: false,                                                                         name: "obj",                                                                     },                                                                 ),                                                                 None,                                                             ),                                                             (                                                                 Model(                                                                     ModelValidator {                                                                         revalidate: Never,                                                                         validator: ModelFields(                                                                             ModelFieldsValidator {                                                                                 fields: [                                                                                     Field {                                                                                         name: "coords",                                                                                         lookup_key: Simple {                                                                                             key: "coords",                                                                                             py_key: Py(                                                                                                 0x00007ffffcb0d8f0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "coords",                                                                                                         Py(                                                                                                             0x00007ffffcb0d8f0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007ffffcb0d8f0,                                                                                         ),                                                                                         validator: DefinitionRef(                                                                                             DefinitionRefValidator {                                                                                                 definition: "kittycad.models.system.System:93825014588992",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "type",                                                                                         lookup_key: Simple {                                                                                             key: "type",                                                                                             py_key: Py(                                                                                                 0x00007fffff8ebef0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "type",                                                                                                         Py(                                                                                                             0x00007fffff8ebef0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fffff8ebef0,                                                                                         ),                                                                                         validator: WithDefault(                                                                                             WithDefaultValidator {                                                                                                 default: Default(                                                                                                     Py(                                                                                                         0x00007fffe137bab0,                                                                                                     ),                                                                                                 ),                                                                                                 on_error: Raise,                                                                                                 validator: Literal(                                                                                                     LiteralValidator {                                                                                                         lookup: LiteralLookup {                                                                                                             expected_bool: None,                                                                                                             expected_int: None,                                                                                                             expected_str: Some(                                                                                                                 {                                                                                                                     "ply": 0,                                                                                                                 },                                                                                                             ),                                                                                                             expected_py: None,                                                                                                             values: [                                                                                                                 Py(                                                                                                                     0x00007fffe137bab0,                                                                                                                 ),                                                                                                             ],                                                                                                         },                                                                                                         expected_repr: "'ply'",                                                                                                         name: "literal['ply']",                                                                                                     },                                                                                                 ),                                                                                                 validate_default: false,                                                                                                 copy_default: false,                                                                                                 name: "default[literal['ply']]",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "units",                                                                                         lookup_key: Simple {                                                                                             key: "units",                                                                                             py_key: Py(                                                                                                 0x00007fffff2402b0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "units",                                                                                                         Py(                                                                                                             0x00007fffff2402b0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fffff2402b0,                                                                                         ),                                                                                         validator: DefinitionRef(                                                                                             DefinitionRefValidator {                                                                                                 definition: "kittycad.models.unit_length.UnitLength:93825014613552",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                 ],                                                                                 model_name: "ply",                                                                                 extra_behavior: Ignore,                                                                                 extras_validator: None,                                                                                 strict: false,                                                                                 from_attributes: false,                                                                                 loc_by_alias: true,                                                                             },                                                                         ),                                                                         class: Py(                                                                             0x0000555556aba5e0,                                                                         ),                                                                         post_init: None,                                                                         frozen: false,                                                                         custom_init: false,                                                                         root_model: false,                                                                         name: "ply",                                                                     },                                                                 ),                                                                 None,                                                             ),                                                             (                                                                 Model(                                                                     ModelValidator {                                                                         revalidate: Never,                                                                         validator: ModelFields(                                                                             ModelFieldsValidator {                                                                                 fields: [                                                                                     Field {                                                                                         name: "type",                                                                                         lookup_key: Simple {                                                                                             key: "type",                                                                                             py_key: Py(                                                                                                 0x00007fffff8ebef0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "type",                                                                                                         Py(                                                                                                             0x00007fffff8ebef0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fffff8ebef0,                                                                                         ),                                                                                         validator: WithDefault(                                                                                             WithDefaultValidator {                                                                                                 default: Default(                                                                                                     Py(                                                                                                         0x00007fffe1ef6430,                                                                                                     ),                                                                                                 ),                                                                                                 on_error: Raise,                                                                                                 validator: Literal(                                                                                                     LiteralValidator {                                                                                                         lookup: LiteralLookup {                                                                                                             expected_bool: None,                                                                                                             expected_int: None,                                                                                                             expected_str: Some(                                                                                                                 {                                                                                                                     "sldprt": 0,                                                                                                                 },                                                                                                             ),                                                                                                             expected_py: None,                                                                                                             values: [                                                                                                                 Py(                                                                                                                     0x00007fffe1ef6430,                                                                                                                 ),                                                                                                             ],                                                                                                         },                                                                                                         expected_repr: "'sldprt'",                                                                                                         name: "literal['sldprt']",                                                                                                     },                                                                                                 ),                                                                                                 validate_default: false,                                                                                                 copy_default: false,                                                                                                 name: "default[literal['sldprt']]",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                 ],                                                                                 model_name: "sldprt",                                                                                 extra_behavior: Ignore,                                                                                 extras_validator: None,                                                                                 strict: false,                                                                                 from_attributes: false,                                                                                 loc_by_alias: true,                                                                             },                                                                         ),                                                                         class: Py(                                                                             0x0000555556ac3810,                                                                         ),                                                                         post_init: None,                                                                         frozen: false,                                                                         custom_init: false,                                                                         root_model: false,                                                                         name: "sldprt",                                                                     },                                                                 ),                                                                 None,                                                             ),                                                             (                                                                 Model(                                                                     ModelValidator {                                                                         revalidate: Never,                                                                         validator: ModelFields(                                                                             ModelFieldsValidator {                                                                                 fields: [                                                                                     Field {                                                                                         name: "type",                                                                                         lookup_key: Simple {                                                                                             key: "type",                                                                                             py_key: Py(                                                                                                 0x00007fffff8ebef0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "type",                                                                                                         Py(                                                                                                             0x00007fffff8ebef0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fffff8ebef0,                                                                                         ),                                                                                         validator: WithDefault(                                                                                             WithDefaultValidator {                                                                                                 default: Default(                                                                                                     Py(                                                                                                         0x00007fffff929d30,                                                                                                     ),                                                                                                 ),                                                                                                 on_error: Raise,                                                                                                 validator: Literal(                                                                                                     LiteralValidator {                                                                                                         lookup: LiteralLookup {                                                                                                             expected_bool: None,                                                                                                             expected_int: None,                                                                                                             expected_str: Some(                                                                                                                 {                                                                                                                     "step": 0,                                                                                                                 },                                                                                                             ),                                                                                                             expected_py: None,                                                                                                             values: [                                                                                                                 Py(                                                                                                                     0x00007fffff929d30,                                                                                                                 ),                                                                                                             ],                                                                                                         },                                                                                                         expected_repr: "'step'",                                                                                                         name: "literal['step']",                                                                                                     },                                                                                                 ),                                                                                                 validate_default: false,                                                                                                 copy_default: false,                                                                                                 name: "default[literal['step']]",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                 ],                                                                                 model_name: "step",                                                                                 extra_behavior: Ignore,                                                                                 extras_validator: None,                                                                                 strict: false,                                                                                 from_attributes: false,                                                                                 loc_by_alias: true,                                                                             },                                                                         ),                                                                         class: Py(                                                                             0x0000555556ac52c0,                                                                         ),                                                                         post_init: None,                                                                         frozen: false,                                                                         custom_init: false,                                                                         root_model: false,                                                                         name: "step",                                                                     },                                                                 ),                                                                 None,                                                             ),                                                             (                                                                 Model(                                                                     ModelValidator {                                                                         revalidate: Never,                                                                         validator: ModelFields(                                                                             ModelFieldsValidator {                                                                                 fields: [                                                                                     Field {                                                                                         name: "coords",                                                                                         lookup_key: Simple {                                                                                             key: "coords",                                                                                             py_key: Py(                                                                                                 0x00007ffffcb0d8f0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "coords",                                                                                                         Py(                                                                                                             0x00007ffffcb0d8f0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007ffffcb0d8f0,                                                                                         ),                                                                                         validator: DefinitionRef(                                                                                             DefinitionRefValidator {                                                                                                 definition: "kittycad.models.system.System:93825014588992",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "type",                                                                                         lookup_key: Simple {                                                                                             key: "type",                                                                                             py_key: Py(                                                                                                 0x00007fffff8ebef0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "type",                                                                                                         Py(                                                                                                             0x00007fffff8ebef0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fffff8ebef0,                                                                                         ),                                                                                         validator: WithDefault(                                                                                             WithDefaultValidator {                                                                                                 default: Default(                                                                                                     Py(                                                                                                         0x00007fffe137bb30,                                                                                                     ),                                                                                                 ),                                                                                                 on_error: Raise,                                                                                                 validator: Literal(                                                                                                     LiteralValidator {                                                                                                         lookup: LiteralLookup {                                                                                                             expected_bool: None,                                                                                                             expected_int: None,                                                                                                             expected_str: Some(                                                                                                                 {                                                                                                                     "stl": 0,                                                                                                                 },                                                                                                             ),                                                                                                             expected_py: None,                                                                                                             values: [                                                                                                                 Py(                                                                                                                     0x00007fffe137bb30,                                                                                                                 ),                                                                                                             ],                                                                                                         },                                                                                                         expected_repr: "'stl'",                                                                                                         name: "literal['stl']",                                                                                                     },                                                                                                 ),                                                                                                 validate_default: false,                                                                                                 copy_default: false,                                                                                                 name: "default[literal['stl']]",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "units",                                                                                         lookup_key: Simple {                                                                                             key: "units",                                                                                             py_key: Py(                                                                                                 0x00007fffff2402b0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "units",                                                                                                         Py(                                                                                                             0x00007fffff2402b0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fffff2402b0,                                                                                         ),                                                                                         validator: DefinitionRef(                                                                                             DefinitionRefValidator {                                                                                                 definition: "kittycad.models.unit_length.UnitLength:93825014613552",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                 ],                                                                                 model_name: "stl",                                                                                 extra_behavior: Ignore,                                                                                 extras_validator: None,                                                                                 strict: false,                                                                                 from_attributes: false,                                                                                 loc_by_alias: true,                                                                             },                                                                         ),                                                                         class: Py(                                                                             0x0000555556ac7160,                                                                         ),                                                                         post_init: None,                                                                         frozen: false,                                                                         custom_init: false,                                                                         root_model: false,                                                                         name: "stl",                                                                     },                                                                 ),                                                                 None,                                                             ),                                                         ],                                                         custom_error: None,                                                         strict: false,                                                         name: "union[fbx,gltf,obj,ply,sldprt,step,stl]",                                                     },                                                 ),                                                 class: Py(                                                     0x0000555556ac7ba0,                                                 ),                                                 post_init: None,                                                 frozen: false,                                                 custom_init: false,                                                 root_model: true,                                                 name: "RootModel[Annotated[Union[kittycad.models.input_format.fbx, kittycad.models.input_format.gltf, kittycad.models.input_format.obj, kittycad.models.input_format.ply, kittycad.models.input_format.sldprt, kittycad.models.input_format.step, kittycad.models.input_format.stl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]",                                             },                                         ),                                         name: "nullable[RootModel[Annotated[Union[kittycad.models.input_format.fbx, kittycad.models.input_format.gltf, kittycad.models.input_format.obj, kittycad.models.input_format.ply, kittycad.models.input_format.sldprt, kittycad.models.input_format.step, kittycad.models.input_format.stl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[RootModel[Annotated[Union[kittycad.models.input_format.fbx, kittycad.models.input_format.gltf, kittycad.models.input_format.obj, kittycad.models.input_format.ply, kittycad.models.input_format.sldprt, kittycad.models.input_format.step, kittycad.models.input_format.stl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "started_at",                         lookup_key: Simple {                             key: "started_at",                             py_key: Py(                                 0x00007fffe137cbf0,                             ),                             path: LookupPath(                                 [                                     S(                                         "started_at",                                         Py(                                             0x00007fffe137cbf0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe137cbf0,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007ffffff85420,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Datetime(                                             DateTimeValidator {                                                 strict: false,                                                 constraints: None,                                                 microseconds_precision: Truncate,                                             },                                         ),                                         name: "nullable[datetime]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[datetime]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "status",                         lookup_key: Simple {                             key: "status",                             py_key: Py(                                 0x00007fffff6e27f0,                             ),                             path: LookupPath(                                 [                                     S(                                         "status",                                         Py(                                             0x00007fffff6e27f0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffff6e27f0,                         ),                         validator: LaxOrStrict(                             LaxOrStrictValidator {                                 strict: false,                                 lax_validator: Chain(                                     ChainValidator {                                         steps: [                                             Str(                                                 StrValidator {                                                     strict: false,                                                     coerce_numbers_to_str: false,                                                 },                                             ),                                             FunctionPlain(                                                 FunctionPlainValidator {                                                     func: Py(                                                         0x00007fffe12e4ee0,                                                     ),                                                     config: Py(                                                         0x00007fffe1344540,                                                     ),                                                     name: "function-plain[to_enum()]",                                                     field_name: None,                                                     info_arg: false,                                                 },                                             ),                                         ],                                         name: "chain[str,function-plain[to_enum()]]",                                     },                                 ),                                 strict_validator: JsonOrPython(                                     JsonOrPython {                                         json: FunctionAfter(                                             FunctionAfterValidator {                                                 validator: Str(                                                     StrValidator {                                                         strict: false,                                                         coerce_numbers_to_str: false,                                                     },                                                 ),                                                 func: Py(                                                     0x00007fffe12e4ee0,                                                 ),                                                 config: Py(                                                     0x00007fffe1344540,                                                 ),                                                 name: "function-after[to_enum(), str]",                                                 field_name: None,                                                 info_arg: false,                                             },                                         ),                                         python: IsInstance(                                             IsInstanceValidator {                                                 class: Py(                                                     0x0000555556a230f0,                                                 ),                                                 class_repr: "ApiCallStatus",                                                 name: "is-instance[ApiCallStatus]",                                             },                                         ),                                         name: "json-or-python[json=function-after[to_enum(), str],python=is-instance[ApiCallStatus]]",                                     },                                 ),                                 name: "lax-or-strict[lax=chain[str,function-plain[to_enum()]],strict=json-or-python[json=function-after[to_enum(), str],python=is-instance[ApiCallStatus]]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "type",                         lookup_key: Simple {                             key: "type",                             py_key: Py(                                 0x00007fffff8ebef0,                             ),                             path: LookupPath(                                 [                                     S(                                         "type",                                         Py(                                             0x00007fffff8ebef0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffff8ebef0,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fffe1c7bb70,                                     ),                                 ),                                 on_error: Raise,                                 validator: Literal(                                     LiteralValidator {                                         lookup: LiteralLookup {                                             expected_bool: None,                                             expected_int: None,                                             expected_str: Some(                                                 {                                                     "file_conversion": 0,                                                 },                                             ),                                             expected_py: None,                                             values: [                                                 Py(                                                     0x00007fffe1c7bb70,                                                 ),                                             ],                                         },                                         expected_repr: "'file_conversion'",                                         name: "literal['file_conversion']",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[literal['file_conversion']]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "updated_at",                         lookup_key: Simple {                             key: "updated_at",                             py_key: Py(                                 0x00007fffe137c6b0,                             ),                             path: LookupPath(                                 [                                     S(                                         "updated_at",                                         Py(                                             0x00007fffe137c6b0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe137c6b0,                         ),                         validator: Datetime(                             DateTimeValidator {                                 strict: false,                                 constraints: None,                                 microseconds_precision: Truncate,                             },                         ),                         frozen: false,                     },                     Field {                         name: "user_id",                         lookup_key: Simple {                             key: "user_id",                             py_key: Py(                                 0x00007fffe137c730,                             ),                             path: LookupPath(                                 [                                     S(                                         "user_id",                                         Py(                                             0x00007fffe137c730,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe137c730,                         ),                         validator: FunctionAfter(                             FunctionAfterValidator {                                 validator: Str(                                     StrValidator {                                         strict: false,                                         coerce_numbers_to_str: false,                                     },                                 ),                                 func: Py(                                     0x0000555556a23980,                                 ),                                 config: Py(                                     0x00007fffe1344540,                                 ),                                 name: "function-after[Uuid(), str]",                                 field_name: None,                                 info_arg: false,                             },                         ),                         frozen: false,                     },                 ],                 model_name: "file_conversion",                 extra_behavior: Ignore,                 extras_validator: None,                 strict: false,                 from_attributes: false,                 loc_by_alias: true,             },         ),         class: Py(             0x0000555556b68250,         ),         post_init: None,         frozen: false,         custom_init: false,         root_model: false,         name: "file_conversion",     }, ), definitions=[Model(ModelValidator { revalidate: Never, validator: ModelFields(ModelFieldsValidator { fields: [Field { name: "axis", lookup_key: Simple { key: "axis", py_key: Py(0x7ffffcb74b30), path: LookupPath([S("axis", Py(0x7ffffcb74b30))]) }, name_py: Py(0x7ffffcb74b30), validator: DefinitionRef(DefinitionRefValidator { definition: "kittycad.models.axis.Axis:93825014567168" }), frozen: false }, Field { name: "direction", lookup_key: Simple { key: "direction", py_key: Py(0x7fffff77c7f0), path: LookupPath([S("direction", Py(0x7fffff77c7f0))]) }, name_py: Py(0x7fffff77c7f0), validator: DefinitionRef(DefinitionRefValidator { definition: "kittycad.models.direction.Direction:93825014568112" }), frozen: false }], model_name: "AxisDirectionPair", extra_behavior: Ignore, extras_validator: None, strict: false, from_attributes: false, loc_by_alias: true }), class: Py(0x555556aa1ab0), post_init: None, frozen: false, custom_init: false, root_model: false, name: "AxisDirectionPair" }), LaxOrStrict(LaxOrStrictValidator { strict: false, lax_validator: Chain(ChainValidator { steps: [Str(StrValidator { strict: false, coerce_numbers_to_str: false }), FunctionPlain(FunctionPlainValidator { func: Py(0x7fffe14d0160), config: Py(0x7fffe135c540), name: "function-plain[to_enum()]", field_name: None, info_arg: false })], name: "chain[str,function-plain[to_enum()]]" }), strict_validator: JsonOrPython(JsonOrPython { json: FunctionAfter(FunctionAfterValidator { validator: Str(StrValidator { strict: false, coerce_numbers_to_str: false }), func: Py(0x7fffe14d0160), config: Py(0x7fffe135c540), name: "function-after[to_enum(), str]", field_name: None, info_arg: false }), python: IsInstance(IsInstanceValidator { class: Py(0x555556aa14b0), class_repr: "Direction", name: "is-instance[Direction]" }), name: "json-or-python[json=function-after[to_enum(), str],python=is-instance[Direction]]" }), name: "lax-or-strict[lax=chain[str,function-plain[to_enum()]],strict=json-or-python[json=function-after[to_enum(), str],python=is-instance[Direction]]]" }), Model(ModelValidator { revalidate: Never, validator: ModelFields(ModelFieldsValidator { fields: [Field { name: "name", lookup_key: Simple { key: "name", py_key: Py(0x7fffff9521b0), path: LookupPath([S("name", Py(0x7fffff9521b0))]) }, name_py: Py(0x7fffff9521b0), validator: Str(StrValidator { strict: false, coerce_numbers_to_str: false }), frozen: false }, Field { name: "type", lookup_key: Simple { key: "type", py_key: Py(0x7fffff8ebef0), path: LookupPath([S("type", Py(0x7fffff8ebef0))]) }, name_py: Py(0x7fffff8ebef0), validator: WithDefault(WithDefaultValidator { default: Default(Py(0x7fffe1f77ab0)), on_error: Raise, validator: Literal(LiteralValidator { lookup: LiteralLookup { expected_bool: None, expected_int: None, expected_str: Some({"scene_by_name": 0}), expected_py: None, values: [Py(0x7fffe1f77ab0)] }, expected_repr: "'scene_by_name'", name: "literal['scene_by_name']" }), validate_default: false, copy_default: false, name: "default[literal['scene_by_name']]" }), frozen: false }], model_name: "scene_by_name", extra_behavior: Ignore, extras_validator: None, strict: false, from_attributes: false, loc_by_alias: true }), class: Py(0x555556aed8f0), post_init: None, frozen: false, custom_init: false, root_model: false, name: "scene_by_name" }), Model(ModelValidator { revalidate: Never, validator: ModelFields(ModelFieldsValidator { fields: [Field { name: "name", lookup_key: Simple { key: "name", py_key: Py(0x7fffff9521b0), path: LookupPath([S("name", Py(0x7fffff9521b0))]) }, name_py: Py(0x7fffff9521b0), validator: Str(StrValidator { strict: false, coerce_numbers_to_str: false }), frozen: false }, Field { name: "type", lookup_key: Simple { key: "type", py_key: Py(0x7fffff8ebef0), path: LookupPath([S("type", Py(0x7fffff8ebef0))]) }, name_py: Py(0x7fffff8ebef0), validator: WithDefault(WithDefaultValidator { default: Default(Py(0x7fffe1390870)), on_error: Raise, validator: Literal(LiteralValidator { lookup: LiteralLookup { expected_bool: None, expected_int: None, expected_str: Some({"mesh_by_name": 0}), expected_py: None, values: [Py(0x7fffe1390870)] }, expected_repr: "'mesh_by_name'", name: "literal['mesh_by_name']" }), validate_default: false, copy_default: false, name: "default[literal['mesh_by_name']]" }), frozen: false }], model_name: "mesh_by_name", extra_behavior: Ignore, extras_validator: None, strict: false, from_attributes: false, loc_by_alias: true }), class: Py(0x555556af0ba0), post_init: None, frozen: false, custom_init: false, root_model: false, name: "mesh_by_name" }), Model(ModelValidator { revalidate: Never, validator: Union(UnionValidator { mode: Smart, choices: [(DefinitionRef(DefinitionRefValidator { definition: "kittycad.models.selection.default_scene:93825014224528" }), None), (DefinitionRef(DefinitionRefValidator { definition: "kittycad.models.selection.scene_by_index:93825014871232" }), None), (DefinitionRef(DefinitionRefValidator { definition: "kittycad.models.selection.scene_by_name:93825014880496" }), None), (DefinitionRef(DefinitionRefValidator { definition: "kittycad.models.selection.mesh_by_index:93825014886016" }), None), (DefinitionRef(DefinitionRefValidator { definition: "kittycad.models.selection.mesh_by_name:93825014893472" }), None)], custom_error: None, strict: false, name: "union[default_scene,scene_by_index,scene_by_name,mesh_by_index,mesh_by_name]" }), class: Py(0x555556af2d80), post_init: None, frozen: false, custom_init: false, root_model: true, name: "RootModel[Annotated[Union[kittycad.models.selection.default_scene, kittycad.models.selection.scene_by_index, kittycad.models.selection.scene_by_name, kittycad.models.selection.mesh_by_index, kittycad.models.selection.mesh_by_name], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]" }), LaxOrStrict(LaxOrStrictValidator { strict: false, lax_validator: Chain(ChainValidator { steps: [Str(StrValidator { strict: false, coerce_numbers_to_str: false }), FunctionPlain(FunctionPlainValidator { func: Py(0x7fffe14d0ca0), config: Py(0x7fffe135c540), name: "function-plain[to_enum()]", field_name: None, info_arg: false })], name: "chain[str,function-plain[to_enum()]]" }), strict_validator: JsonOrPython(JsonOrPython { json: FunctionAfter(FunctionAfterValidator { validator: Str(StrValidator { strict: false, coerce_numbers_to_str: false }), func: Py(0x7fffe14d0ca0), config: Py(0x7fffe135c540), name: "function-after[to_enum(), str]", field_name: None, info_arg: false }), python: IsInstance(IsInstanceValidator { class: Py(0x555556aa1100), class_repr: "Axis", name: "is-instance[Axis]" }), name: "json-or-python[json=function-after[to_enum(), str],python=is-instance[Axis]]" }), name: "lax-or-strict[lax=chain[str,function-plain[to_enum()]],strict=json-or-python[json=function-after[to_enum(), str],python=is-instance[Axis]]]" }), Model(ModelValidator { revalidate: Never, validator: ModelFields(ModelFieldsValidator { fields: [Field { name: "index", lookup_key: Simple { key: "index", py_key: Py(0x7fffff920af0), path: LookupPath([S("index", Py(0x7fffff920af0))]) }, name_py: Py(0x7fffff920af0), validator: Int(IntValidator { strict: false }), frozen: false }, Field { name: "type", lookup_key: Simple { key: "type", py_key: Py(0x7fffff8ebef0), path: LookupPath([S("type", Py(0x7fffff8ebef0))]) }, name_py: Py(0x7fffff8ebef0), validator: WithDefault(WithDefaultValidator { default: Default(Py(0x7fffe1285ef0)), on_error: Raise, validator: Literal(LiteralValidator { lookup: LiteralLookup { expected_bool: None, expected_int: None, expected_str: Some({"scene_by_index": 0}), expected_py: None, values: [Py(0x7fffe1285ef0)] }, expected_repr: "'scene_by_index'", name: "literal['scene_by_index']" }), validate_default: false, copy_default: false, name: "default[literal['scene_by_index']]" }), frozen: false }], model_name: "scene_by_index", extra_behavior: Ignore, extras_validator: None, strict: false, from_attributes: false, loc_by_alias: true }), class: Py(0x555556aeb4c0), post_init: None, frozen: false, custom_init: false, root_model: false, name: "scene_by_index" }), Model(ModelValidator { revalidate: Never, validator: ModelFields(ModelFieldsValidator { fields: [Field { name: "forward", lookup_key: Simple { key: "forward", py_key: Py(0x7ffffddd9770), path: LookupPath([S("forward", Py(0x7ffffddd9770))]) }, name_py: Py(0x7ffffddd9770), validator: DefinitionRef(DefinitionRefValidator { definition: "kittycad.models.axis_direction_pair.AxisDirectionPair:93825014569648" }), frozen: false }, Field { name: "up", lookup_key: Simple { key: "up", py_key: Py(0x7ffffdc55170), path: LookupPath([S("up", Py(0x7ffffdc55170))]) }, name_py: Py(0x7ffffdc55170), validator: DefinitionRef(DefinitionRefValidator { definition: "kittycad.models.axis_direction_pair.AxisDirectionPair:93825014569648" }), frozen: false }], model_name: "System", extra_behavior: Ignore, extras_validator: None, strict: false, from_attributes: false, loc_by_alias: true }), class: Py(0x555556aa6640), post_init: None, frozen: false, custom_init: false, root_model: false, name: "System" }), LaxOrStrict(LaxOrStrictValidator { strict: false, lax_validator: Chain(ChainValidator { steps: [Str(StrValidator { strict: false, coerce_numbers_to_str: false }), FunctionPlain(FunctionPlainValidator { func: Py(0x7fffe139e4c0), config: Py(0x7fffe135c540), name: "function-plain[to_enum()]", field_name: None, info_arg: false })], name: "chain[str,function-plain[to_enum()]]" }), strict_validator: JsonOrPython(JsonOrPython { json: FunctionAfter(FunctionAfterValidator { validator: Str(StrValidator { strict: false, coerce_numbers_to_str: false }), func: Py(0x7fffe139e4c0), config: Py(0x7fffe135c540), name: "function-after[to_enum(), str]", field_name: None, info_arg: false }), python: IsInstance(IsInstanceValidator { class: Py(0x555556aac630), class_repr: "UnitLength", name: "is-instance[UnitLength]" }), name: "json-or-python[json=function-after[to_enum(), str],python=is-instance[UnitLength]]" }), name: "lax-or-strict[lax=chain[str,function-plain[to_enum()]],strict=json-or-python[json=function-after[to_enum(), str],python=is-instance[UnitLength]]]" }), Model(ModelValidator { revalidate: Never, validator: ModelFields(ModelFieldsValidator { fields: [Field { name: "index", lookup_key: Simple { key: "index", py_key: Py(0x7fffff920af0), path: LookupPath([S("index", Py(0x7fffff920af0))]) }, name_py: Py(0x7fffff920af0), validator: Int(IntValidator { strict: false }), frozen: false }, Field { name: "type", lookup_key: Simple { key: "type", py_key: Py(0x7fffff8ebef0), path: LookupPath([S("type", Py(0x7fffff8ebef0))]) }, name_py: Py(0x7fffff8ebef0), validator: WithDefault(WithDefaultValidator { default: Default(Py(0x7fffe13987f0)), on_error: Raise, validator: Literal(LiteralValidator { lookup: LiteralLookup { expected_bool: None, expected_int: None, expected_str: Some({"mesh_by_index": 0}), expected_py: None, values: [Py(0x7fffe13987f0)] }, expected_repr: "'mesh_by_index'", name: "literal['mesh_by_index']" }), validate_default: false, copy_default: false, name: "default[literal['mesh_by_index']]" }), frozen: false }], model_name: "mesh_by_index", extra_behavior: Ignore, extras_validator: None, strict: false, from_attributes: false, loc_by_alias: true }), class: Py(0x555556aeee80), post_init: None, frozen: false, custom_init: false, root_model: false, name: "mesh_by_index" }), Model(ModelValidator { revalidate: Never, validator: ModelFields(ModelFieldsValidator { fields: [Field { name: "type", lookup_key: Simple { key: "type", py_key: Py(0x7fffff8ebef0), path: LookupPath([S("type", Py(0x7fffff8ebef0))]) }, name_py: Py(0x7fffff8ebef0), validator: WithDefault(WithDefaultValidator { default: Default(Py(0x7fffe1285fb0)), on_error: Raise, validator: Literal(LiteralValidator { lookup: LiteralLookup { expected_bool: None, expected_int: None, expected_str: Some({"default_scene": 0}), expected_py: None, values: [Py(0x7fffe1285fb0)] }, expected_repr: "'default_scene'", name: "literal['default_scene']" }), validate_default: false, copy_default: false, name: "default[literal['default_scene']]" }), frozen: false }], model_name: "default_scene", extra_behavior: Ignore, extras_validator: None, strict: false, from_attributes: false, loc_by_alias: true }), class: Py(0x555556a4d690), post_init: None, frozen: false, custom_init: false, root_model: false, name: "default_scene" })])[source]
__repr__()[source]

Return repr(self).

Return type:

str

__repr_args__()[source]
__repr_name__()[source]

Name of the instance’s class, used in __repr__.

Return type:

str

__repr_str__(join_str)[source]
Return type:

str

__rich_repr__()[source]

Used by Rich (https://rich.readthedocs.io/en/stable/pretty.html) to pretty print objects.

__setattr__(name, value)[source]

Implement setattr(self, name, value).

Return type:

None

__setstate__(state)[source]
Return type:

None

__signature__: ClassVar[Signature] = <Signature (*, completed_at: Optional[datetime.datetime] = None, created_at: datetime.datetime, error: Optional[str] = None, id: kittycad.models.uuid.Uuid, output_format: kittycad.models.file_export_format.FileExportFormat, output_format_options: Optional[pydantic.root_model.RootModel[Annotated[Union[kittycad.models.output_format.fbx, kittycad.models.output_format.gltf, kittycad.models.output_format.obj, kittycad.models.output_format.ply, kittycad.models.output_format.step, kittycad.models.output_format.stl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]] = None, outputs: Optional[Dict[str, kittycad.models.base64data.Base64Data]] = None, src_format: kittycad.models.file_import_format.FileImportFormat, src_format_options: Optional[pydantic.root_model.RootModel[Annotated[Union[kittycad.models.input_format.fbx, kittycad.models.input_format.gltf, kittycad.models.input_format.obj, kittycad.models.input_format.ply, kittycad.models.input_format.sldprt, kittycad.models.input_format.step, kittycad.models.input_format.stl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]] = None, started_at: Optional[datetime.datetime] = None, status: kittycad.models.api_call_status.ApiCallStatus, type: Literal['file_conversion'] = 'file_conversion', updated_at: datetime.datetime, user_id: kittycad.models.uuid.Uuid) -> None>[source]
__slots__ = ('__dict__', '__pydantic_fields_set__', '__pydantic_extra__', '__pydantic_private__')[source]
__str__()[source]

Return str(self).

Return type:

str

_abc_impl = <_abc._abc_data object>[source]
_calculate_keys(*args, **kwargs)[source]
Return type:

Any

_check_frozen(name, value)[source]
Return type:

None

_copy_and_set_values(*args, **kwargs)[source]
Return type:

Any

classmethod _get_value(cls, *args, **kwargs)[source]
Return type:

Any

_iter(*args, **kwargs)[source]
Return type:

Any

completed_at: Optional[datetime][source]
classmethod construct(cls, _fields_set=None, **values)[source]
Return type:

Model

copy(*, include=None, exclude=None, update=None, deep=False)[source]

Returns a copy of the model.

!!! warning “Deprecated”

This method is now deprecated; use model_copy instead.

If you need include or exclude, use:

`py data = self.model_dump(include=include, exclude=exclude, round_trip=True) data = {**data, **(update or {})} copied = self.model_validate(data) `

Parameters:
  • include (AbstractSetIntStr | MappingIntStrAny | None) – Optional set or mapping specifying which fields to include in the copied model.

  • exclude (AbstractSetIntStr | MappingIntStrAny | None) – Optional set or mapping specifying which fields to exclude in the copied model.

  • update (Dict[str, Any] | None) – Optional dictionary of field-value pairs to override field values in the copied model.

  • deep (bool) – If True, the values of fields that are Pydantic models will be deep copied.

Return type:

Model

Returns:

A copy of the model with included, excluded and updated fields as specified.

created_at: datetime[source]
dict(*, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False)[source]
Return type:

Dict[str, Any]

error: Optional[str][source]
classmethod from_orm(cls, obj)[source]
Return type:

Model

id: Uuid[source]
json(*, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, encoder=PydanticUndefined, models_as_dict=PydanticUndefined, **dumps_kwargs)[source]
Return type:

str

property model_computed_fields: dict[str, ComputedFieldInfo][source]

Get the computed fields of this model instance.

Returns:

A dictionary of computed field names and their corresponding ComputedFieldInfo objects.

model_config: ClassVar[ConfigDict] = {}[source]

Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].

classmethod model_construct(_fields_set=None, **values)[source]

Creates a new instance of the Model class with validated data.

Creates a new model setting __dict__ and __pydantic_fields_set__ from trusted or pre-validated data. Default values are respected, but no other validation is performed. Behaves as if Config.extra = ‘allow’ was set since it adds all passed values

Parameters:
  • _fields_set (set[str] | None) – The set of field names accepted for the Model instance.

  • values (Any) – Trusted or pre-validated data dictionary.

Return type:

Model

Returns:

A new instance of the Model class with validated data.

model_copy(*, update=None, deep=False)[source]

Usage docs: https://docs.pydantic.dev/2.5/concepts/serialization/#model_copy

Returns a copy of the model.

Parameters:
  • update (dict[str, Any] | None) – Values to change/add in the new model. Note: the data is not validated before creating the new model. You should trust this data.

  • deep (bool) – Set to True to make a deep copy of the model.

Return type:

Model

Returns:

New model instance.

model_dump(*, mode='python', include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, round_trip=False, warnings=True)[source]

Usage docs: https://docs.pydantic.dev/2.5/concepts/serialization/#modelmodel_dump

Generate a dictionary representation of the model, optionally specifying which fields to include or exclude.

Parameters:
  • mode – The mode in which to_python should run. If mode is ‘json’, the dictionary will only contain JSON serializable types. If mode is ‘python’, the dictionary may contain any Python objects.

  • include – A list of fields to include in the output.

  • exclude – A list of fields to exclude from the output.

  • by_alias – Whether to use the field’s alias in the dictionary key if defined.

  • exclude_unset – Whether to exclude fields that have not been explicitly set.

  • exclude_defaults – Whether to exclude fields that are set to their default value from the output.

  • exclude_none – Whether to exclude fields that have a value of None from the output.

  • round_trip – Whether to enable serialization and deserialization round-trip support.

  • warnings – Whether to log warnings when invalid fields are encountered.

Returns:

A dictionary representation of the model.

model_dump_json(*, indent=None, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, round_trip=False, warnings=True)[source]

Usage docs: https://docs.pydantic.dev/2.5/concepts/serialization/#modelmodel_dump_json

Generates a JSON representation of the model using Pydantic’s to_json method.

Parameters:
  • indent – Indentation to use in the JSON output. If None is passed, the output will be compact.

  • include – Field(s) to include in the JSON output. Can take either a string or set of strings.

  • exclude – Field(s) to exclude from the JSON output. Can take either a string or set of strings.

  • by_alias – Whether to serialize using field aliases.

  • exclude_unset – Whether to exclude fields that have not been explicitly set.

  • exclude_defaults – Whether to exclude fields that have the default value.

  • exclude_none – Whether to exclude fields that have a value of None.

  • round_trip – Whether to use serialization/deserialization between JSON and class instance.

  • warnings – Whether to show any warnings that occurred during serialization.

Returns:

A JSON string representation of the model.

property model_extra[source]

Get extra fields set during validation.

Returns:

A dictionary of extra fields, or None if config.extra is not set to “allow”.

model_fields: ClassVar[dict[str, FieldInfo]] = {'completed_at': FieldInfo(annotation=Union[datetime, NoneType], required=False), 'created_at': FieldInfo(annotation=datetime, required=True), 'error': FieldInfo(annotation=Union[str, NoneType], required=False), 'id': FieldInfo(annotation=Uuid, required=True), 'output_format': FieldInfo(annotation=FileExportFormat, required=True), 'output_format_options': FieldInfo(annotation=Union[RootModel[Annotated[Union[kittycad.models.output_format.fbx, kittycad.models.output_format.gltf, kittycad.models.output_format.obj, kittycad.models.output_format.ply, kittycad.models.output_format.step, kittycad.models.output_format.stl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]], NoneType], required=False), 'outputs': FieldInfo(annotation=Union[Dict[str, kittycad.models.base64data.Base64Data], NoneType], required=False), 'src_format': FieldInfo(annotation=FileImportFormat, required=True), 'src_format_options': FieldInfo(annotation=Union[RootModel[Annotated[Union[kittycad.models.input_format.fbx, kittycad.models.input_format.gltf, kittycad.models.input_format.obj, kittycad.models.input_format.ply, kittycad.models.input_format.sldprt, kittycad.models.input_format.step, kittycad.models.input_format.stl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]], NoneType], required=False), 'started_at': FieldInfo(annotation=Union[datetime, NoneType], required=False), 'status': FieldInfo(annotation=ApiCallStatus, required=True), 'type': FieldInfo(annotation=Literal['file_conversion'], required=False, default='file_conversion'), 'updated_at': FieldInfo(annotation=datetime, required=True), 'user_id': FieldInfo(annotation=Uuid, required=True)}[source]

Metadata about the fields defined on the model, mapping of field names to [FieldInfo][pydantic.fields.FieldInfo].

This replaces Model.__fields__ from Pydantic V1.

property model_fields_set: set[str][source]

Returns the set of fields that have been explicitly set on this model instance.

Returns:

A set of strings representing the fields that have been set,

i.e. that were not filled from defaults.

classmethod model_json_schema(by_alias=True, ref_template='#/$defs/{model}', schema_generator=<class 'pydantic.json_schema.GenerateJsonSchema'>, mode='validation')[source]

Generates a JSON schema for a model class.

Parameters:
  • by_alias (bool) – Whether to use attribute aliases or not.

  • ref_template (str) – The reference template.

  • schema_generator (type[GenerateJsonSchema]) – To override the logic used to generate the JSON schema, as a subclass of GenerateJsonSchema with your desired modifications

  • mode (Literal['validation', 'serialization']) – The mode in which to generate the schema.

Return type:

dict[str, Any]

Returns:

The JSON schema for the given model class.

classmethod model_parametrized_name(params)[source]

Compute the class name for parametrizations of generic classes.

This method can be overridden to achieve a custom naming scheme for generic BaseModels.

Parameters:

params (tuple[type[Any], ...]) – Tuple of types of the class. Given a generic class Model with 2 type variables and a concrete model Model[str, int], the value (str, int) would be passed to params.

Return type:

str

Returns:

String representing the new class where params are passed to cls as type variables.

Raises:

TypeError – Raised when trying to generate concrete names for non-generic models.

model_post_init(_BaseModel__context)[source]

Override this method to perform additional initialization after __init__ and model_construct. This is useful if you want to do some validation that requires the entire model to be initialized.

Return type:

None

classmethod model_rebuild(*, force=False, raise_errors=True, _parent_namespace_depth=2, _types_namespace=None)[source]

Try to rebuild the pydantic-core schema for the model.

This may be necessary when one of the annotations is a ForwardRef which could not be resolved during the initial attempt to build the schema, and automatic rebuilding fails.

Parameters:
  • force – Whether to force the rebuilding of the model schema, defaults to False.

  • raise_errors – Whether to raise errors, defaults to True.

  • _parent_namespace_depth – The depth level of the parent namespace, defaults to 2.

  • _types_namespace – The types namespace, defaults to None.

Returns:

Returns None if the schema is already “complete” and rebuilding was not required. If rebuilding _was_ required, returns True if rebuilding was successful, otherwise False.

classmethod model_validate(obj, *, strict=None, from_attributes=None, context=None)[source]

Validate a pydantic model instance.

Parameters:
  • obj (Any) – The object to validate.

  • strict (bool | None) – Whether to raise an exception on invalid fields.

  • from_attributes (bool | None) – Whether to extract data from object attributes.

  • context (dict[str, Any] | None) – Additional context to pass to the validator.

Raises:

ValidationError – If the object could not be validated.

Return type:

Model

Returns:

The validated model instance.

classmethod model_validate_json(json_data, *, strict=None, context=None)[source]

Usage docs: https://docs.pydantic.dev/2.5/concepts/json/#json-parsing

Validate the given JSON data against the Pydantic model.

Parameters:
  • json_data (str | bytes | bytearray) – The JSON data to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • context (dict[str, Any] | None) – Extra variables to pass to the validator.

Return type:

Model

Returns:

The validated Pydantic model.

Raises:

ValueError – If json_data is not a JSON string.

classmethod model_validate_strings(obj, *, strict=None, context=None)[source]

Validate the given object contains string data against the Pydantic model.

Parameters:
  • obj (Any) – The object contains string data to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • context (dict[str, Any] | None) – Extra variables to pass to the validator.

Return type:

Model

Returns:

The validated Pydantic model.

output_format: FileExportFormat[source]
output_format_options: Optional[stl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]][source]
outputs: Optional[Dict[str, Base64Data]][source]
classmethod parse_file(cls, path, *, content_type=None, encoding='utf8', proto=None, allow_pickle=False)[source]
Return type:

Model

classmethod parse_obj(cls, obj)[source]
Return type:

Model

classmethod parse_raw(cls, b, *, content_type=None, encoding='utf8', proto=None, allow_pickle=False)[source]
Return type:

Model

classmethod schema(cls, by_alias=True, ref_template='#/$defs/{model}')[source]
Return type:

Dict[str, Any]

classmethod schema_json(cls, *, by_alias=True, ref_template='#/$defs/{model}', **dumps_kwargs)[source]
Return type:

str

src_format: FileImportFormat[source]
src_format_options: Optional[stl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]][source]
started_at: Optional[datetime][source]
status: ApiCallStatus[source]
type: Literal['file_conversion'][source]
classmethod update_forward_refs(cls, **localns)[source]
Return type:

None

updated_at: datetime[source]
user_id: Uuid[source]
classmethod validate(cls, value)[source]
Return type:

Model

class kittycad.models.async_api_call_output.file_density(**data)[source][source]

A file density.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

__init__ uses __pydantic_self__ instead of the more common self for the first arg to allow self as a field name.

__abstractmethods__ = frozenset({})[source]
__annotations__ = {'__class_vars__': 'ClassVar[set[str]]', '__private_attributes__': 'ClassVar[dict[str, ModelPrivateAttr]]', '__pydantic_complete__': 'ClassVar[bool]', '__pydantic_core_schema__': 'ClassVar[CoreSchema]', '__pydantic_custom_init__': 'ClassVar[bool]', '__pydantic_decorators__': 'ClassVar[_decorators.DecoratorInfos]', '__pydantic_extra__': 'dict[str, Any] | None', '__pydantic_fields_set__': 'set[str]', '__pydantic_generic_metadata__': 'ClassVar[_generics.PydanticGenericMetadata]', '__pydantic_parent_namespace__': 'ClassVar[dict[str, Any] | None]', '__pydantic_post_init__': "ClassVar[None | Literal['model_post_init']]", '__pydantic_private__': 'dict[str, Any] | None', '__pydantic_root_model__': 'ClassVar[bool]', '__pydantic_serializer__': 'ClassVar[SchemaSerializer]', '__pydantic_validator__': 'ClassVar[SchemaValidator]', '__signature__': 'ClassVar[Signature]', 'completed_at': typing.Optional[datetime.datetime], 'created_at': <class 'datetime.datetime'>, 'density': typing.Optional[float], 'error': typing.Optional[str], 'id': <class 'kittycad.models.uuid.Uuid'>, 'material_mass': typing.Optional[float], 'material_mass_unit': <enum 'UnitMass'>, 'model_config': 'ClassVar[ConfigDict]', 'model_fields': 'ClassVar[dict[str, FieldInfo]]', 'output_unit': <enum 'UnitDensity'>, 'src_format': <enum 'FileImportFormat'>, 'started_at': typing.Optional[datetime.datetime], 'status': <enum 'ApiCallStatus'>, 'type': typing.Literal['file_density'], 'updated_at': <class 'datetime.datetime'>, 'user_id': <class 'kittycad.models.uuid.Uuid'>}[source]
classmethod __class_getitem__(typevar_values)[source]
__class_vars__: ClassVar[set[str]] = {}[source]
__copy__()[source]

Returns a shallow copy of the model.

Return type:

Model

__deepcopy__(memo=None)[source]

Returns a deep copy of the model.

Return type:

Model

__delattr__(item)[source]

Implement delattr(self, name).

Return type:

Any

__dict__[source]
__eq__(other)[source]

Return self==value.

Return type:

bool

__fields__ = {'completed_at': FieldInfo(annotation=Union[datetime, NoneType], required=False), 'created_at': FieldInfo(annotation=datetime, required=True), 'density': FieldInfo(annotation=Union[float, NoneType], required=False), 'error': FieldInfo(annotation=Union[str, NoneType], required=False), 'id': FieldInfo(annotation=Uuid, required=True), 'material_mass': FieldInfo(annotation=Union[float, NoneType], required=False), 'material_mass_unit': FieldInfo(annotation=UnitMass, required=True), 'output_unit': FieldInfo(annotation=UnitDensity, required=True), 'src_format': FieldInfo(annotation=FileImportFormat, required=True), 'started_at': FieldInfo(annotation=Union[datetime, NoneType], required=False), 'status': FieldInfo(annotation=ApiCallStatus, required=True), 'type': FieldInfo(annotation=Literal['file_density'], required=False, default='file_density'), 'updated_at': FieldInfo(annotation=datetime, required=True), 'user_id': FieldInfo(annotation=Uuid, required=True)}[source]
property __fields_set__: set[str][source]
classmethod __get_pydantic_core_schema__(_BaseModel__source, _BaseModel__handler)[source]

Hook into generating the model’s CoreSchema.

Parameters:
  • __source – The class we are generating a schema for. This will generally be the same as the cls argument if this is a classmethod.

  • __handler – Call into Pydantic’s internal JSON schema generation. A callable that calls into Pydantic’s internal CoreSchema generation logic.

Return type:

Union[AnySchema, NoneSchema, BoolSchema, IntSchema, FloatSchema, DecimalSchema, StringSchema, BytesSchema, DateSchema, TimeSchema, DatetimeSchema, TimedeltaSchema, LiteralSchema, IsInstanceSchema, IsSubclassSchema, CallableSchema, ListSchema, TuplePositionalSchema, TupleVariableSchema, SetSchema, FrozenSetSchema, GeneratorSchema, DictSchema, AfterValidatorFunctionSchema, BeforeValidatorFunctionSchema, WrapValidatorFunctionSchema, PlainValidatorFunctionSchema, WithDefaultSchema, NullableSchema, UnionSchema, TaggedUnionSchema, ChainSchema, LaxOrStrictSchema, JsonOrPythonSchema, TypedDictSchema, ModelFieldsSchema, ModelSchema, DataclassArgsSchema, DataclassSchema, ArgumentsSchema, CallSchema, CustomErrorSchema, JsonSchema, UrlSchema, MultiHostUrlSchema, DefinitionsSchema, DefinitionReferenceSchema, UuidSchema]

Returns:

A pydantic-core CoreSchema.

classmethod __get_pydantic_json_schema__(_BaseModel__core_schema, _BaseModel__handler)[source]

Hook into generating the model’s JSON schema.

Parameters:
  • __core_schema – A pydantic-core CoreSchema. You can ignore this argument and call the handler with a new CoreSchema, wrap this CoreSchema ({‘type’: ‘nullable’, ‘schema’: current_schema}), or just call the handler with the original schema.

  • __handler – Call into Pydantic’s internal JSON schema generation. This will raise a pydantic.errors.PydanticInvalidForJsonSchema if JSON schema generation fails. Since this gets called by BaseModel.model_json_schema you can override the schema_generator argument to that function to change JSON schema generation globally for a type.

Return type:

Dict[str, Any]

Returns:

A JSON schema, as a Python object.

__getattr__(item)[source]
Return type:

Any

__getstate__()[source]
Return type:

dict[Any, Any]

__hash__ = None[source]
__init__(**data)[source]

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

__init__ uses __pydantic_self__ instead of the more common self for the first arg to allow self as a field name.

__iter__()[source]

So dict(model) works.

Return type:

TupleGenerator

__module__ = 'kittycad.models.async_api_call_output'[source]
__pretty__(fmt, **kwargs)[source]

Used by devtools (https://python-devtools.helpmanual.io/) to pretty print objects.

Return type:

Generator[Any, None, None]

__private_attributes__: ClassVar[dict[str, ModelPrivateAttr]] = {}[source]
__pydantic_complete__: ClassVar[bool] = True[source]
__pydantic_core_schema__: ClassVar[CoreSchema] = {'cls': <class 'kittycad.models.async_api_call_output.file_density'>, 'config': {'title': 'file_density'}, 'custom_init': False, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_annotation_functions': [], 'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'kittycad.models.async_api_call_output.file_density'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.async_api_call_output.file_density'>>]}, 'ref': 'kittycad.models.async_api_call_output.file_density:93825015762816', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'completed_at': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_annotation_functions': [<bound method InnerSchemaValidator.__get_pydantic_json_schema__ of InnerSchemaValidator(core_schema={'type': 'datetime', 'microseconds_precision': 'truncate', 'metadata': {'pydantic_js_annotation_functions': [...], 'pydantic.internal.needs_apply_discriminated_union': False}}, js_schema=None, js_core_schema=None, js_schema_update=None)>]}, 'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'created_at': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'metadata': {'pydantic_js_annotation_functions': [<bound method InnerSchemaValidator.__get_pydantic_json_schema__ of InnerSchemaValidator(core_schema={'type': 'datetime', 'microseconds_precision': 'truncate', 'metadata': {'pydantic_js_annotation_functions': [...]}}, js_schema=None, js_core_schema=None, js_schema_update=None)>]}, 'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'model-field'}, 'density': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'float'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'error': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'id': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'function': {'function': <class 'kittycad.models.uuid.Uuid'>, 'type': 'no-info'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'function-after'}, 'type': 'model-field'}, 'material_mass': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'float'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'material_mass_unit': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'lax_schema': {'steps': [{'type': 'str'}, {'type': 'function-plain', 'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}}], 'type': 'chain'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_functions': [<function get_enum_core_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.unit_mass.UnitMass:93825015376752', 'strict_schema': {'json_schema': {'function': {'function': <function get_enum_core_schema.<locals>.to_enum>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'python_schema': {'cls': <enum 'UnitMass'>, 'type': 'is-instance'}, 'type': 'json-or-python'}, 'type': 'lax-or-strict'}, 'type': 'model-field'}, 'output_unit': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'lax_schema': {'steps': [{'type': 'str'}, {'type': 'function-plain', 'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}}], 'type': 'chain'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_functions': [<function get_enum_core_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.unit_density.UnitDensity:93825015375808', 'strict_schema': {'json_schema': {'function': {'function': <function get_enum_core_schema.<locals>.to_enum>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'python_schema': {'cls': <enum 'UnitDensity'>, 'type': 'is-instance'}, 'type': 'json-or-python'}, 'type': 'lax-or-strict'}, 'type': 'model-field'}, 'src_format': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'lax_schema': {'steps': [{'type': 'str'}, {'type': 'function-plain', 'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}}], 'type': 'chain'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_functions': [<function get_enum_core_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.file_import_format.FileImportFormat:93825014566080', 'strict_schema': {'json_schema': {'function': {'function': <function get_enum_core_schema.<locals>.to_enum>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'python_schema': {'cls': <enum 'FileImportFormat'>, 'type': 'is-instance'}, 'type': 'json-or-python'}, 'type': 'lax-or-strict'}, 'type': 'model-field'}, 'started_at': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_annotation_functions': [<bound method InnerSchemaValidator.__get_pydantic_json_schema__ of InnerSchemaValidator(core_schema={'type': 'datetime', 'microseconds_precision': 'truncate', 'metadata': {'pydantic_js_annotation_functions': [...], 'pydantic.internal.needs_apply_discriminated_union': False}}, js_schema=None, js_core_schema=None, js_schema_update=None)>]}, 'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'status': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'lax_schema': {'steps': [{'type': 'str'}, {'type': 'function-plain', 'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}}], 'type': 'chain'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_functions': [<function get_enum_core_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.api_call_status.ApiCallStatus:93825014051056', 'strict_schema': {'json_schema': {'function': {'function': <function get_enum_core_schema.<locals>.to_enum>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'python_schema': {'cls': <enum 'ApiCallStatus'>, 'type': 'is-instance'}, 'type': 'json-or-python'}, 'type': 'lax-or-strict'}, 'type': 'model-field'}, 'type': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': 'file_density', 'schema': {'expected': ['file_density'], 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'literal'}, 'type': 'default'}, 'type': 'model-field'}, 'updated_at': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'metadata': {'pydantic_js_annotation_functions': [<bound method InnerSchemaValidator.__get_pydantic_json_schema__ of InnerSchemaValidator(core_schema={'type': 'datetime', 'microseconds_precision': 'truncate', 'metadata': {'pydantic_js_annotation_functions': [...]}}, js_schema=None, js_core_schema=None, js_schema_update=None)>]}, 'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'model-field'}, 'user_id': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'function': {'function': <class 'kittycad.models.uuid.Uuid'>, 'type': 'no-info'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'function-after'}, 'type': 'model-field'}}, 'model_name': 'file_density', 'type': 'model-fields'}, 'type': 'model'}[source]
__pydantic_custom_init__: ClassVar[bool] = False[source]
__pydantic_decorators__: ClassVar[_decorators.DecoratorInfos] = DecoratorInfos(validators={}, field_validators={}, root_validators={}, field_serializers={}, model_serializers={}, model_validators={}, computed_fields={})[source]
__pydantic_extra__: dict[str, Any] | None[source]
__pydantic_fields_set__: set[str][source]
__pydantic_generic_metadata__: ClassVar[_generics.PydanticGenericMetadata] = {'args': (), 'origin': None, 'parameters': ()}[source]
classmethod __pydantic_init_subclass__(**kwargs)[source]

This is intended to behave just like __init_subclass__, but is called by ModelMetaclass only after the class is actually fully initialized. In particular, attributes like model_fields will be present when this is called.

This is necessary because __init_subclass__ will always be called by type.__new__, and it would require a prohibitively large refactor to the ModelMetaclass to ensure that type.__new__ was called in such a manner that the class would already be sufficiently initialized.

This will receive the same kwargs that would be passed to the standard __init_subclass__, namely, any kwargs passed to the class definition that aren’t used internally by pydantic.

Parameters:

**kwargs (Any) – Any keyword arguments passed to the class definition that aren’t used internally by pydantic.

Return type:

None

__pydantic_parent_namespace__: ClassVar[dict[str, Any] | None] = {'AiFeedback': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Annotated': <pydantic._internal._model_construction._PydanticWeakRef object>, 'ApiCallStatus': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Base64Data': <pydantic._internal._model_construction._PydanticWeakRef object>, 'BaseModel': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Dict': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Field': <pydantic._internal._model_construction._PydanticWeakRef object>, 'FileExportFormat': <pydantic._internal._model_construction._PydanticWeakRef object>, 'FileImportFormat': <pydantic._internal._model_construction._PydanticWeakRef object>, 'InputFormat': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Literal': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Optional': <pydantic._internal._model_construction._PydanticWeakRef object>, 'OutputFormat': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Point3d': <pydantic._internal._model_construction._PydanticWeakRef object>, 'RootModel': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Union': <pydantic._internal._model_construction._PydanticWeakRef object>, 'UnitArea': <pydantic._internal._model_construction._PydanticWeakRef object>, 'UnitDensity': <pydantic._internal._model_construction._PydanticWeakRef object>, 'UnitLength': <pydantic._internal._model_construction._PydanticWeakRef object>, 'UnitMass': <pydantic._internal._model_construction._PydanticWeakRef object>, 'UnitVolume': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Uuid': <pydantic._internal._model_construction._PydanticWeakRef object>, '__builtins__': {'ArithmeticError': <class 'ArithmeticError'>, 'AssertionError': <class 'AssertionError'>, 'AttributeError': <class 'AttributeError'>, 'BaseException': <class 'BaseException'>, 'BlockingIOError': <class 'BlockingIOError'>, 'BrokenPipeError': <class 'BrokenPipeError'>, 'BufferError': <class 'BufferError'>, 'BytesWarning': <class 'BytesWarning'>, 'ChildProcessError': <class 'ChildProcessError'>, 'ConnectionAbortedError': <class 'ConnectionAbortedError'>, 'ConnectionError': <class 'ConnectionError'>, 'ConnectionRefusedError': <class 'ConnectionRefusedError'>, 'ConnectionResetError': <class 'ConnectionResetError'>, 'DeprecationWarning': <class 'DeprecationWarning'>, 'EOFError': <class 'EOFError'>, 'Ellipsis': Ellipsis, 'EnvironmentError': <class 'OSError'>, 'Exception': <class 'Exception'>, 'False': False, 'FileExistsError': <class 'FileExistsError'>, 'FileNotFoundError': <class 'FileNotFoundError'>, 'FloatingPointError': <class 'FloatingPointError'>, 'FutureWarning': <class 'FutureWarning'>, 'GeneratorExit': <class 'GeneratorExit'>, 'IOError': <class 'OSError'>, 'ImportError': <class 'ImportError'>, 'ImportWarning': <class 'ImportWarning'>, 'IndentationError': <class 'IndentationError'>, 'IndexError': <class 'IndexError'>, 'InterruptedError': <class 'InterruptedError'>, 'IsADirectoryError': <class 'IsADirectoryError'>, 'KeyError': <class 'KeyError'>, 'KeyboardInterrupt': <class 'KeyboardInterrupt'>, 'LookupError': <class 'LookupError'>, 'MemoryError': <class 'MemoryError'>, 'ModuleNotFoundError': <class 'ModuleNotFoundError'>, 'NameError': <class 'NameError'>, 'None': None, 'NotADirectoryError': <class 'NotADirectoryError'>, 'NotImplemented': NotImplemented, 'NotImplementedError': <class 'NotImplementedError'>, 'OSError': <class 'OSError'>, 'OverflowError': <class 'OverflowError'>, 'PendingDeprecationWarning': <class 'PendingDeprecationWarning'>, 'PermissionError': <class 'PermissionError'>, 'ProcessLookupError': <class 'ProcessLookupError'>, 'RecursionError': <class 'RecursionError'>, 'ReferenceError': <class 'ReferenceError'>, 'ResourceWarning': <class 'ResourceWarning'>, 'RuntimeError': <class 'RuntimeError'>, 'RuntimeWarning': <class 'RuntimeWarning'>, 'StopAsyncIteration': <class 'StopAsyncIteration'>, 'StopIteration': <class 'StopIteration'>, 'SyntaxError': <class 'SyntaxError'>, 'SyntaxWarning': <class 'SyntaxWarning'>, 'SystemError': <class 'SystemError'>, 'SystemExit': <class 'SystemExit'>, 'TabError': <class 'TabError'>, 'TimeoutError': <class 'TimeoutError'>, 'True': True, 'TypeError': <class 'TypeError'>, 'UnboundLocalError': <class 'UnboundLocalError'>, 'UnicodeDecodeError': <class 'UnicodeDecodeError'>, 'UnicodeEncodeError': <class 'UnicodeEncodeError'>, 'UnicodeError': <class 'UnicodeError'>, 'UnicodeTranslateError': <class 'UnicodeTranslateError'>, 'UnicodeWarning': <class 'UnicodeWarning'>, 'UserWarning': <class 'UserWarning'>, 'ValueError': <class 'ValueError'>, 'Warning': <class 'Warning'>, 'ZeroDivisionError': <class 'ZeroDivisionError'>, '__build_class__': <built-in function __build_class__>, '__debug__': True, '__doc__': "Built-in functions, exceptions, and other objects.\n\nNoteworthy: None is the `nil' object; Ellipsis represents `...' in slices.", '__import__': <built-in function __import__>, '__loader__': <class '_frozen_importlib.BuiltinImporter'>, '__name__': 'builtins', '__package__': '', '__spec__': ModuleSpec(name='builtins', loader=<class '_frozen_importlib.BuiltinImporter'>, origin='built-in'), 'abs': <built-in function abs>, 'all': <built-in function all>, 'any': <built-in function any>, 'ascii': <built-in function ascii>, 'bin': <built-in function bin>, 'bool': <class 'bool'>, 'breakpoint': <built-in function breakpoint>, 'bytearray': <class 'bytearray'>, 'bytes': <class 'bytes'>, 'callable': <built-in function callable>, 'chr': <built-in function chr>, 'classmethod': <class 'classmethod'>, 'compile': <built-in function compile>, 'complex': <class 'complex'>, 'copyright': Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved.  Copyright (c) 2000 BeOpen.com. All Rights Reserved.  Copyright (c) 1995-2001 Corporation for National Research Initiatives. All Rights Reserved.  Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam. All Rights Reserved., 'credits':     Thanks to CWI, CNRI, BeOpen.com, Zope Corporation and a cast of thousands     for supporting Python development.  See www.python.org for more information., 'delattr': <built-in function delattr>, 'dict': <class 'dict'>, 'dir': <built-in function dir>, 'divmod': <built-in function divmod>, 'enumerate': <class 'enumerate'>, 'eval': <built-in function eval>, 'exec': <built-in function exec>, 'exit': Use exit() or Ctrl-D (i.e. EOF) to exit, 'filter': <class 'filter'>, 'float': <class 'float'>, 'format': <built-in function format>, 'frozenset': <class 'frozenset'>, 'getattr': <built-in function getattr>, 'globals': <built-in function globals>, 'hasattr': <built-in function hasattr>, 'hash': <built-in function hash>, 'help': Type help() for interactive help, or help(object) for help about object., 'hex': <built-in function hex>, 'id': <built-in function id>, 'input': <built-in function input>, 'int': <class 'int'>, 'isinstance': <built-in function isinstance>, 'issubclass': <built-in function issubclass>, 'iter': <built-in function iter>, 'len': <built-in function len>, 'license': Type license() to see the full license text, 'list': <class 'list'>, 'locals': <built-in function locals>, 'map': <class 'map'>, 'max': <built-in function max>, 'memoryview': <class 'memoryview'>, 'min': <built-in function min>, 'next': <built-in function next>, 'object': <class 'object'>, 'oct': <built-in function oct>, 'open': <built-in function open>, 'ord': <built-in function ord>, 'pow': <built-in function pow>, 'print': <built-in function print>, 'property': <class 'property'>, 'quit': Use quit() or Ctrl-D (i.e. EOF) to exit, 'range': <class 'range'>, 'repr': <built-in function repr>, 'reversed': <class 'reversed'>, 'round': <built-in function round>, 'set': <class 'set'>, 'setattr': <built-in function setattr>, 'slice': <class 'slice'>, 'sorted': <built-in function sorted>, 'staticmethod': <class 'staticmethod'>, 'str': <class 'str'>, 'sum': <built-in function sum>, 'super': <class 'super'>, 'tuple': <class 'tuple'>, 'type': <class 'type'>, 'vars': <built-in function vars>, 'zip': <class 'zip'>}, '__cached__': '/home/user/src/kittycad/models/__pycache__/async_api_call_output.cpython-39.pyc', '__doc__': <pydantic._internal._model_construction._PydanticWeakRef object>, '__file__': '/home/user/src/kittycad/models/async_api_call_output.py', '__loader__': <pydantic._internal._model_construction._PydanticWeakRef object>, '__name__': 'kittycad.models.async_api_call_output', '__package__': 'kittycad.models', '__spec__': <pydantic._internal._model_construction._PydanticWeakRef object>, 'datetime': <pydantic._internal._model_construction._PydanticWeakRef object>, 'file_center_of_mass': <pydantic._internal._model_construction._PydanticWeakRef object>, 'file_conversion': <pydantic._internal._model_construction._PydanticWeakRef object>, 'file_mass': <pydantic._internal._model_construction._PydanticWeakRef object>, 'file_volume': <pydantic._internal._model_construction._PydanticWeakRef object>}[source]
__pydantic_post_init__: ClassVar[None | Literal['model_post_init']] = None[source]
__pydantic_private__: dict[str, Any] | None[source]
__pydantic_root_model__: ClassVar[bool] = False[source]
__pydantic_serializer__: ClassVar[SchemaSerializer] = SchemaSerializer(serializer=Model(     ModelSerializer {         class: Py(             0x0000555556bc4f80,         ),         serializer: Fields(             GeneralFieldsSerializer {                 fields: {                     "output_unit": SerField {                         key_py: Py(                             0x00007fffe14f4170,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             JsonOrPython(                                 JsonOrPythonSerializer {                                     json: Str(                                         StrSerializer,                                     ),                                     python: Any(                                         AnySerializer,                                     ),                                     name: "json-or-python[json=str, python=any]",                                 },                             ),                         ),                         required: true,                     },                     "id": SerField {                         key_py: Py(                             0x00007fffff8eb3b0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Str(                                 StrSerializer,                             ),                         ),                         required: true,                     },                     "material_mass": SerField {                         key_py: Py(                             0x00007fffe14f0d30,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007ffffff85420,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Float(                                                 FloatSerializer {                                                     inf_nan_mode: Null,                                                 },                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "density": SerField {                         key_py: Py(                             0x00007ffffd5e7cf0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007ffffff85420,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Float(                                                 FloatSerializer {                                                     inf_nan_mode: Null,                                                 },                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "material_mass_unit": SerField {                         key_py: Py(                             0x00007fffe14cde40,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             JsonOrPython(                                 JsonOrPythonSerializer {                                     json: Str(                                         StrSerializer,                                     ),                                     python: Any(                                         AnySerializer,                                     ),                                     name: "json-or-python[json=str, python=any]",                                 },                             ),                         ),                         required: true,                     },                     "src_format": SerField {                         key_py: Py(                             0x00007fffe1494470,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             JsonOrPython(                                 JsonOrPythonSerializer {                                     json: Str(                                         StrSerializer,                                     ),                                     python: Any(                                         AnySerializer,                                     ),                                     name: "json-or-python[json=str, python=any]",                                 },                             ),                         ),                         required: true,                     },                     "completed_at": SerField {                         key_py: Py(                             0x00007fffe1c78a70,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007ffffff85420,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Datetime(                                                 DatetimeSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "created_at": SerField {                         key_py: Py(                             0x00007fffe12ecdf0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Datetime(                                 DatetimeSerializer,                             ),                         ),                         required: true,                     },                     "started_at": SerField {                         key_py: Py(                             0x00007fffe137cbf0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007ffffff85420,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Datetime(                                                 DatetimeSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "status": SerField {                         key_py: Py(                             0x00007fffff6e27f0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             JsonOrPython(                                 JsonOrPythonSerializer {                                     json: Str(                                         StrSerializer,                                     ),                                     python: Any(                                         AnySerializer,                                     ),                                     name: "json-or-python[json=str, python=any]",                                 },                             ),                         ),                         required: true,                     },                     "updated_at": SerField {                         key_py: Py(                             0x00007fffe137c6b0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Datetime(                                 DatetimeSerializer,                             ),                         ),                         required: true,                     },                     "error": SerField {                         key_py: Py(                             0x00007fffff904b70,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007ffffff85420,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Str(                                                 StrSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "user_id": SerField {                         key_py: Py(                             0x00007fffe137c730,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Str(                                 StrSerializer,                             ),                         ),                         required: true,                     },                     "type": SerField {                         key_py: Py(                             0x00007fffff8ebef0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fffe1c7ba70,                                         ),                                     ),                                     serializer: Literal(                                         LiteralSerializer {                                             expected_int: {},                                             expected_str: {                                                 "file_density",                                             },                                             expected_py: None,                                             name: "literal['file_density']",                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                 },                 computed_fields: Some(                     ComputedFields(                         [],                     ),                 ),                 mode: SimpleDict,                 extra_serializer: None,                 filter: SchemaFilter {                     include: None,                     exclude: None,                 },                 required_fields: 14,             },         ),         has_extra: false,         root_model: false,         name: "file_density",     }, ), definitions=[])[source]
__pydantic_validator__: ClassVar[SchemaValidator] = SchemaValidator(title="file_density", validator=Model(     ModelValidator {         revalidate: Never,         validator: ModelFields(             ModelFieldsValidator {                 fields: [                     Field {                         name: "completed_at",                         lookup_key: Simple {                             key: "completed_at",                             py_key: Py(                                 0x00007fffe1c78a70,                             ),                             path: LookupPath(                                 [                                     S(                                         "completed_at",                                         Py(                                             0x00007fffe1c78a70,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe1c78a70,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007ffffff85420,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Datetime(                                             DateTimeValidator {                                                 strict: false,                                                 constraints: None,                                                 microseconds_precision: Truncate,                                             },                                         ),                                         name: "nullable[datetime]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[datetime]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "created_at",                         lookup_key: Simple {                             key: "created_at",                             py_key: Py(                                 0x00007fffe12ecdf0,                             ),                             path: LookupPath(                                 [                                     S(                                         "created_at",                                         Py(                                             0x00007fffe12ecdf0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe12ecdf0,                         ),                         validator: Datetime(                             DateTimeValidator {                                 strict: false,                                 constraints: None,                                 microseconds_precision: Truncate,                             },                         ),                         frozen: false,                     },                     Field {                         name: "density",                         lookup_key: Simple {                             key: "density",                             py_key: Py(                                 0x00007ffffd5e7cf0,                             ),                             path: LookupPath(                                 [                                     S(                                         "density",                                         Py(                                             0x00007ffffd5e7cf0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007ffffd5e7cf0,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007ffffff85420,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Float(                                             FloatValidator {                                                 strict: false,                                                 allow_inf_nan: true,                                             },                                         ),                                         name: "nullable[float]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[float]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "error",                         lookup_key: Simple {                             key: "error",                             py_key: Py(                                 0x00007fffff904b70,                             ),                             path: LookupPath(                                 [                                     S(                                         "error",                                         Py(                                             0x00007fffff904b70,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffff904b70,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007ffffff85420,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Str(                                             StrValidator {                                                 strict: false,                                                 coerce_numbers_to_str: false,                                             },                                         ),                                         name: "nullable[str]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[str]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "id",                         lookup_key: Simple {                             key: "id",                             py_key: Py(                                 0x00007fffff8eb3b0,                             ),                             path: LookupPath(                                 [                                     S(                                         "id",                                         Py(                                             0x00007fffff8eb3b0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffff8eb3b0,                         ),                         validator: FunctionAfter(                             FunctionAfterValidator {                                 validator: Str(                                     StrValidator {                                         strict: false,                                         coerce_numbers_to_str: false,                                     },                                 ),                                 func: Py(                                     0x0000555556a23980,                                 ),                                 config: Py(                                     0x00007fffe13c9b40,                                 ),                                 name: "function-after[Uuid(), str]",                                 field_name: None,                                 info_arg: false,                             },                         ),                         frozen: false,                     },                     Field {                         name: "material_mass",                         lookup_key: Simple {                             key: "material_mass",                             py_key: Py(                                 0x00007fffe14f0d30,                             ),                             path: LookupPath(                                 [                                     S(                                         "material_mass",                                         Py(                                             0x00007fffe14f0d30,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe14f0d30,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007ffffff85420,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Float(                                             FloatValidator {                                                 strict: false,                                                 allow_inf_nan: true,                                             },                                         ),                                         name: "nullable[float]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[float]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "material_mass_unit",                         lookup_key: Simple {                             key: "material_mass_unit",                             py_key: Py(                                 0x00007fffe14cde40,                             ),                             path: LookupPath(                                 [                                     S(                                         "material_mass_unit",                                         Py(                                             0x00007fffe14cde40,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe14cde40,                         ),                         validator: LaxOrStrict(                             LaxOrStrictValidator {                                 strict: false,                                 lax_validator: Chain(                                     ChainValidator {                                         steps: [                                             Str(                                                 StrValidator {                                                     strict: false,                                                     coerce_numbers_to_str: false,                                                 },                                             ),                                             FunctionPlain(                                                 FunctionPlainValidator {                                                     func: Py(                                                         0x00007fffe142ba60,                                                     ),                                                     config: Py(                                                         0x00007fffe13c9b40,                                                     ),                                                     name: "function-plain[to_enum()]",                                                     field_name: None,                                                     info_arg: false,                                                 },                                             ),                                         ],                                         name: "chain[str,function-plain[to_enum()]]",                                     },                                 ),                                 strict_validator: JsonOrPython(                                     JsonOrPython {                                         json: FunctionAfter(                                             FunctionAfterValidator {                                                 validator: Str(                                                     StrValidator {                                                         strict: false,                                                         coerce_numbers_to_str: false,                                                     },                                                 ),                                                 func: Py(                                                     0x00007fffe142ba60,                                                 ),                                                 config: Py(                                                     0x00007fffe13c9b40,                                                 ),                                                 name: "function-after[to_enum(), str]",                                                 field_name: None,                                                 info_arg: false,                                             },                                         ),                                         python: IsInstance(                                             IsInstanceValidator {                                                 class: Py(                                                     0x0000555556b66b70,                                                 ),                                                 class_repr: "UnitMass",                                                 name: "is-instance[UnitMass]",                                             },                                         ),                                         name: "json-or-python[json=function-after[to_enum(), str],python=is-instance[UnitMass]]",                                     },                                 ),                                 name: "lax-or-strict[lax=chain[str,function-plain[to_enum()]],strict=json-or-python[json=function-after[to_enum(), str],python=is-instance[UnitMass]]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "output_unit",                         lookup_key: Simple {                             key: "output_unit",                             py_key: Py(                                 0x00007fffe14f4170,                             ),                             path: LookupPath(                                 [                                     S(                                         "output_unit",                                         Py(                                             0x00007fffe14f4170,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe14f4170,                         ),                         validator: LaxOrStrict(                             LaxOrStrictValidator {                                 strict: false,                                 lax_validator: Chain(                                     ChainValidator {                                         steps: [                                             Str(                                                 StrValidator {                                                     strict: false,                                                     coerce_numbers_to_str: false,                                                 },                                             ),                                             FunctionPlain(                                                 FunctionPlainValidator {                                                     func: Py(                                                         0x00007fffe142b820,                                                     ),                                                     config: Py(                                                         0x00007fffe13c9b40,                                                     ),                                                     name: "function-plain[to_enum()]",                                                     field_name: None,                                                     info_arg: false,                                                 },                                             ),                                         ],                                         name: "chain[str,function-plain[to_enum()]]",                                     },                                 ),                                 strict_validator: JsonOrPython(                                     JsonOrPython {                                         json: FunctionAfter(                                             FunctionAfterValidator {                                                 validator: Str(                                                     StrValidator {                                                         strict: false,                                                         coerce_numbers_to_str: false,                                                     },                                                 ),                                                 func: Py(                                                     0x00007fffe142b820,                                                 ),                                                 config: Py(                                                     0x00007fffe13c9b40,                                                 ),                                                 name: "function-after[to_enum(), str]",                                                 field_name: None,                                                 info_arg: false,                                             },                                         ),                                         python: IsInstance(                                             IsInstanceValidator {                                                 class: Py(                                                     0x0000555556b667c0,                                                 ),                                                 class_repr: "UnitDensity",                                                 name: "is-instance[UnitDensity]",                                             },                                         ),                                         name: "json-or-python[json=function-after[to_enum(), str],python=is-instance[UnitDensity]]",                                     },                                 ),                                 name: "lax-or-strict[lax=chain[str,function-plain[to_enum()]],strict=json-or-python[json=function-after[to_enum(), str],python=is-instance[UnitDensity]]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "src_format",                         lookup_key: Simple {                             key: "src_format",                             py_key: Py(                                 0x00007fffe1494470,                             ),                             path: LookupPath(                                 [                                     S(                                         "src_format",                                         Py(                                             0x00007fffe1494470,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe1494470,                         ),                         validator: LaxOrStrict(                             LaxOrStrictValidator {                                 strict: false,                                 lax_validator: Chain(                                     ChainValidator {                                         steps: [                                             Str(                                                 StrValidator {                                                     strict: false,                                                     coerce_numbers_to_str: false,                                                 },                                             ),                                             FunctionPlain(                                                 FunctionPlainValidator {                                                     func: Py(                                                         0x00007fffe142b700,                                                     ),                                                     config: Py(                                                         0x00007fffe13c9b40,                                                     ),                                                     name: "function-plain[to_enum()]",                                                     field_name: None,                                                     info_arg: false,                                                 },                                             ),                                         ],                                         name: "chain[str,function-plain[to_enum()]]",                                     },                                 ),                                 strict_validator: JsonOrPython(                                     JsonOrPython {                                         json: FunctionAfter(                                             FunctionAfterValidator {                                                 validator: Str(                                                     StrValidator {                                                         strict: false,                                                         coerce_numbers_to_str: false,                                                     },                                                 ),                                                 func: Py(                                                     0x00007fffe142b700,                                                 ),                                                 config: Py(                                                     0x00007fffe13c9b40,                                                 ),                                                 name: "function-after[to_enum(), str]",                                                 field_name: None,                                                 info_arg: false,                                             },                                         ),                                         python: IsInstance(                                             IsInstanceValidator {                                                 class: Py(                                                     0x0000555556aa0cc0,                                                 ),                                                 class_repr: "FileImportFormat",                                                 name: "is-instance[FileImportFormat]",                                             },                                         ),                                         name: "json-or-python[json=function-after[to_enum(), str],python=is-instance[FileImportFormat]]",                                     },                                 ),                                 name: "lax-or-strict[lax=chain[str,function-plain[to_enum()]],strict=json-or-python[json=function-after[to_enum(), str],python=is-instance[FileImportFormat]]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "started_at",                         lookup_key: Simple {                             key: "started_at",                             py_key: Py(                                 0x00007fffe137cbf0,                             ),                             path: LookupPath(                                 [                                     S(                                         "started_at",                                         Py(                                             0x00007fffe137cbf0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe137cbf0,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007ffffff85420,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Datetime(                                             DateTimeValidator {                                                 strict: false,                                                 constraints: None,                                                 microseconds_precision: Truncate,                                             },                                         ),                                         name: "nullable[datetime]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[datetime]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "status",                         lookup_key: Simple {                             key: "status",                             py_key: Py(                                 0x00007fffff6e27f0,                             ),                             path: LookupPath(                                 [                                     S(                                         "status",                                         Py(                                             0x00007fffff6e27f0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffff6e27f0,                         ),                         validator: LaxOrStrict(                             LaxOrStrictValidator {                                 strict: false,                                 lax_validator: Chain(                                     ChainValidator {                                         steps: [                                             Str(                                                 StrValidator {                                                     strict: false,                                                     coerce_numbers_to_str: false,                                                 },                                             ),                                             FunctionPlain(                                                 FunctionPlainValidator {                                                     func: Py(                                                         0x00007fffe13ba040,                                                     ),                                                     config: Py(                                                         0x00007fffe13c9b40,                                                     ),                                                     name: "function-plain[to_enum()]",                                                     field_name: None,                                                     info_arg: false,                                                 },                                             ),                                         ],                                         name: "chain[str,function-plain[to_enum()]]",                                     },                                 ),                                 strict_validator: JsonOrPython(                                     JsonOrPython {                                         json: FunctionAfter(                                             FunctionAfterValidator {                                                 validator: Str(                                                     StrValidator {                                                         strict: false,                                                         coerce_numbers_to_str: false,                                                     },                                                 ),                                                 func: Py(                                                     0x00007fffe13ba040,                                                 ),                                                 config: Py(                                                     0x00007fffe13c9b40,                                                 ),                                                 name: "function-after[to_enum(), str]",                                                 field_name: None,                                                 info_arg: false,                                             },                                         ),                                         python: IsInstance(                                             IsInstanceValidator {                                                 class: Py(                                                     0x0000555556a230f0,                                                 ),                                                 class_repr: "ApiCallStatus",                                                 name: "is-instance[ApiCallStatus]",                                             },                                         ),                                         name: "json-or-python[json=function-after[to_enum(), str],python=is-instance[ApiCallStatus]]",                                     },                                 ),                                 name: "lax-or-strict[lax=chain[str,function-plain[to_enum()]],strict=json-or-python[json=function-after[to_enum(), str],python=is-instance[ApiCallStatus]]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "type",                         lookup_key: Simple {                             key: "type",                             py_key: Py(                                 0x00007fffff8ebef0,                             ),                             path: LookupPath(                                 [                                     S(                                         "type",                                         Py(                                             0x00007fffff8ebef0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffff8ebef0,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fffe1c7ba70,                                     ),                                 ),                                 on_error: Raise,                                 validator: Literal(                                     LiteralValidator {                                         lookup: LiteralLookup {                                             expected_bool: None,                                             expected_int: None,                                             expected_str: Some(                                                 {                                                     "file_density": 0,                                                 },                                             ),                                             expected_py: None,                                             values: [                                                 Py(                                                     0x00007fffe1c7ba70,                                                 ),                                             ],                                         },                                         expected_repr: "'file_density'",                                         name: "literal['file_density']",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[literal['file_density']]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "updated_at",                         lookup_key: Simple {                             key: "updated_at",                             py_key: Py(                                 0x00007fffe137c6b0,                             ),                             path: LookupPath(                                 [                                     S(                                         "updated_at",                                         Py(                                             0x00007fffe137c6b0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe137c6b0,                         ),                         validator: Datetime(                             DateTimeValidator {                                 strict: false,                                 constraints: None,                                 microseconds_precision: Truncate,                             },                         ),                         frozen: false,                     },                     Field {                         name: "user_id",                         lookup_key: Simple {                             key: "user_id",                             py_key: Py(                                 0x00007fffe137c730,                             ),                             path: LookupPath(                                 [                                     S(                                         "user_id",                                         Py(                                             0x00007fffe137c730,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe137c730,                         ),                         validator: FunctionAfter(                             FunctionAfterValidator {                                 validator: Str(                                     StrValidator {                                         strict: false,                                         coerce_numbers_to_str: false,                                     },                                 ),                                 func: Py(                                     0x0000555556a23980,                                 ),                                 config: Py(                                     0x00007fffe13c9b40,                                 ),                                 name: "function-after[Uuid(), str]",                                 field_name: None,                                 info_arg: false,                             },                         ),                         frozen: false,                     },                 ],                 model_name: "file_density",                 extra_behavior: Ignore,                 extras_validator: None,                 strict: false,                 from_attributes: false,                 loc_by_alias: true,             },         ),         class: Py(             0x0000555556bc4f80,         ),         post_init: None,         frozen: false,         custom_init: false,         root_model: false,         name: "file_density",     }, ), definitions=[])[source]
__repr__()[source]

Return repr(self).

Return type:

str

__repr_args__()[source]
__repr_name__()[source]

Name of the instance’s class, used in __repr__.

Return type:

str

__repr_str__(join_str)[source]
Return type:

str

__rich_repr__()[source]

Used by Rich (https://rich.readthedocs.io/en/stable/pretty.html) to pretty print objects.

__setattr__(name, value)[source]

Implement setattr(self, name, value).

Return type:

None

__setstate__(state)[source]
Return type:

None

__signature__: ClassVar[Signature] = <Signature (*, completed_at: Optional[datetime.datetime] = None, created_at: datetime.datetime, density: Optional[float] = None, error: Optional[str] = None, id: kittycad.models.uuid.Uuid, material_mass: Optional[float] = None, material_mass_unit: kittycad.models.unit_mass.UnitMass, output_unit: kittycad.models.unit_density.UnitDensity, src_format: kittycad.models.file_import_format.FileImportFormat, started_at: Optional[datetime.datetime] = None, status: kittycad.models.api_call_status.ApiCallStatus, type: Literal['file_density'] = 'file_density', updated_at: datetime.datetime, user_id: kittycad.models.uuid.Uuid) -> None>[source]
__slots__ = ('__dict__', '__pydantic_fields_set__', '__pydantic_extra__', '__pydantic_private__')[source]
__str__()[source]

Return str(self).

Return type:

str

_abc_impl = <_abc._abc_data object>[source]
_calculate_keys(*args, **kwargs)[source]
Return type:

Any

_check_frozen(name, value)[source]
Return type:

None

_copy_and_set_values(*args, **kwargs)[source]
Return type:

Any

classmethod _get_value(cls, *args, **kwargs)[source]
Return type:

Any

_iter(*args, **kwargs)[source]
Return type:

Any

completed_at: Optional[datetime][source]
classmethod construct(cls, _fields_set=None, **values)[source]
Return type:

Model

copy(*, include=None, exclude=None, update=None, deep=False)[source]

Returns a copy of the model.

!!! warning “Deprecated”

This method is now deprecated; use model_copy instead.

If you need include or exclude, use:

`py data = self.model_dump(include=include, exclude=exclude, round_trip=True) data = {**data, **(update or {})} copied = self.model_validate(data) `

Parameters:
  • include (AbstractSetIntStr | MappingIntStrAny | None) – Optional set or mapping specifying which fields to include in the copied model.

  • exclude (AbstractSetIntStr | MappingIntStrAny | None) – Optional set or mapping specifying which fields to exclude in the copied model.

  • update (Dict[str, Any] | None) – Optional dictionary of field-value pairs to override field values in the copied model.

  • deep (bool) – If True, the values of fields that are Pydantic models will be deep copied.

Return type:

Model

Returns:

A copy of the model with included, excluded and updated fields as specified.

created_at: datetime[source]
density: Optional[float][source]
dict(*, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False)[source]
Return type:

Dict[str, Any]

error: Optional[str][source]
classmethod from_orm(cls, obj)[source]
Return type:

Model

id: Uuid[source]
json(*, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, encoder=PydanticUndefined, models_as_dict=PydanticUndefined, **dumps_kwargs)[source]
Return type:

str

material_mass: Optional[float][source]
material_mass_unit: UnitMass[source]
property model_computed_fields: dict[str, ComputedFieldInfo][source]

Get the computed fields of this model instance.

Returns:

A dictionary of computed field names and their corresponding ComputedFieldInfo objects.

model_config: ClassVar[ConfigDict] = {}[source]

Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].

classmethod model_construct(_fields_set=None, **values)[source]

Creates a new instance of the Model class with validated data.

Creates a new model setting __dict__ and __pydantic_fields_set__ from trusted or pre-validated data. Default values are respected, but no other validation is performed. Behaves as if Config.extra = ‘allow’ was set since it adds all passed values

Parameters:
  • _fields_set (set[str] | None) – The set of field names accepted for the Model instance.

  • values (Any) – Trusted or pre-validated data dictionary.

Return type:

Model

Returns:

A new instance of the Model class with validated data.

model_copy(*, update=None, deep=False)[source]

Usage docs: https://docs.pydantic.dev/2.5/concepts/serialization/#model_copy

Returns a copy of the model.

Parameters:
  • update (dict[str, Any] | None) – Values to change/add in the new model. Note: the data is not validated before creating the new model. You should trust this data.

  • deep (bool) – Set to True to make a deep copy of the model.

Return type:

Model

Returns:

New model instance.

model_dump(*, mode='python', include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, round_trip=False, warnings=True)[source]

Usage docs: https://docs.pydantic.dev/2.5/concepts/serialization/#modelmodel_dump

Generate a dictionary representation of the model, optionally specifying which fields to include or exclude.

Parameters:
  • mode – The mode in which to_python should run. If mode is ‘json’, the dictionary will only contain JSON serializable types. If mode is ‘python’, the dictionary may contain any Python objects.

  • include – A list of fields to include in the output.

  • exclude – A list of fields to exclude from the output.

  • by_alias – Whether to use the field’s alias in the dictionary key if defined.

  • exclude_unset – Whether to exclude fields that have not been explicitly set.

  • exclude_defaults – Whether to exclude fields that are set to their default value from the output.

  • exclude_none – Whether to exclude fields that have a value of None from the output.

  • round_trip – Whether to enable serialization and deserialization round-trip support.

  • warnings – Whether to log warnings when invalid fields are encountered.

Returns:

A dictionary representation of the model.

model_dump_json(*, indent=None, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, round_trip=False, warnings=True)[source]

Usage docs: https://docs.pydantic.dev/2.5/concepts/serialization/#modelmodel_dump_json

Generates a JSON representation of the model using Pydantic’s to_json method.

Parameters:
  • indent – Indentation to use in the JSON output. If None is passed, the output will be compact.

  • include – Field(s) to include in the JSON output. Can take either a string or set of strings.

  • exclude – Field(s) to exclude from the JSON output. Can take either a string or set of strings.

  • by_alias – Whether to serialize using field aliases.

  • exclude_unset – Whether to exclude fields that have not been explicitly set.

  • exclude_defaults – Whether to exclude fields that have the default value.

  • exclude_none – Whether to exclude fields that have a value of None.

  • round_trip – Whether to use serialization/deserialization between JSON and class instance.

  • warnings – Whether to show any warnings that occurred during serialization.

Returns:

A JSON string representation of the model.

property model_extra[source]

Get extra fields set during validation.

Returns:

A dictionary of extra fields, or None if config.extra is not set to “allow”.

model_fields: ClassVar[dict[str, FieldInfo]] = {'completed_at': FieldInfo(annotation=Union[datetime, NoneType], required=False), 'created_at': FieldInfo(annotation=datetime, required=True), 'density': FieldInfo(annotation=Union[float, NoneType], required=False), 'error': FieldInfo(annotation=Union[str, NoneType], required=False), 'id': FieldInfo(annotation=Uuid, required=True), 'material_mass': FieldInfo(annotation=Union[float, NoneType], required=False), 'material_mass_unit': FieldInfo(annotation=UnitMass, required=True), 'output_unit': FieldInfo(annotation=UnitDensity, required=True), 'src_format': FieldInfo(annotation=FileImportFormat, required=True), 'started_at': FieldInfo(annotation=Union[datetime, NoneType], required=False), 'status': FieldInfo(annotation=ApiCallStatus, required=True), 'type': FieldInfo(annotation=Literal['file_density'], required=False, default='file_density'), 'updated_at': FieldInfo(annotation=datetime, required=True), 'user_id': FieldInfo(annotation=Uuid, required=True)}[source]

Metadata about the fields defined on the model, mapping of field names to [FieldInfo][pydantic.fields.FieldInfo].

This replaces Model.__fields__ from Pydantic V1.

property model_fields_set: set[str][source]

Returns the set of fields that have been explicitly set on this model instance.

Returns:

A set of strings representing the fields that have been set,

i.e. that were not filled from defaults.

classmethod model_json_schema(by_alias=True, ref_template='#/$defs/{model}', schema_generator=<class 'pydantic.json_schema.GenerateJsonSchema'>, mode='validation')[source]

Generates a JSON schema for a model class.

Parameters:
  • by_alias (bool) – Whether to use attribute aliases or not.

  • ref_template (str) – The reference template.

  • schema_generator (type[GenerateJsonSchema]) – To override the logic used to generate the JSON schema, as a subclass of GenerateJsonSchema with your desired modifications

  • mode (Literal['validation', 'serialization']) – The mode in which to generate the schema.

Return type:

dict[str, Any]

Returns:

The JSON schema for the given model class.

classmethod model_parametrized_name(params)[source]

Compute the class name for parametrizations of generic classes.

This method can be overridden to achieve a custom naming scheme for generic BaseModels.

Parameters:

params (tuple[type[Any], ...]) – Tuple of types of the class. Given a generic class Model with 2 type variables and a concrete model Model[str, int], the value (str, int) would be passed to params.

Return type:

str

Returns:

String representing the new class where params are passed to cls as type variables.

Raises:

TypeError – Raised when trying to generate concrete names for non-generic models.

model_post_init(_BaseModel__context)[source]

Override this method to perform additional initialization after __init__ and model_construct. This is useful if you want to do some validation that requires the entire model to be initialized.

Return type:

None

classmethod model_rebuild(*, force=False, raise_errors=True, _parent_namespace_depth=2, _types_namespace=None)[source]

Try to rebuild the pydantic-core schema for the model.

This may be necessary when one of the annotations is a ForwardRef which could not be resolved during the initial attempt to build the schema, and automatic rebuilding fails.

Parameters:
  • force – Whether to force the rebuilding of the model schema, defaults to False.

  • raise_errors – Whether to raise errors, defaults to True.

  • _parent_namespace_depth – The depth level of the parent namespace, defaults to 2.

  • _types_namespace – The types namespace, defaults to None.

Returns:

Returns None if the schema is already “complete” and rebuilding was not required. If rebuilding _was_ required, returns True if rebuilding was successful, otherwise False.

classmethod model_validate(obj, *, strict=None, from_attributes=None, context=None)[source]

Validate a pydantic model instance.

Parameters:
  • obj (Any) – The object to validate.

  • strict (bool | None) – Whether to raise an exception on invalid fields.

  • from_attributes (bool | None) – Whether to extract data from object attributes.

  • context (dict[str, Any] | None) – Additional context to pass to the validator.

Raises:

ValidationError – If the object could not be validated.

Return type:

Model

Returns:

The validated model instance.

classmethod model_validate_json(json_data, *, strict=None, context=None)[source]

Usage docs: https://docs.pydantic.dev/2.5/concepts/json/#json-parsing

Validate the given JSON data against the Pydantic model.

Parameters:
  • json_data (str | bytes | bytearray) – The JSON data to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • context (dict[str, Any] | None) – Extra variables to pass to the validator.

Return type:

Model

Returns:

The validated Pydantic model.

Raises:

ValueError – If json_data is not a JSON string.

classmethod model_validate_strings(obj, *, strict=None, context=None)[source]

Validate the given object contains string data against the Pydantic model.

Parameters:
  • obj (Any) – The object contains string data to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • context (dict[str, Any] | None) – Extra variables to pass to the validator.

Return type:

Model

Returns:

The validated Pydantic model.

output_unit: UnitDensity[source]
classmethod parse_file(cls, path, *, content_type=None, encoding='utf8', proto=None, allow_pickle=False)[source]
Return type:

Model

classmethod parse_obj(cls, obj)[source]
Return type:

Model

classmethod parse_raw(cls, b, *, content_type=None, encoding='utf8', proto=None, allow_pickle=False)[source]
Return type:

Model

classmethod schema(cls, by_alias=True, ref_template='#/$defs/{model}')[source]
Return type:

Dict[str, Any]

classmethod schema_json(cls, *, by_alias=True, ref_template='#/$defs/{model}', **dumps_kwargs)[source]
Return type:

str

src_format: FileImportFormat[source]
started_at: Optional[datetime][source]
status: ApiCallStatus[source]
type: Literal['file_density'][source]
classmethod update_forward_refs(cls, **localns)[source]
Return type:

None

updated_at: datetime[source]
user_id: Uuid[source]
classmethod validate(cls, value)[source]
Return type:

Model

class kittycad.models.async_api_call_output.file_mass(**data)[source][source]

A file mass.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

__init__ uses __pydantic_self__ instead of the more common self for the first arg to allow self as a field name.

__abstractmethods__ = frozenset({})[source]
__annotations__ = {'__class_vars__': 'ClassVar[set[str]]', '__private_attributes__': 'ClassVar[dict[str, ModelPrivateAttr]]', '__pydantic_complete__': 'ClassVar[bool]', '__pydantic_core_schema__': 'ClassVar[CoreSchema]', '__pydantic_custom_init__': 'ClassVar[bool]', '__pydantic_decorators__': 'ClassVar[_decorators.DecoratorInfos]', '__pydantic_extra__': 'dict[str, Any] | None', '__pydantic_fields_set__': 'set[str]', '__pydantic_generic_metadata__': 'ClassVar[_generics.PydanticGenericMetadata]', '__pydantic_parent_namespace__': 'ClassVar[dict[str, Any] | None]', '__pydantic_post_init__': "ClassVar[None | Literal['model_post_init']]", '__pydantic_private__': 'dict[str, Any] | None', '__pydantic_root_model__': 'ClassVar[bool]', '__pydantic_serializer__': 'ClassVar[SchemaSerializer]', '__pydantic_validator__': 'ClassVar[SchemaValidator]', '__signature__': 'ClassVar[Signature]', 'completed_at': typing.Optional[datetime.datetime], 'created_at': <class 'datetime.datetime'>, 'error': typing.Optional[str], 'id': <class 'kittycad.models.uuid.Uuid'>, 'mass': typing.Optional[float], 'material_density': typing.Optional[float], 'material_density_unit': <enum 'UnitDensity'>, 'model_config': 'ClassVar[ConfigDict]', 'model_fields': 'ClassVar[dict[str, FieldInfo]]', 'output_unit': <enum 'UnitMass'>, 'src_format': <enum 'FileImportFormat'>, 'started_at': typing.Optional[datetime.datetime], 'status': <enum 'ApiCallStatus'>, 'type': typing.Literal['file_mass'], 'updated_at': <class 'datetime.datetime'>, 'user_id': <class 'kittycad.models.uuid.Uuid'>}[source]
classmethod __class_getitem__(typevar_values)[source]
__class_vars__: ClassVar[set[str]] = {}[source]
__copy__()[source]

Returns a shallow copy of the model.

Return type:

Model

__deepcopy__(memo=None)[source]

Returns a deep copy of the model.

Return type:

Model

__delattr__(item)[source]

Implement delattr(self, name).

Return type:

Any

__dict__[source]
__eq__(other)[source]

Return self==value.

Return type:

bool

__fields__ = {'completed_at': FieldInfo(annotation=Union[datetime, NoneType], required=False), 'created_at': FieldInfo(annotation=datetime, required=True), 'error': FieldInfo(annotation=Union[str, NoneType], required=False), 'id': FieldInfo(annotation=Uuid, required=True), 'mass': FieldInfo(annotation=Union[float, NoneType], required=False), 'material_density': FieldInfo(annotation=Union[float, NoneType], required=False), 'material_density_unit': FieldInfo(annotation=UnitDensity, required=True), 'output_unit': FieldInfo(annotation=UnitMass, required=True), 'src_format': FieldInfo(annotation=FileImportFormat, required=True), 'started_at': FieldInfo(annotation=Union[datetime, NoneType], required=False), 'status': FieldInfo(annotation=ApiCallStatus, required=True), 'type': FieldInfo(annotation=Literal['file_mass'], required=False, default='file_mass'), 'updated_at': FieldInfo(annotation=datetime, required=True), 'user_id': FieldInfo(annotation=Uuid, required=True)}[source]
property __fields_set__: set[str][source]
classmethod __get_pydantic_core_schema__(_BaseModel__source, _BaseModel__handler)[source]

Hook into generating the model’s CoreSchema.

Parameters:
  • __source – The class we are generating a schema for. This will generally be the same as the cls argument if this is a classmethod.

  • __handler – Call into Pydantic’s internal JSON schema generation. A callable that calls into Pydantic’s internal CoreSchema generation logic.

Return type:

Union[AnySchema, NoneSchema, BoolSchema, IntSchema, FloatSchema, DecimalSchema, StringSchema, BytesSchema, DateSchema, TimeSchema, DatetimeSchema, TimedeltaSchema, LiteralSchema, IsInstanceSchema, IsSubclassSchema, CallableSchema, ListSchema, TuplePositionalSchema, TupleVariableSchema, SetSchema, FrozenSetSchema, GeneratorSchema, DictSchema, AfterValidatorFunctionSchema, BeforeValidatorFunctionSchema, WrapValidatorFunctionSchema, PlainValidatorFunctionSchema, WithDefaultSchema, NullableSchema, UnionSchema, TaggedUnionSchema, ChainSchema, LaxOrStrictSchema, JsonOrPythonSchema, TypedDictSchema, ModelFieldsSchema, ModelSchema, DataclassArgsSchema, DataclassSchema, ArgumentsSchema, CallSchema, CustomErrorSchema, JsonSchema, UrlSchema, MultiHostUrlSchema, DefinitionsSchema, DefinitionReferenceSchema, UuidSchema]

Returns:

A pydantic-core CoreSchema.

classmethod __get_pydantic_json_schema__(_BaseModel__core_schema, _BaseModel__handler)[source]

Hook into generating the model’s JSON schema.

Parameters:
  • __core_schema – A pydantic-core CoreSchema. You can ignore this argument and call the handler with a new CoreSchema, wrap this CoreSchema ({‘type’: ‘nullable’, ‘schema’: current_schema}), or just call the handler with the original schema.

  • __handler – Call into Pydantic’s internal JSON schema generation. This will raise a pydantic.errors.PydanticInvalidForJsonSchema if JSON schema generation fails. Since this gets called by BaseModel.model_json_schema you can override the schema_generator argument to that function to change JSON schema generation globally for a type.

Return type:

Dict[str, Any]

Returns:

A JSON schema, as a Python object.

__getattr__(item)[source]
Return type:

Any

__getstate__()[source]
Return type:

dict[Any, Any]

__hash__ = None[source]
__init__(**data)[source]

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

__init__ uses __pydantic_self__ instead of the more common self for the first arg to allow self as a field name.

__iter__()[source]

So dict(model) works.

Return type:

TupleGenerator

__module__ = 'kittycad.models.async_api_call_output'[source]
__pretty__(fmt, **kwargs)[source]

Used by devtools (https://python-devtools.helpmanual.io/) to pretty print objects.

Return type:

Generator[Any, None, None]

__private_attributes__: ClassVar[dict[str, ModelPrivateAttr]] = {}[source]
__pydantic_complete__: ClassVar[bool] = True[source]
__pydantic_core_schema__: ClassVar[CoreSchema] = {'cls': <class 'kittycad.models.async_api_call_output.file_mass'>, 'config': {'title': 'file_mass'}, 'custom_init': False, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_annotation_functions': [], 'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'kittycad.models.async_api_call_output.file_mass'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.async_api_call_output.file_mass'>>]}, 'ref': 'kittycad.models.async_api_call_output.file_mass:93825015646480', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'completed_at': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_annotation_functions': [<bound method InnerSchemaValidator.__get_pydantic_json_schema__ of InnerSchemaValidator(core_schema={'type': 'datetime', 'microseconds_precision': 'truncate', 'metadata': {'pydantic_js_annotation_functions': [...], 'pydantic.internal.needs_apply_discriminated_union': False}}, js_schema=None, js_core_schema=None, js_schema_update=None)>]}, 'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'created_at': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'metadata': {'pydantic_js_annotation_functions': [<bound method InnerSchemaValidator.__get_pydantic_json_schema__ of InnerSchemaValidator(core_schema={'type': 'datetime', 'microseconds_precision': 'truncate', 'metadata': {'pydantic_js_annotation_functions': [...]}}, js_schema=None, js_core_schema=None, js_schema_update=None)>]}, 'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'model-field'}, 'error': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'id': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'function': {'function': <class 'kittycad.models.uuid.Uuid'>, 'type': 'no-info'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'function-after'}, 'type': 'model-field'}, 'mass': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'float'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'material_density': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'float'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'material_density_unit': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'lax_schema': {'steps': [{'type': 'str'}, {'type': 'function-plain', 'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}}], 'type': 'chain'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_functions': [<function get_enum_core_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.unit_density.UnitDensity:93825015375808', 'strict_schema': {'json_schema': {'function': {'function': <function get_enum_core_schema.<locals>.to_enum>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'python_schema': {'cls': <enum 'UnitDensity'>, 'type': 'is-instance'}, 'type': 'json-or-python'}, 'type': 'lax-or-strict'}, 'type': 'model-field'}, 'output_unit': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'lax_schema': {'steps': [{'type': 'str'}, {'type': 'function-plain', 'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}}], 'type': 'chain'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_functions': [<function get_enum_core_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.unit_mass.UnitMass:93825015376752', 'strict_schema': {'json_schema': {'function': {'function': <function get_enum_core_schema.<locals>.to_enum>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'python_schema': {'cls': <enum 'UnitMass'>, 'type': 'is-instance'}, 'type': 'json-or-python'}, 'type': 'lax-or-strict'}, 'type': 'model-field'}, 'src_format': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'lax_schema': {'steps': [{'type': 'str'}, {'type': 'function-plain', 'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}}], 'type': 'chain'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_functions': [<function get_enum_core_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.file_import_format.FileImportFormat:93825014566080', 'strict_schema': {'json_schema': {'function': {'function': <function get_enum_core_schema.<locals>.to_enum>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'python_schema': {'cls': <enum 'FileImportFormat'>, 'type': 'is-instance'}, 'type': 'json-or-python'}, 'type': 'lax-or-strict'}, 'type': 'model-field'}, 'started_at': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_annotation_functions': [<bound method InnerSchemaValidator.__get_pydantic_json_schema__ of InnerSchemaValidator(core_schema={'type': 'datetime', 'microseconds_precision': 'truncate', 'metadata': {'pydantic_js_annotation_functions': [...], 'pydantic.internal.needs_apply_discriminated_union': False}}, js_schema=None, js_core_schema=None, js_schema_update=None)>]}, 'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'status': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'lax_schema': {'steps': [{'type': 'str'}, {'type': 'function-plain', 'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}}], 'type': 'chain'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_functions': [<function get_enum_core_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.api_call_status.ApiCallStatus:93825014051056', 'strict_schema': {'json_schema': {'function': {'function': <function get_enum_core_schema.<locals>.to_enum>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'python_schema': {'cls': <enum 'ApiCallStatus'>, 'type': 'is-instance'}, 'type': 'json-or-python'}, 'type': 'lax-or-strict'}, 'type': 'model-field'}, 'type': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': 'file_mass', 'schema': {'expected': ['file_mass'], 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'literal'}, 'type': 'default'}, 'type': 'model-field'}, 'updated_at': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'metadata': {'pydantic_js_annotation_functions': [<bound method InnerSchemaValidator.__get_pydantic_json_schema__ of InnerSchemaValidator(core_schema={'type': 'datetime', 'microseconds_precision': 'truncate', 'metadata': {'pydantic_js_annotation_functions': [...]}}, js_schema=None, js_core_schema=None, js_schema_update=None)>]}, 'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'model-field'}, 'user_id': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'function': {'function': <class 'kittycad.models.uuid.Uuid'>, 'type': 'no-info'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'function-after'}, 'type': 'model-field'}}, 'model_name': 'file_mass', 'type': 'model-fields'}, 'type': 'model'}[source]
__pydantic_custom_init__: ClassVar[bool] = False[source]
__pydantic_decorators__: ClassVar[_decorators.DecoratorInfos] = DecoratorInfos(validators={}, field_validators={}, root_validators={}, field_serializers={}, model_serializers={}, model_validators={}, computed_fields={})[source]
__pydantic_extra__: dict[str, Any] | None[source]
__pydantic_fields_set__: set[str][source]
__pydantic_generic_metadata__: ClassVar[_generics.PydanticGenericMetadata] = {'args': (), 'origin': None, 'parameters': ()}[source]
classmethod __pydantic_init_subclass__(**kwargs)[source]

This is intended to behave just like __init_subclass__, but is called by ModelMetaclass only after the class is actually fully initialized. In particular, attributes like model_fields will be present when this is called.

This is necessary because __init_subclass__ will always be called by type.__new__, and it would require a prohibitively large refactor to the ModelMetaclass to ensure that type.__new__ was called in such a manner that the class would already be sufficiently initialized.

This will receive the same kwargs that would be passed to the standard __init_subclass__, namely, any kwargs passed to the class definition that aren’t used internally by pydantic.

Parameters:

**kwargs (Any) – Any keyword arguments passed to the class definition that aren’t used internally by pydantic.

Return type:

None

__pydantic_parent_namespace__: ClassVar[dict[str, Any] | None] = {'AiFeedback': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Annotated': <pydantic._internal._model_construction._PydanticWeakRef object>, 'ApiCallStatus': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Base64Data': <pydantic._internal._model_construction._PydanticWeakRef object>, 'BaseModel': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Dict': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Field': <pydantic._internal._model_construction._PydanticWeakRef object>, 'FileExportFormat': <pydantic._internal._model_construction._PydanticWeakRef object>, 'FileImportFormat': <pydantic._internal._model_construction._PydanticWeakRef object>, 'InputFormat': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Literal': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Optional': <pydantic._internal._model_construction._PydanticWeakRef object>, 'OutputFormat': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Point3d': <pydantic._internal._model_construction._PydanticWeakRef object>, 'RootModel': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Union': <pydantic._internal._model_construction._PydanticWeakRef object>, 'UnitArea': <pydantic._internal._model_construction._PydanticWeakRef object>, 'UnitDensity': <pydantic._internal._model_construction._PydanticWeakRef object>, 'UnitLength': <pydantic._internal._model_construction._PydanticWeakRef object>, 'UnitMass': <pydantic._internal._model_construction._PydanticWeakRef object>, 'UnitVolume': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Uuid': <pydantic._internal._model_construction._PydanticWeakRef object>, '__builtins__': {'ArithmeticError': <class 'ArithmeticError'>, 'AssertionError': <class 'AssertionError'>, 'AttributeError': <class 'AttributeError'>, 'BaseException': <class 'BaseException'>, 'BlockingIOError': <class 'BlockingIOError'>, 'BrokenPipeError': <class 'BrokenPipeError'>, 'BufferError': <class 'BufferError'>, 'BytesWarning': <class 'BytesWarning'>, 'ChildProcessError': <class 'ChildProcessError'>, 'ConnectionAbortedError': <class 'ConnectionAbortedError'>, 'ConnectionError': <class 'ConnectionError'>, 'ConnectionRefusedError': <class 'ConnectionRefusedError'>, 'ConnectionResetError': <class 'ConnectionResetError'>, 'DeprecationWarning': <class 'DeprecationWarning'>, 'EOFError': <class 'EOFError'>, 'Ellipsis': Ellipsis, 'EnvironmentError': <class 'OSError'>, 'Exception': <class 'Exception'>, 'False': False, 'FileExistsError': <class 'FileExistsError'>, 'FileNotFoundError': <class 'FileNotFoundError'>, 'FloatingPointError': <class 'FloatingPointError'>, 'FutureWarning': <class 'FutureWarning'>, 'GeneratorExit': <class 'GeneratorExit'>, 'IOError': <class 'OSError'>, 'ImportError': <class 'ImportError'>, 'ImportWarning': <class 'ImportWarning'>, 'IndentationError': <class 'IndentationError'>, 'IndexError': <class 'IndexError'>, 'InterruptedError': <class 'InterruptedError'>, 'IsADirectoryError': <class 'IsADirectoryError'>, 'KeyError': <class 'KeyError'>, 'KeyboardInterrupt': <class 'KeyboardInterrupt'>, 'LookupError': <class 'LookupError'>, 'MemoryError': <class 'MemoryError'>, 'ModuleNotFoundError': <class 'ModuleNotFoundError'>, 'NameError': <class 'NameError'>, 'None': None, 'NotADirectoryError': <class 'NotADirectoryError'>, 'NotImplemented': NotImplemented, 'NotImplementedError': <class 'NotImplementedError'>, 'OSError': <class 'OSError'>, 'OverflowError': <class 'OverflowError'>, 'PendingDeprecationWarning': <class 'PendingDeprecationWarning'>, 'PermissionError': <class 'PermissionError'>, 'ProcessLookupError': <class 'ProcessLookupError'>, 'RecursionError': <class 'RecursionError'>, 'ReferenceError': <class 'ReferenceError'>, 'ResourceWarning': <class 'ResourceWarning'>, 'RuntimeError': <class 'RuntimeError'>, 'RuntimeWarning': <class 'RuntimeWarning'>, 'StopAsyncIteration': <class 'StopAsyncIteration'>, 'StopIteration': <class 'StopIteration'>, 'SyntaxError': <class 'SyntaxError'>, 'SyntaxWarning': <class 'SyntaxWarning'>, 'SystemError': <class 'SystemError'>, 'SystemExit': <class 'SystemExit'>, 'TabError': <class 'TabError'>, 'TimeoutError': <class 'TimeoutError'>, 'True': True, 'TypeError': <class 'TypeError'>, 'UnboundLocalError': <class 'UnboundLocalError'>, 'UnicodeDecodeError': <class 'UnicodeDecodeError'>, 'UnicodeEncodeError': <class 'UnicodeEncodeError'>, 'UnicodeError': <class 'UnicodeError'>, 'UnicodeTranslateError': <class 'UnicodeTranslateError'>, 'UnicodeWarning': <class 'UnicodeWarning'>, 'UserWarning': <class 'UserWarning'>, 'ValueError': <class 'ValueError'>, 'Warning': <class 'Warning'>, 'ZeroDivisionError': <class 'ZeroDivisionError'>, '__build_class__': <built-in function __build_class__>, '__debug__': True, '__doc__': "Built-in functions, exceptions, and other objects.\n\nNoteworthy: None is the `nil' object; Ellipsis represents `...' in slices.", '__import__': <built-in function __import__>, '__loader__': <class '_frozen_importlib.BuiltinImporter'>, '__name__': 'builtins', '__package__': '', '__spec__': ModuleSpec(name='builtins', loader=<class '_frozen_importlib.BuiltinImporter'>, origin='built-in'), 'abs': <built-in function abs>, 'all': <built-in function all>, 'any': <built-in function any>, 'ascii': <built-in function ascii>, 'bin': <built-in function bin>, 'bool': <class 'bool'>, 'breakpoint': <built-in function breakpoint>, 'bytearray': <class 'bytearray'>, 'bytes': <class 'bytes'>, 'callable': <built-in function callable>, 'chr': <built-in function chr>, 'classmethod': <class 'classmethod'>, 'compile': <built-in function compile>, 'complex': <class 'complex'>, 'copyright': Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved.  Copyright (c) 2000 BeOpen.com. All Rights Reserved.  Copyright (c) 1995-2001 Corporation for National Research Initiatives. All Rights Reserved.  Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam. All Rights Reserved., 'credits':     Thanks to CWI, CNRI, BeOpen.com, Zope Corporation and a cast of thousands     for supporting Python development.  See www.python.org for more information., 'delattr': <built-in function delattr>, 'dict': <class 'dict'>, 'dir': <built-in function dir>, 'divmod': <built-in function divmod>, 'enumerate': <class 'enumerate'>, 'eval': <built-in function eval>, 'exec': <built-in function exec>, 'exit': Use exit() or Ctrl-D (i.e. EOF) to exit, 'filter': <class 'filter'>, 'float': <class 'float'>, 'format': <built-in function format>, 'frozenset': <class 'frozenset'>, 'getattr': <built-in function getattr>, 'globals': <built-in function globals>, 'hasattr': <built-in function hasattr>, 'hash': <built-in function hash>, 'help': Type help() for interactive help, or help(object) for help about object., 'hex': <built-in function hex>, 'id': <built-in function id>, 'input': <built-in function input>, 'int': <class 'int'>, 'isinstance': <built-in function isinstance>, 'issubclass': <built-in function issubclass>, 'iter': <built-in function iter>, 'len': <built-in function len>, 'license': Type license() to see the full license text, 'list': <class 'list'>, 'locals': <built-in function locals>, 'map': <class 'map'>, 'max': <built-in function max>, 'memoryview': <class 'memoryview'>, 'min': <built-in function min>, 'next': <built-in function next>, 'object': <class 'object'>, 'oct': <built-in function oct>, 'open': <built-in function open>, 'ord': <built-in function ord>, 'pow': <built-in function pow>, 'print': <built-in function print>, 'property': <class 'property'>, 'quit': Use quit() or Ctrl-D (i.e. EOF) to exit, 'range': <class 'range'>, 'repr': <built-in function repr>, 'reversed': <class 'reversed'>, 'round': <built-in function round>, 'set': <class 'set'>, 'setattr': <built-in function setattr>, 'slice': <class 'slice'>, 'sorted': <built-in function sorted>, 'staticmethod': <class 'staticmethod'>, 'str': <class 'str'>, 'sum': <built-in function sum>, 'super': <class 'super'>, 'tuple': <class 'tuple'>, 'type': <class 'type'>, 'vars': <built-in function vars>, 'zip': <class 'zip'>}, '__cached__': '/home/user/src/kittycad/models/__pycache__/async_api_call_output.cpython-39.pyc', '__doc__': <pydantic._internal._model_construction._PydanticWeakRef object>, '__file__': '/home/user/src/kittycad/models/async_api_call_output.py', '__loader__': <pydantic._internal._model_construction._PydanticWeakRef object>, '__name__': 'kittycad.models.async_api_call_output', '__package__': 'kittycad.models', '__spec__': <pydantic._internal._model_construction._PydanticWeakRef object>, 'datetime': <pydantic._internal._model_construction._PydanticWeakRef object>, 'file_center_of_mass': <pydantic._internal._model_construction._PydanticWeakRef object>, 'file_conversion': <pydantic._internal._model_construction._PydanticWeakRef object>}[source]
__pydantic_post_init__: ClassVar[None | Literal['model_post_init']] = None[source]
__pydantic_private__: dict[str, Any] | None[source]
__pydantic_root_model__: ClassVar[bool] = False[source]
__pydantic_serializer__: ClassVar[SchemaSerializer] = SchemaSerializer(serializer=Model(     ModelSerializer {         class: Py(             0x0000555556ba8910,         ),         serializer: Fields(             GeneralFieldsSerializer {                 fields: {                     "user_id": SerField {                         key_py: Py(                             0x00007fffe137c730,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Str(                                 StrSerializer,                             ),                         ),                         required: true,                     },                     "error": SerField {                         key_py: Py(                             0x00007fffff904b70,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007ffffff85420,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Str(                                                 StrSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "started_at": SerField {                         key_py: Py(                             0x00007fffe137cbf0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007ffffff85420,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Datetime(                                                 DatetimeSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "material_density": SerField {                         key_py: Py(                             0x00007fffe14cdee0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007ffffff85420,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Float(                                                 FloatSerializer {                                                     inf_nan_mode: Null,                                                 },                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "completed_at": SerField {                         key_py: Py(                             0x00007fffe1c78a70,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007ffffff85420,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Datetime(                                                 DatetimeSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "output_unit": SerField {                         key_py: Py(                             0x00007fffe14f4170,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             JsonOrPython(                                 JsonOrPythonSerializer {                                     json: Str(                                         StrSerializer,                                     ),                                     python: Any(                                         AnySerializer,                                     ),                                     name: "json-or-python[json=str, python=any]",                                 },                             ),                         ),                         required: true,                     },                     "type": SerField {                         key_py: Py(                             0x00007fffff8ebef0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fffe1c7b1b0,                                         ),                                     ),                                     serializer: Literal(                                         LiteralSerializer {                                             expected_int: {},                                             expected_str: {                                                 "file_mass",                                             },                                             expected_py: None,                                             name: "literal['file_mass']",                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "mass": SerField {                         key_py: Py(                             0x00007fffe1c7b870,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007ffffff85420,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Float(                                                 FloatSerializer {                                                     inf_nan_mode: Null,                                                 },                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "status": SerField {                         key_py: Py(                             0x00007fffff6e27f0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             JsonOrPython(                                 JsonOrPythonSerializer {                                     json: Str(                                         StrSerializer,                                     ),                                     python: Any(                                         AnySerializer,                                     ),                                     name: "json-or-python[json=str, python=any]",                                 },                             ),                         ),                         required: true,                     },                     "src_format": SerField {                         key_py: Py(                             0x00007fffe1494470,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             JsonOrPython(                                 JsonOrPythonSerializer {                                     json: Str(                                         StrSerializer,                                     ),                                     python: Any(                                         AnySerializer,                                     ),                                     name: "json-or-python[json=str, python=any]",                                 },                             ),                         ),                         required: true,                     },                     "updated_at": SerField {                         key_py: Py(                             0x00007fffe137c6b0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Datetime(                                 DatetimeSerializer,                             ),                         ),                         required: true,                     },                     "created_at": SerField {                         key_py: Py(                             0x00007fffe12ecdf0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Datetime(                                 DatetimeSerializer,                             ),                         ),                         required: true,                     },                     "id": SerField {                         key_py: Py(                             0x00007fffff8eb3b0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Str(                                 StrSerializer,                             ),                         ),                         required: true,                     },                     "material_density_unit": SerField {                         key_py: Py(                             0x00007fffe14cde90,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             JsonOrPython(                                 JsonOrPythonSerializer {                                     json: Str(                                         StrSerializer,                                     ),                                     python: Any(                                         AnySerializer,                                     ),                                     name: "json-or-python[json=str, python=any]",                                 },                             ),                         ),                         required: true,                     },                 },                 computed_fields: Some(                     ComputedFields(                         [],                     ),                 ),                 mode: SimpleDict,                 extra_serializer: None,                 filter: SchemaFilter {                     include: None,                     exclude: None,                 },                 required_fields: 14,             },         ),         has_extra: false,         root_model: false,         name: "file_mass",     }, ), definitions=[])[source]
__pydantic_validator__: ClassVar[SchemaValidator] = SchemaValidator(title="file_mass", validator=Model(     ModelValidator {         revalidate: Never,         validator: ModelFields(             ModelFieldsValidator {                 fields: [                     Field {                         name: "completed_at",                         lookup_key: Simple {                             key: "completed_at",                             py_key: Py(                                 0x00007fffe1c78a70,                             ),                             path: LookupPath(                                 [                                     S(                                         "completed_at",                                         Py(                                             0x00007fffe1c78a70,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe1c78a70,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007ffffff85420,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Datetime(                                             DateTimeValidator {                                                 strict: false,                                                 constraints: None,                                                 microseconds_precision: Truncate,                                             },                                         ),                                         name: "nullable[datetime]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[datetime]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "created_at",                         lookup_key: Simple {                             key: "created_at",                             py_key: Py(                                 0x00007fffe12ecdf0,                             ),                             path: LookupPath(                                 [                                     S(                                         "created_at",                                         Py(                                             0x00007fffe12ecdf0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe12ecdf0,                         ),                         validator: Datetime(                             DateTimeValidator {                                 strict: false,                                 constraints: None,                                 microseconds_precision: Truncate,                             },                         ),                         frozen: false,                     },                     Field {                         name: "error",                         lookup_key: Simple {                             key: "error",                             py_key: Py(                                 0x00007fffff904b70,                             ),                             path: LookupPath(                                 [                                     S(                                         "error",                                         Py(                                             0x00007fffff904b70,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffff904b70,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007ffffff85420,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Str(                                             StrValidator {                                                 strict: false,                                                 coerce_numbers_to_str: false,                                             },                                         ),                                         name: "nullable[str]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[str]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "id",                         lookup_key: Simple {                             key: "id",                             py_key: Py(                                 0x00007fffff8eb3b0,                             ),                             path: LookupPath(                                 [                                     S(                                         "id",                                         Py(                                             0x00007fffff8eb3b0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffff8eb3b0,                         ),                         validator: FunctionAfter(                             FunctionAfterValidator {                                 validator: Str(                                     StrValidator {                                         strict: false,                                         coerce_numbers_to_str: false,                                     },                                 ),                                 func: Py(                                     0x0000555556a23980,                                 ),                                 config: Py(                                     0x00007fffe1428940,                                 ),                                 name: "function-after[Uuid(), str]",                                 field_name: None,                                 info_arg: false,                             },                         ),                         frozen: false,                     },                     Field {                         name: "mass",                         lookup_key: Simple {                             key: "mass",                             py_key: Py(                                 0x00007fffe1c7b870,                             ),                             path: LookupPath(                                 [                                     S(                                         "mass",                                         Py(                                             0x00007fffe1c7b870,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe1c7b870,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007ffffff85420,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Float(                                             FloatValidator {                                                 strict: false,                                                 allow_inf_nan: true,                                             },                                         ),                                         name: "nullable[float]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[float]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "material_density",                         lookup_key: Simple {                             key: "material_density",                             py_key: Py(                                 0x00007fffe14cdee0,                             ),                             path: LookupPath(                                 [                                     S(                                         "material_density",                                         Py(                                             0x00007fffe14cdee0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe14cdee0,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007ffffff85420,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Float(                                             FloatValidator {                                                 strict: false,                                                 allow_inf_nan: true,                                             },                                         ),                                         name: "nullable[float]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[float]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "material_density_unit",                         lookup_key: Simple {                             key: "material_density_unit",                             py_key: Py(                                 0x00007fffe14cde90,                             ),                             path: LookupPath(                                 [                                     S(                                         "material_density_unit",                                         Py(                                             0x00007fffe14cde90,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe14cde90,                         ),                         validator: LaxOrStrict(                             LaxOrStrictValidator {                                 strict: false,                                 lax_validator: Chain(                                     ChainValidator {                                         steps: [                                             Str(                                                 StrValidator {                                                     strict: false,                                                     coerce_numbers_to_str: false,                                                 },                                             ),                                             FunctionPlain(                                                 FunctionPlainValidator {                                                     func: Py(                                                         0x00007fffe1418280,                                                     ),                                                     config: Py(                                                         0x00007fffe1428940,                                                     ),                                                     name: "function-plain[to_enum()]",                                                     field_name: None,                                                     info_arg: false,                                                 },                                             ),                                         ],                                         name: "chain[str,function-plain[to_enum()]]",                                     },                                 ),                                 strict_validator: JsonOrPython(                                     JsonOrPython {                                         json: FunctionAfter(                                             FunctionAfterValidator {                                                 validator: Str(                                                     StrValidator {                                                         strict: false,                                                         coerce_numbers_to_str: false,                                                     },                                                 ),                                                 func: Py(                                                     0x00007fffe1418280,                                                 ),                                                 config: Py(                                                     0x00007fffe1428940,                                                 ),                                                 name: "function-after[to_enum(), str]",                                                 field_name: None,                                                 info_arg: false,                                             },                                         ),                                         python: IsInstance(                                             IsInstanceValidator {                                                 class: Py(                                                     0x0000555556b667c0,                                                 ),                                                 class_repr: "UnitDensity",                                                 name: "is-instance[UnitDensity]",                                             },                                         ),                                         name: "json-or-python[json=function-after[to_enum(), str],python=is-instance[UnitDensity]]",                                     },                                 ),                                 name: "lax-or-strict[lax=chain[str,function-plain[to_enum()]],strict=json-or-python[json=function-after[to_enum(), str],python=is-instance[UnitDensity]]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "output_unit",                         lookup_key: Simple {                             key: "output_unit",                             py_key: Py(                                 0x00007fffe14f4170,                             ),                             path: LookupPath(                                 [                                     S(                                         "output_unit",                                         Py(                                             0x00007fffe14f4170,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe14f4170,                         ),                         validator: LaxOrStrict(                             LaxOrStrictValidator {                                 strict: false,                                 lax_validator: Chain(                                     ChainValidator {                                         steps: [                                             Str(                                                 StrValidator {                                                     strict: false,                                                     coerce_numbers_to_str: false,                                                 },                                             ),                                             FunctionPlain(                                                 FunctionPlainValidator {                                                     func: Py(                                                         0x00007fffe14185e0,                                                     ),                                                     config: Py(                                                         0x00007fffe1428940,                                                     ),                                                     name: "function-plain[to_enum()]",                                                     field_name: None,                                                     info_arg: false,                                                 },                                             ),                                         ],                                         name: "chain[str,function-plain[to_enum()]]",                                     },                                 ),                                 strict_validator: JsonOrPython(                                     JsonOrPython {                                         json: FunctionAfter(                                             FunctionAfterValidator {                                                 validator: Str(                                                     StrValidator {                                                         strict: false,                                                         coerce_numbers_to_str: false,                                                     },                                                 ),                                                 func: Py(                                                     0x00007fffe14185e0,                                                 ),                                                 config: Py(                                                     0x00007fffe1428940,                                                 ),                                                 name: "function-after[to_enum(), str]",                                                 field_name: None,                                                 info_arg: false,                                             },                                         ),                                         python: IsInstance(                                             IsInstanceValidator {                                                 class: Py(                                                     0x0000555556b66b70,                                                 ),                                                 class_repr: "UnitMass",                                                 name: "is-instance[UnitMass]",                                             },                                         ),                                         name: "json-or-python[json=function-after[to_enum(), str],python=is-instance[UnitMass]]",                                     },                                 ),                                 name: "lax-or-strict[lax=chain[str,function-plain[to_enum()]],strict=json-or-python[json=function-after[to_enum(), str],python=is-instance[UnitMass]]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "src_format",                         lookup_key: Simple {                             key: "src_format",                             py_key: Py(                                 0x00007fffe1494470,                             ),                             path: LookupPath(                                 [                                     S(                                         "src_format",                                         Py(                                             0x00007fffe1494470,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe1494470,                         ),                         validator: LaxOrStrict(                             LaxOrStrictValidator {                                 strict: false,                                 lax_validator: Chain(                                     ChainValidator {                                         steps: [                                             Str(                                                 StrValidator {                                                     strict: false,                                                     coerce_numbers_to_str: false,                                                 },                                             ),                                             FunctionPlain(                                                 FunctionPlainValidator {                                                     func: Py(                                                         0x00007fffe1418790,                                                     ),                                                     config: Py(                                                         0x00007fffe1428940,                                                     ),                                                     name: "function-plain[to_enum()]",                                                     field_name: None,                                                     info_arg: false,                                                 },                                             ),                                         ],                                         name: "chain[str,function-plain[to_enum()]]",                                     },                                 ),                                 strict_validator: JsonOrPython(                                     JsonOrPython {                                         json: FunctionAfter(                                             FunctionAfterValidator {                                                 validator: Str(                                                     StrValidator {                                                         strict: false,                                                         coerce_numbers_to_str: false,                                                     },                                                 ),                                                 func: Py(                                                     0x00007fffe1418790,                                                 ),                                                 config: Py(                                                     0x00007fffe1428940,                                                 ),                                                 name: "function-after[to_enum(), str]",                                                 field_name: None,                                                 info_arg: false,                                             },                                         ),                                         python: IsInstance(                                             IsInstanceValidator {                                                 class: Py(                                                     0x0000555556aa0cc0,                                                 ),                                                 class_repr: "FileImportFormat",                                                 name: "is-instance[FileImportFormat]",                                             },                                         ),                                         name: "json-or-python[json=function-after[to_enum(), str],python=is-instance[FileImportFormat]]",                                     },                                 ),                                 name: "lax-or-strict[lax=chain[str,function-plain[to_enum()]],strict=json-or-python[json=function-after[to_enum(), str],python=is-instance[FileImportFormat]]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "started_at",                         lookup_key: Simple {                             key: "started_at",                             py_key: Py(                                 0x00007fffe137cbf0,                             ),                             path: LookupPath(                                 [                                     S(                                         "started_at",                                         Py(                                             0x00007fffe137cbf0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe137cbf0,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007ffffff85420,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Datetime(                                             DateTimeValidator {                                                 strict: false,                                                 constraints: None,                                                 microseconds_precision: Truncate,                                             },                                         ),                                         name: "nullable[datetime]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[datetime]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "status",                         lookup_key: Simple {                             key: "status",                             py_key: Py(                                 0x00007fffff6e27f0,                             ),                             path: LookupPath(                                 [                                     S(                                         "status",                                         Py(                                             0x00007fffff6e27f0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffff6e27f0,                         ),                         validator: LaxOrStrict(                             LaxOrStrictValidator {                                 strict: false,                                 lax_validator: Chain(                                     ChainValidator {                                         steps: [                                             Str(                                                 StrValidator {                                                     strict: false,                                                     coerce_numbers_to_str: false,                                                 },                                             ),                                             FunctionPlain(                                                 FunctionPlainValidator {                                                     func: Py(                                                         0x00007fffe14188b0,                                                     ),                                                     config: Py(                                                         0x00007fffe1428940,                                                     ),                                                     name: "function-plain[to_enum()]",                                                     field_name: None,                                                     info_arg: false,                                                 },                                             ),                                         ],                                         name: "chain[str,function-plain[to_enum()]]",                                     },                                 ),                                 strict_validator: JsonOrPython(                                     JsonOrPython {                                         json: FunctionAfter(                                             FunctionAfterValidator {                                                 validator: Str(                                                     StrValidator {                                                         strict: false,                                                         coerce_numbers_to_str: false,                                                     },                                                 ),                                                 func: Py(                                                     0x00007fffe14188b0,                                                 ),                                                 config: Py(                                                     0x00007fffe1428940,                                                 ),                                                 name: "function-after[to_enum(), str]",                                                 field_name: None,                                                 info_arg: false,                                             },                                         ),                                         python: IsInstance(                                             IsInstanceValidator {                                                 class: Py(                                                     0x0000555556a230f0,                                                 ),                                                 class_repr: "ApiCallStatus",                                                 name: "is-instance[ApiCallStatus]",                                             },                                         ),                                         name: "json-or-python[json=function-after[to_enum(), str],python=is-instance[ApiCallStatus]]",                                     },                                 ),                                 name: "lax-or-strict[lax=chain[str,function-plain[to_enum()]],strict=json-or-python[json=function-after[to_enum(), str],python=is-instance[ApiCallStatus]]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "type",                         lookup_key: Simple {                             key: "type",                             py_key: Py(                                 0x00007fffff8ebef0,                             ),                             path: LookupPath(                                 [                                     S(                                         "type",                                         Py(                                             0x00007fffff8ebef0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffff8ebef0,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fffe1c7b1b0,                                     ),                                 ),                                 on_error: Raise,                                 validator: Literal(                                     LiteralValidator {                                         lookup: LiteralLookup {                                             expected_bool: None,                                             expected_int: None,                                             expected_str: Some(                                                 {                                                     "file_mass": 0,                                                 },                                             ),                                             expected_py: None,                                             values: [                                                 Py(                                                     0x00007fffe1c7b1b0,                                                 ),                                             ],                                         },                                         expected_repr: "'file_mass'",                                         name: "literal['file_mass']",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[literal['file_mass']]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "updated_at",                         lookup_key: Simple {                             key: "updated_at",                             py_key: Py(                                 0x00007fffe137c6b0,                             ),                             path: LookupPath(                                 [                                     S(                                         "updated_at",                                         Py(                                             0x00007fffe137c6b0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe137c6b0,                         ),                         validator: Datetime(                             DateTimeValidator {                                 strict: false,                                 constraints: None,                                 microseconds_precision: Truncate,                             },                         ),                         frozen: false,                     },                     Field {                         name: "user_id",                         lookup_key: Simple {                             key: "user_id",                             py_key: Py(                                 0x00007fffe137c730,                             ),                             path: LookupPath(                                 [                                     S(                                         "user_id",                                         Py(                                             0x00007fffe137c730,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe137c730,                         ),                         validator: FunctionAfter(                             FunctionAfterValidator {                                 validator: Str(                                     StrValidator {                                         strict: false,                                         coerce_numbers_to_str: false,                                     },                                 ),                                 func: Py(                                     0x0000555556a23980,                                 ),                                 config: Py(                                     0x00007fffe1428940,                                 ),                                 name: "function-after[Uuid(), str]",                                 field_name: None,                                 info_arg: false,                             },                         ),                         frozen: false,                     },                 ],                 model_name: "file_mass",                 extra_behavior: Ignore,                 extras_validator: None,                 strict: false,                 from_attributes: false,                 loc_by_alias: true,             },         ),         class: Py(             0x0000555556ba8910,         ),         post_init: None,         frozen: false,         custom_init: false,         root_model: false,         name: "file_mass",     }, ), definitions=[])[source]
__repr__()[source]

Return repr(self).

Return type:

str

__repr_args__()[source]
__repr_name__()[source]

Name of the instance’s class, used in __repr__.

Return type:

str

__repr_str__(join_str)[source]
Return type:

str

__rich_repr__()[source]

Used by Rich (https://rich.readthedocs.io/en/stable/pretty.html) to pretty print objects.

__setattr__(name, value)[source]

Implement setattr(self, name, value).

Return type:

None

__setstate__(state)[source]
Return type:

None

__signature__: ClassVar[Signature] = <Signature (*, completed_at: Optional[datetime.datetime] = None, created_at: datetime.datetime, error: Optional[str] = None, id: kittycad.models.uuid.Uuid, mass: Optional[float] = None, material_density: Optional[float] = None, material_density_unit: kittycad.models.unit_density.UnitDensity, output_unit: kittycad.models.unit_mass.UnitMass, src_format: kittycad.models.file_import_format.FileImportFormat, started_at: Optional[datetime.datetime] = None, status: kittycad.models.api_call_status.ApiCallStatus, type: Literal['file_mass'] = 'file_mass', updated_at: datetime.datetime, user_id: kittycad.models.uuid.Uuid) -> None>[source]
__slots__ = ('__dict__', '__pydantic_fields_set__', '__pydantic_extra__', '__pydantic_private__')[source]
__str__()[source]

Return str(self).

Return type:

str

_abc_impl = <_abc._abc_data object>[source]
_calculate_keys(*args, **kwargs)[source]
Return type:

Any

_check_frozen(name, value)[source]
Return type:

None

_copy_and_set_values(*args, **kwargs)[source]
Return type:

Any

classmethod _get_value(cls, *args, **kwargs)[source]
Return type:

Any

_iter(*args, **kwargs)[source]
Return type:

Any

completed_at: Optional[datetime][source]
classmethod construct(cls, _fields_set=None, **values)[source]
Return type:

Model

copy(*, include=None, exclude=None, update=None, deep=False)[source]

Returns a copy of the model.

!!! warning “Deprecated”

This method is now deprecated; use model_copy instead.

If you need include or exclude, use:

`py data = self.model_dump(include=include, exclude=exclude, round_trip=True) data = {**data, **(update or {})} copied = self.model_validate(data) `

Parameters:
  • include (AbstractSetIntStr | MappingIntStrAny | None) – Optional set or mapping specifying which fields to include in the copied model.

  • exclude (AbstractSetIntStr | MappingIntStrAny | None) – Optional set or mapping specifying which fields to exclude in the copied model.

  • update (Dict[str, Any] | None) – Optional dictionary of field-value pairs to override field values in the copied model.

  • deep (bool) – If True, the values of fields that are Pydantic models will be deep copied.

Return type:

Model

Returns:

A copy of the model with included, excluded and updated fields as specified.

created_at: datetime[source]
dict(*, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False)[source]
Return type:

Dict[str, Any]

error: Optional[str][source]
classmethod from_orm(cls, obj)[source]
Return type:

Model

id: Uuid[source]
json(*, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, encoder=PydanticUndefined, models_as_dict=PydanticUndefined, **dumps_kwargs)[source]
Return type:

str

mass: Optional[float][source]
material_density: Optional[float][source]
material_density_unit: UnitDensity[source]
property model_computed_fields: dict[str, ComputedFieldInfo][source]

Get the computed fields of this model instance.

Returns:

A dictionary of computed field names and their corresponding ComputedFieldInfo objects.

model_config: ClassVar[ConfigDict] = {}[source]

Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].

classmethod model_construct(_fields_set=None, **values)[source]

Creates a new instance of the Model class with validated data.

Creates a new model setting __dict__ and __pydantic_fields_set__ from trusted or pre-validated data. Default values are respected, but no other validation is performed. Behaves as if Config.extra = ‘allow’ was set since it adds all passed values

Parameters:
  • _fields_set (set[str] | None) – The set of field names accepted for the Model instance.

  • values (Any) – Trusted or pre-validated data dictionary.

Return type:

Model

Returns:

A new instance of the Model class with validated data.

model_copy(*, update=None, deep=False)[source]

Usage docs: https://docs.pydantic.dev/2.5/concepts/serialization/#model_copy

Returns a copy of the model.

Parameters:
  • update (dict[str, Any] | None) – Values to change/add in the new model. Note: the data is not validated before creating the new model. You should trust this data.

  • deep (bool) – Set to True to make a deep copy of the model.

Return type:

Model

Returns:

New model instance.

model_dump(*, mode='python', include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, round_trip=False, warnings=True)[source]

Usage docs: https://docs.pydantic.dev/2.5/concepts/serialization/#modelmodel_dump

Generate a dictionary representation of the model, optionally specifying which fields to include or exclude.

Parameters:
  • mode – The mode in which to_python should run. If mode is ‘json’, the dictionary will only contain JSON serializable types. If mode is ‘python’, the dictionary may contain any Python objects.

  • include – A list of fields to include in the output.

  • exclude – A list of fields to exclude from the output.

  • by_alias – Whether to use the field’s alias in the dictionary key if defined.

  • exclude_unset – Whether to exclude fields that have not been explicitly set.

  • exclude_defaults – Whether to exclude fields that are set to their default value from the output.

  • exclude_none – Whether to exclude fields that have a value of None from the output.

  • round_trip – Whether to enable serialization and deserialization round-trip support.

  • warnings – Whether to log warnings when invalid fields are encountered.

Returns:

A dictionary representation of the model.

model_dump_json(*, indent=None, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, round_trip=False, warnings=True)[source]

Usage docs: https://docs.pydantic.dev/2.5/concepts/serialization/#modelmodel_dump_json

Generates a JSON representation of the model using Pydantic’s to_json method.

Parameters:
  • indent – Indentation to use in the JSON output. If None is passed, the output will be compact.

  • include – Field(s) to include in the JSON output. Can take either a string or set of strings.

  • exclude – Field(s) to exclude from the JSON output. Can take either a string or set of strings.

  • by_alias – Whether to serialize using field aliases.

  • exclude_unset – Whether to exclude fields that have not been explicitly set.

  • exclude_defaults – Whether to exclude fields that have the default value.

  • exclude_none – Whether to exclude fields that have a value of None.

  • round_trip – Whether to use serialization/deserialization between JSON and class instance.

  • warnings – Whether to show any warnings that occurred during serialization.

Returns:

A JSON string representation of the model.

property model_extra[source]

Get extra fields set during validation.

Returns:

A dictionary of extra fields, or None if config.extra is not set to “allow”.

model_fields: ClassVar[dict[str, FieldInfo]] = {'completed_at': FieldInfo(annotation=Union[datetime, NoneType], required=False), 'created_at': FieldInfo(annotation=datetime, required=True), 'error': FieldInfo(annotation=Union[str, NoneType], required=False), 'id': FieldInfo(annotation=Uuid, required=True), 'mass': FieldInfo(annotation=Union[float, NoneType], required=False), 'material_density': FieldInfo(annotation=Union[float, NoneType], required=False), 'material_density_unit': FieldInfo(annotation=UnitDensity, required=True), 'output_unit': FieldInfo(annotation=UnitMass, required=True), 'src_format': FieldInfo(annotation=FileImportFormat, required=True), 'started_at': FieldInfo(annotation=Union[datetime, NoneType], required=False), 'status': FieldInfo(annotation=ApiCallStatus, required=True), 'type': FieldInfo(annotation=Literal['file_mass'], required=False, default='file_mass'), 'updated_at': FieldInfo(annotation=datetime, required=True), 'user_id': FieldInfo(annotation=Uuid, required=True)}[source]

Metadata about the fields defined on the model, mapping of field names to [FieldInfo][pydantic.fields.FieldInfo].

This replaces Model.__fields__ from Pydantic V1.

property model_fields_set: set[str][source]

Returns the set of fields that have been explicitly set on this model instance.

Returns:

A set of strings representing the fields that have been set,

i.e. that were not filled from defaults.

classmethod model_json_schema(by_alias=True, ref_template='#/$defs/{model}', schema_generator=<class 'pydantic.json_schema.GenerateJsonSchema'>, mode='validation')[source]

Generates a JSON schema for a model class.

Parameters:
  • by_alias (bool) – Whether to use attribute aliases or not.

  • ref_template (str) – The reference template.

  • schema_generator (type[GenerateJsonSchema]) – To override the logic used to generate the JSON schema, as a subclass of GenerateJsonSchema with your desired modifications

  • mode (Literal['validation', 'serialization']) – The mode in which to generate the schema.

Return type:

dict[str, Any]

Returns:

The JSON schema for the given model class.

classmethod model_parametrized_name(params)[source]

Compute the class name for parametrizations of generic classes.

This method can be overridden to achieve a custom naming scheme for generic BaseModels.

Parameters:

params (tuple[type[Any], ...]) – Tuple of types of the class. Given a generic class Model with 2 type variables and a concrete model Model[str, int], the value (str, int) would be passed to params.

Return type:

str

Returns:

String representing the new class where params are passed to cls as type variables.

Raises:

TypeError – Raised when trying to generate concrete names for non-generic models.

model_post_init(_BaseModel__context)[source]

Override this method to perform additional initialization after __init__ and model_construct. This is useful if you want to do some validation that requires the entire model to be initialized.

Return type:

None

classmethod model_rebuild(*, force=False, raise_errors=True, _parent_namespace_depth=2, _types_namespace=None)[source]

Try to rebuild the pydantic-core schema for the model.

This may be necessary when one of the annotations is a ForwardRef which could not be resolved during the initial attempt to build the schema, and automatic rebuilding fails.

Parameters:
  • force – Whether to force the rebuilding of the model schema, defaults to False.

  • raise_errors – Whether to raise errors, defaults to True.

  • _parent_namespace_depth – The depth level of the parent namespace, defaults to 2.

  • _types_namespace – The types namespace, defaults to None.

Returns:

Returns None if the schema is already “complete” and rebuilding was not required. If rebuilding _was_ required, returns True if rebuilding was successful, otherwise False.

classmethod model_validate(obj, *, strict=None, from_attributes=None, context=None)[source]

Validate a pydantic model instance.

Parameters:
  • obj (Any) – The object to validate.

  • strict (bool | None) – Whether to raise an exception on invalid fields.

  • from_attributes (bool | None) – Whether to extract data from object attributes.

  • context (dict[str, Any] | None) – Additional context to pass to the validator.

Raises:

ValidationError – If the object could not be validated.

Return type:

Model

Returns:

The validated model instance.

classmethod model_validate_json(json_data, *, strict=None, context=None)[source]

Usage docs: https://docs.pydantic.dev/2.5/concepts/json/#json-parsing

Validate the given JSON data against the Pydantic model.

Parameters:
  • json_data (str | bytes | bytearray) – The JSON data to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • context (dict[str, Any] | None) – Extra variables to pass to the validator.

Return type:

Model

Returns:

The validated Pydantic model.

Raises:

ValueError – If json_data is not a JSON string.

classmethod model_validate_strings(obj, *, strict=None, context=None)[source]

Validate the given object contains string data against the Pydantic model.

Parameters:
  • obj (Any) – The object contains string data to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • context (dict[str, Any] | None) – Extra variables to pass to the validator.

Return type:

Model

Returns:

The validated Pydantic model.

output_unit: UnitMass[source]
classmethod parse_file(cls, path, *, content_type=None, encoding='utf8', proto=None, allow_pickle=False)[source]
Return type:

Model

classmethod parse_obj(cls, obj)[source]
Return type:

Model

classmethod parse_raw(cls, b, *, content_type=None, encoding='utf8', proto=None, allow_pickle=False)[source]
Return type:

Model

classmethod schema(cls, by_alias=True, ref_template='#/$defs/{model}')[source]
Return type:

Dict[str, Any]

classmethod schema_json(cls, *, by_alias=True, ref_template='#/$defs/{model}', **dumps_kwargs)[source]
Return type:

str

src_format: FileImportFormat[source]
started_at: Optional[datetime][source]
status: ApiCallStatus[source]
type: Literal['file_mass'][source]
classmethod update_forward_refs(cls, **localns)[source]
Return type:

None

updated_at: datetime[source]
user_id: Uuid[source]
classmethod validate(cls, value)[source]
Return type:

Model

class kittycad.models.async_api_call_output.file_surface_area(**data)[source][source]

A file surface area.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

__init__ uses __pydantic_self__ instead of the more common self for the first arg to allow self as a field name.

__abstractmethods__ = frozenset({})[source]
__annotations__ = {'__class_vars__': 'ClassVar[set[str]]', '__private_attributes__': 'ClassVar[dict[str, ModelPrivateAttr]]', '__pydantic_complete__': 'ClassVar[bool]', '__pydantic_core_schema__': 'ClassVar[CoreSchema]', '__pydantic_custom_init__': 'ClassVar[bool]', '__pydantic_decorators__': 'ClassVar[_decorators.DecoratorInfos]', '__pydantic_extra__': 'dict[str, Any] | None', '__pydantic_fields_set__': 'set[str]', '__pydantic_generic_metadata__': 'ClassVar[_generics.PydanticGenericMetadata]', '__pydantic_parent_namespace__': 'ClassVar[dict[str, Any] | None]', '__pydantic_post_init__': "ClassVar[None | Literal['model_post_init']]", '__pydantic_private__': 'dict[str, Any] | None', '__pydantic_root_model__': 'ClassVar[bool]', '__pydantic_serializer__': 'ClassVar[SchemaSerializer]', '__pydantic_validator__': 'ClassVar[SchemaValidator]', '__signature__': 'ClassVar[Signature]', 'completed_at': typing.Optional[datetime.datetime], 'created_at': <class 'datetime.datetime'>, 'error': typing.Optional[str], 'id': <class 'kittycad.models.uuid.Uuid'>, 'model_config': 'ClassVar[ConfigDict]', 'model_fields': 'ClassVar[dict[str, FieldInfo]]', 'output_unit': <enum 'UnitArea'>, 'src_format': <enum 'FileImportFormat'>, 'started_at': typing.Optional[datetime.datetime], 'status': <enum 'ApiCallStatus'>, 'surface_area': typing.Optional[float], 'type': typing.Literal['file_surface_area'], 'updated_at': <class 'datetime.datetime'>, 'user_id': <class 'kittycad.models.uuid.Uuid'>}[source]
classmethod __class_getitem__(typevar_values)[source]
__class_vars__: ClassVar[set[str]] = {}[source]
__copy__()[source]

Returns a shallow copy of the model.

Return type:

Model

__deepcopy__(memo=None)[source]

Returns a deep copy of the model.

Return type:

Model

__delattr__(item)[source]

Implement delattr(self, name).

Return type:

Any

__dict__[source]
__eq__(other)[source]

Return self==value.

Return type:

bool

__fields__ = {'completed_at': FieldInfo(annotation=Union[datetime, NoneType], required=False), 'created_at': FieldInfo(annotation=datetime, required=True), 'error': FieldInfo(annotation=Union[str, NoneType], required=False), 'id': FieldInfo(annotation=Uuid, required=True), 'output_unit': FieldInfo(annotation=UnitArea, required=True), 'src_format': FieldInfo(annotation=FileImportFormat, required=True), 'started_at': FieldInfo(annotation=Union[datetime, NoneType], required=False), 'status': FieldInfo(annotation=ApiCallStatus, required=True), 'surface_area': FieldInfo(annotation=Union[float, NoneType], required=False), 'type': FieldInfo(annotation=Literal['file_surface_area'], required=False, default='file_surface_area'), 'updated_at': FieldInfo(annotation=datetime, required=True), 'user_id': FieldInfo(annotation=Uuid, required=True)}[source]
property __fields_set__: set[str][source]
classmethod __get_pydantic_core_schema__(_BaseModel__source, _BaseModel__handler)[source]

Hook into generating the model’s CoreSchema.

Parameters:
  • __source – The class we are generating a schema for. This will generally be the same as the cls argument if this is a classmethod.

  • __handler – Call into Pydantic’s internal JSON schema generation. A callable that calls into Pydantic’s internal CoreSchema generation logic.

Return type:

Union[AnySchema, NoneSchema, BoolSchema, IntSchema, FloatSchema, DecimalSchema, StringSchema, BytesSchema, DateSchema, TimeSchema, DatetimeSchema, TimedeltaSchema, LiteralSchema, IsInstanceSchema, IsSubclassSchema, CallableSchema, ListSchema, TuplePositionalSchema, TupleVariableSchema, SetSchema, FrozenSetSchema, GeneratorSchema, DictSchema, AfterValidatorFunctionSchema, BeforeValidatorFunctionSchema, WrapValidatorFunctionSchema, PlainValidatorFunctionSchema, WithDefaultSchema, NullableSchema, UnionSchema, TaggedUnionSchema, ChainSchema, LaxOrStrictSchema, JsonOrPythonSchema, TypedDictSchema, ModelFieldsSchema, ModelSchema, DataclassArgsSchema, DataclassSchema, ArgumentsSchema, CallSchema, CustomErrorSchema, JsonSchema, UrlSchema, MultiHostUrlSchema, DefinitionsSchema, DefinitionReferenceSchema, UuidSchema]

Returns:

A pydantic-core CoreSchema.

classmethod __get_pydantic_json_schema__(_BaseModel__core_schema, _BaseModel__handler)[source]

Hook into generating the model’s JSON schema.

Parameters:
  • __core_schema – A pydantic-core CoreSchema. You can ignore this argument and call the handler with a new CoreSchema, wrap this CoreSchema ({‘type’: ‘nullable’, ‘schema’: current_schema}), or just call the handler with the original schema.

  • __handler – Call into Pydantic’s internal JSON schema generation. This will raise a pydantic.errors.PydanticInvalidForJsonSchema if JSON schema generation fails. Since this gets called by BaseModel.model_json_schema you can override the schema_generator argument to that function to change JSON schema generation globally for a type.

Return type:

Dict[str, Any]

Returns:

A JSON schema, as a Python object.

__getattr__(item)[source]
Return type:

Any

__getstate__()[source]
Return type:

dict[Any, Any]

__hash__ = None[source]
__init__(**data)[source]

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

__init__ uses __pydantic_self__ instead of the more common self for the first arg to allow self as a field name.

__iter__()[source]

So dict(model) works.

Return type:

TupleGenerator

__module__ = 'kittycad.models.async_api_call_output'[source]
__pretty__(fmt, **kwargs)[source]

Used by devtools (https://python-devtools.helpmanual.io/) to pretty print objects.

Return type:

Generator[Any, None, None]

__private_attributes__: ClassVar[dict[str, ModelPrivateAttr]] = {}[source]
__pydantic_complete__: ClassVar[bool] = True[source]
__pydantic_core_schema__: ClassVar[CoreSchema] = {'cls': <class 'kittycad.models.async_api_call_output.file_surface_area'>, 'config': {'title': 'file_surface_area'}, 'custom_init': False, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_annotation_functions': [], 'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'kittycad.models.async_api_call_output.file_surface_area'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.async_api_call_output.file_surface_area'>>]}, 'ref': 'kittycad.models.async_api_call_output.file_surface_area:93825015812928', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'completed_at': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_annotation_functions': [<bound method InnerSchemaValidator.__get_pydantic_json_schema__ of InnerSchemaValidator(core_schema={'type': 'datetime', 'microseconds_precision': 'truncate', 'metadata': {'pydantic_js_annotation_functions': [...], 'pydantic.internal.needs_apply_discriminated_union': False}}, js_schema=None, js_core_schema=None, js_schema_update=None)>]}, 'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'created_at': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'metadata': {'pydantic_js_annotation_functions': [<bound method InnerSchemaValidator.__get_pydantic_json_schema__ of InnerSchemaValidator(core_schema={'type': 'datetime', 'microseconds_precision': 'truncate', 'metadata': {'pydantic_js_annotation_functions': [...]}}, js_schema=None, js_core_schema=None, js_schema_update=None)>]}, 'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'model-field'}, 'error': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'id': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'function': {'function': <class 'kittycad.models.uuid.Uuid'>, 'type': 'no-info'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'function-after'}, 'type': 'model-field'}, 'output_unit': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'lax_schema': {'steps': [{'type': 'str'}, {'type': 'function-plain', 'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}}], 'type': 'chain'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_functions': [<function get_enum_core_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.unit_area.UnitArea:93825015216496', 'strict_schema': {'json_schema': {'function': {'function': <function get_enum_core_schema.<locals>.to_enum>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'python_schema': {'cls': <enum 'UnitArea'>, 'type': 'is-instance'}, 'type': 'json-or-python'}, 'type': 'lax-or-strict'}, 'type': 'model-field'}, 'src_format': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'lax_schema': {'steps': [{'type': 'str'}, {'type': 'function-plain', 'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}}], 'type': 'chain'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_functions': [<function get_enum_core_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.file_import_format.FileImportFormat:93825014566080', 'strict_schema': {'json_schema': {'function': {'function': <function get_enum_core_schema.<locals>.to_enum>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'python_schema': {'cls': <enum 'FileImportFormat'>, 'type': 'is-instance'}, 'type': 'json-or-python'}, 'type': 'lax-or-strict'}, 'type': 'model-field'}, 'started_at': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_annotation_functions': [<bound method InnerSchemaValidator.__get_pydantic_json_schema__ of InnerSchemaValidator(core_schema={'type': 'datetime', 'microseconds_precision': 'truncate', 'metadata': {'pydantic_js_annotation_functions': [...], 'pydantic.internal.needs_apply_discriminated_union': False}}, js_schema=None, js_core_schema=None, js_schema_update=None)>]}, 'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'status': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'lax_schema': {'steps': [{'type': 'str'}, {'type': 'function-plain', 'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}}], 'type': 'chain'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_functions': [<function get_enum_core_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.api_call_status.ApiCallStatus:93825014051056', 'strict_schema': {'json_schema': {'function': {'function': <function get_enum_core_schema.<locals>.to_enum>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'python_schema': {'cls': <enum 'ApiCallStatus'>, 'type': 'is-instance'}, 'type': 'json-or-python'}, 'type': 'lax-or-strict'}, 'type': 'model-field'}, 'surface_area': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'float'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'type': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': 'file_surface_area', 'schema': {'expected': ['file_surface_area'], 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'literal'}, 'type': 'default'}, 'type': 'model-field'}, 'updated_at': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'metadata': {'pydantic_js_annotation_functions': [<bound method InnerSchemaValidator.__get_pydantic_json_schema__ of InnerSchemaValidator(core_schema={'type': 'datetime', 'microseconds_precision': 'truncate', 'metadata': {'pydantic_js_annotation_functions': [...]}}, js_schema=None, js_core_schema=None, js_schema_update=None)>]}, 'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'model-field'}, 'user_id': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'function': {'function': <class 'kittycad.models.uuid.Uuid'>, 'type': 'no-info'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'function-after'}, 'type': 'model-field'}}, 'model_name': 'file_surface_area', 'type': 'model-fields'}, 'type': 'model'}[source]
__pydantic_custom_init__: ClassVar[bool] = False[source]
__pydantic_decorators__: ClassVar[_decorators.DecoratorInfos] = DecoratorInfos(validators={}, field_validators={}, root_validators={}, field_serializers={}, model_serializers={}, model_validators={}, computed_fields={})[source]
__pydantic_extra__: dict[str, Any] | None[source]
__pydantic_fields_set__: set[str][source]
__pydantic_generic_metadata__: ClassVar[_generics.PydanticGenericMetadata] = {'args': (), 'origin': None, 'parameters': ()}[source]
classmethod __pydantic_init_subclass__(**kwargs)[source]

This is intended to behave just like __init_subclass__, but is called by ModelMetaclass only after the class is actually fully initialized. In particular, attributes like model_fields will be present when this is called.

This is necessary because __init_subclass__ will always be called by type.__new__, and it would require a prohibitively large refactor to the ModelMetaclass to ensure that type.__new__ was called in such a manner that the class would already be sufficiently initialized.

This will receive the same kwargs that would be passed to the standard __init_subclass__, namely, any kwargs passed to the class definition that aren’t used internally by pydantic.

Parameters:

**kwargs (Any) – Any keyword arguments passed to the class definition that aren’t used internally by pydantic.

Return type:

None

__pydantic_parent_namespace__: ClassVar[dict[str, Any] | None] = {'AiFeedback': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Annotated': <pydantic._internal._model_construction._PydanticWeakRef object>, 'ApiCallStatus': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Base64Data': <pydantic._internal._model_construction._PydanticWeakRef object>, 'BaseModel': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Dict': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Field': <pydantic._internal._model_construction._PydanticWeakRef object>, 'FileExportFormat': <pydantic._internal._model_construction._PydanticWeakRef object>, 'FileImportFormat': <pydantic._internal._model_construction._PydanticWeakRef object>, 'InputFormat': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Literal': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Optional': <pydantic._internal._model_construction._PydanticWeakRef object>, 'OutputFormat': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Point3d': <pydantic._internal._model_construction._PydanticWeakRef object>, 'RootModel': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Union': <pydantic._internal._model_construction._PydanticWeakRef object>, 'UnitArea': <pydantic._internal._model_construction._PydanticWeakRef object>, 'UnitDensity': <pydantic._internal._model_construction._PydanticWeakRef object>, 'UnitLength': <pydantic._internal._model_construction._PydanticWeakRef object>, 'UnitMass': <pydantic._internal._model_construction._PydanticWeakRef object>, 'UnitVolume': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Uuid': <pydantic._internal._model_construction._PydanticWeakRef object>, '__builtins__': {'ArithmeticError': <class 'ArithmeticError'>, 'AssertionError': <class 'AssertionError'>, 'AttributeError': <class 'AttributeError'>, 'BaseException': <class 'BaseException'>, 'BlockingIOError': <class 'BlockingIOError'>, 'BrokenPipeError': <class 'BrokenPipeError'>, 'BufferError': <class 'BufferError'>, 'BytesWarning': <class 'BytesWarning'>, 'ChildProcessError': <class 'ChildProcessError'>, 'ConnectionAbortedError': <class 'ConnectionAbortedError'>, 'ConnectionError': <class 'ConnectionError'>, 'ConnectionRefusedError': <class 'ConnectionRefusedError'>, 'ConnectionResetError': <class 'ConnectionResetError'>, 'DeprecationWarning': <class 'DeprecationWarning'>, 'EOFError': <class 'EOFError'>, 'Ellipsis': Ellipsis, 'EnvironmentError': <class 'OSError'>, 'Exception': <class 'Exception'>, 'False': False, 'FileExistsError': <class 'FileExistsError'>, 'FileNotFoundError': <class 'FileNotFoundError'>, 'FloatingPointError': <class 'FloatingPointError'>, 'FutureWarning': <class 'FutureWarning'>, 'GeneratorExit': <class 'GeneratorExit'>, 'IOError': <class 'OSError'>, 'ImportError': <class 'ImportError'>, 'ImportWarning': <class 'ImportWarning'>, 'IndentationError': <class 'IndentationError'>, 'IndexError': <class 'IndexError'>, 'InterruptedError': <class 'InterruptedError'>, 'IsADirectoryError': <class 'IsADirectoryError'>, 'KeyError': <class 'KeyError'>, 'KeyboardInterrupt': <class 'KeyboardInterrupt'>, 'LookupError': <class 'LookupError'>, 'MemoryError': <class 'MemoryError'>, 'ModuleNotFoundError': <class 'ModuleNotFoundError'>, 'NameError': <class 'NameError'>, 'None': None, 'NotADirectoryError': <class 'NotADirectoryError'>, 'NotImplemented': NotImplemented, 'NotImplementedError': <class 'NotImplementedError'>, 'OSError': <class 'OSError'>, 'OverflowError': <class 'OverflowError'>, 'PendingDeprecationWarning': <class 'PendingDeprecationWarning'>, 'PermissionError': <class 'PermissionError'>, 'ProcessLookupError': <class 'ProcessLookupError'>, 'RecursionError': <class 'RecursionError'>, 'ReferenceError': <class 'ReferenceError'>, 'ResourceWarning': <class 'ResourceWarning'>, 'RuntimeError': <class 'RuntimeError'>, 'RuntimeWarning': <class 'RuntimeWarning'>, 'StopAsyncIteration': <class 'StopAsyncIteration'>, 'StopIteration': <class 'StopIteration'>, 'SyntaxError': <class 'SyntaxError'>, 'SyntaxWarning': <class 'SyntaxWarning'>, 'SystemError': <class 'SystemError'>, 'SystemExit': <class 'SystemExit'>, 'TabError': <class 'TabError'>, 'TimeoutError': <class 'TimeoutError'>, 'True': True, 'TypeError': <class 'TypeError'>, 'UnboundLocalError': <class 'UnboundLocalError'>, 'UnicodeDecodeError': <class 'UnicodeDecodeError'>, 'UnicodeEncodeError': <class 'UnicodeEncodeError'>, 'UnicodeError': <class 'UnicodeError'>, 'UnicodeTranslateError': <class 'UnicodeTranslateError'>, 'UnicodeWarning': <class 'UnicodeWarning'>, 'UserWarning': <class 'UserWarning'>, 'ValueError': <class 'ValueError'>, 'Warning': <class 'Warning'>, 'ZeroDivisionError': <class 'ZeroDivisionError'>, '__build_class__': <built-in function __build_class__>, '__debug__': True, '__doc__': "Built-in functions, exceptions, and other objects.\n\nNoteworthy: None is the `nil' object; Ellipsis represents `...' in slices.", '__import__': <built-in function __import__>, '__loader__': <class '_frozen_importlib.BuiltinImporter'>, '__name__': 'builtins', '__package__': '', '__spec__': ModuleSpec(name='builtins', loader=<class '_frozen_importlib.BuiltinImporter'>, origin='built-in'), 'abs': <built-in function abs>, 'all': <built-in function all>, 'any': <built-in function any>, 'ascii': <built-in function ascii>, 'bin': <built-in function bin>, 'bool': <class 'bool'>, 'breakpoint': <built-in function breakpoint>, 'bytearray': <class 'bytearray'>, 'bytes': <class 'bytes'>, 'callable': <built-in function callable>, 'chr': <built-in function chr>, 'classmethod': <class 'classmethod'>, 'compile': <built-in function compile>, 'complex': <class 'complex'>, 'copyright': Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved.  Copyright (c) 2000 BeOpen.com. All Rights Reserved.  Copyright (c) 1995-2001 Corporation for National Research Initiatives. All Rights Reserved.  Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam. All Rights Reserved., 'credits':     Thanks to CWI, CNRI, BeOpen.com, Zope Corporation and a cast of thousands     for supporting Python development.  See www.python.org for more information., 'delattr': <built-in function delattr>, 'dict': <class 'dict'>, 'dir': <built-in function dir>, 'divmod': <built-in function divmod>, 'enumerate': <class 'enumerate'>, 'eval': <built-in function eval>, 'exec': <built-in function exec>, 'exit': Use exit() or Ctrl-D (i.e. EOF) to exit, 'filter': <class 'filter'>, 'float': <class 'float'>, 'format': <built-in function format>, 'frozenset': <class 'frozenset'>, 'getattr': <built-in function getattr>, 'globals': <built-in function globals>, 'hasattr': <built-in function hasattr>, 'hash': <built-in function hash>, 'help': Type help() for interactive help, or help(object) for help about object., 'hex': <built-in function hex>, 'id': <built-in function id>, 'input': <built-in function input>, 'int': <class 'int'>, 'isinstance': <built-in function isinstance>, 'issubclass': <built-in function issubclass>, 'iter': <built-in function iter>, 'len': <built-in function len>, 'license': Type license() to see the full license text, 'list': <class 'list'>, 'locals': <built-in function locals>, 'map': <class 'map'>, 'max': <built-in function max>, 'memoryview': <class 'memoryview'>, 'min': <built-in function min>, 'next': <built-in function next>, 'object': <class 'object'>, 'oct': <built-in function oct>, 'open': <built-in function open>, 'ord': <built-in function ord>, 'pow': <built-in function pow>, 'print': <built-in function print>, 'property': <class 'property'>, 'quit': Use quit() or Ctrl-D (i.e. EOF) to exit, 'range': <class 'range'>, 'repr': <built-in function repr>, 'reversed': <class 'reversed'>, 'round': <built-in function round>, 'set': <class 'set'>, 'setattr': <built-in function setattr>, 'slice': <class 'slice'>, 'sorted': <built-in function sorted>, 'staticmethod': <class 'staticmethod'>, 'str': <class 'str'>, 'sum': <built-in function sum>, 'super': <class 'super'>, 'tuple': <class 'tuple'>, 'type': <class 'type'>, 'vars': <built-in function vars>, 'zip': <class 'zip'>}, '__cached__': '/home/user/src/kittycad/models/__pycache__/async_api_call_output.cpython-39.pyc', '__doc__': <pydantic._internal._model_construction._PydanticWeakRef object>, '__file__': '/home/user/src/kittycad/models/async_api_call_output.py', '__loader__': <pydantic._internal._model_construction._PydanticWeakRef object>, '__name__': 'kittycad.models.async_api_call_output', '__package__': 'kittycad.models', '__spec__': <pydantic._internal._model_construction._PydanticWeakRef object>, 'datetime': <pydantic._internal._model_construction._PydanticWeakRef object>, 'file_center_of_mass': <pydantic._internal._model_construction._PydanticWeakRef object>, 'file_conversion': <pydantic._internal._model_construction._PydanticWeakRef object>, 'file_density': <pydantic._internal._model_construction._PydanticWeakRef object>, 'file_mass': <pydantic._internal._model_construction._PydanticWeakRef object>, 'file_volume': <pydantic._internal._model_construction._PydanticWeakRef object>}[source]
__pydantic_post_init__: ClassVar[None | Literal['model_post_init']] = None[source]
__pydantic_private__: dict[str, Any] | None[source]
__pydantic_root_model__: ClassVar[bool] = False[source]
__pydantic_serializer__: ClassVar[SchemaSerializer] = SchemaSerializer(serializer=Model(     ModelSerializer {         class: Py(             0x0000555556bd1340,         ),         serializer: Fields(             GeneralFieldsSerializer {                 fields: {                     "completed_at": SerField {                         key_py: Py(                             0x00007fffe1c78a70,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007ffffff85420,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Datetime(                                                 DatetimeSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "surface_area": SerField {                         key_py: Py(                             0x00007fffe1c7bdb0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007ffffff85420,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Float(                                                 FloatSerializer {                                                     inf_nan_mode: Null,                                                 },                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "type": SerField {                         key_py: Py(                             0x00007fffff8ebef0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fffe1c91e90,                                         ),                                     ),                                     serializer: Literal(                                         LiteralSerializer {                                             expected_int: {},                                             expected_str: {                                                 "file_surface_area",                                             },                                             expected_py: None,                                             name: "literal['file_surface_area']",                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "id": SerField {                         key_py: Py(                             0x00007fffff8eb3b0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Str(                                 StrSerializer,                             ),                         ),                         required: true,                     },                     "src_format": SerField {                         key_py: Py(                             0x00007fffe1494470,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             JsonOrPython(                                 JsonOrPythonSerializer {                                     json: Str(                                         StrSerializer,                                     ),                                     python: Any(                                         AnySerializer,                                     ),                                     name: "json-or-python[json=str, python=any]",                                 },                             ),                         ),                         required: true,                     },                     "error": SerField {                         key_py: Py(                             0x00007fffff904b70,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007ffffff85420,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Str(                                                 StrSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "started_at": SerField {                         key_py: Py(                             0x00007fffe137cbf0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007ffffff85420,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Datetime(                                                 DatetimeSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "updated_at": SerField {                         key_py: Py(                             0x00007fffe137c6b0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Datetime(                                 DatetimeSerializer,                             ),                         ),                         required: true,                     },                     "user_id": SerField {                         key_py: Py(                             0x00007fffe137c730,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Str(                                 StrSerializer,                             ),                         ),                         required: true,                     },                     "output_unit": SerField {                         key_py: Py(                             0x00007fffe14f4170,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             JsonOrPython(                                 JsonOrPythonSerializer {                                     json: Str(                                         StrSerializer,                                     ),                                     python: Any(                                         AnySerializer,                                     ),                                     name: "json-or-python[json=str, python=any]",                                 },                             ),                         ),                         required: true,                     },                     "created_at": SerField {                         key_py: Py(                             0x00007fffe12ecdf0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Datetime(                                 DatetimeSerializer,                             ),                         ),                         required: true,                     },                     "status": SerField {                         key_py: Py(                             0x00007fffff6e27f0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             JsonOrPython(                                 JsonOrPythonSerializer {                                     json: Str(                                         StrSerializer,                                     ),                                     python: Any(                                         AnySerializer,                                     ),                                     name: "json-or-python[json=str, python=any]",                                 },                             ),                         ),                         required: true,                     },                 },                 computed_fields: Some(                     ComputedFields(                         [],                     ),                 ),                 mode: SimpleDict,                 extra_serializer: None,                 filter: SchemaFilter {                     include: None,                     exclude: None,                 },                 required_fields: 12,             },         ),         has_extra: false,         root_model: false,         name: "file_surface_area",     }, ), definitions=[])[source]
__pydantic_validator__: ClassVar[SchemaValidator] = SchemaValidator(title="file_surface_area", validator=Model(     ModelValidator {         revalidate: Never,         validator: ModelFields(             ModelFieldsValidator {                 fields: [                     Field {                         name: "completed_at",                         lookup_key: Simple {                             key: "completed_at",                             py_key: Py(                                 0x00007fffe1c78a70,                             ),                             path: LookupPath(                                 [                                     S(                                         "completed_at",                                         Py(                                             0x00007fffe1c78a70,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe1c78a70,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007ffffff85420,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Datetime(                                             DateTimeValidator {                                                 strict: false,                                                 constraints: None,                                                 microseconds_precision: Truncate,                                             },                                         ),                                         name: "nullable[datetime]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[datetime]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "created_at",                         lookup_key: Simple {                             key: "created_at",                             py_key: Py(                                 0x00007fffe12ecdf0,                             ),                             path: LookupPath(                                 [                                     S(                                         "created_at",                                         Py(                                             0x00007fffe12ecdf0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe12ecdf0,                         ),                         validator: Datetime(                             DateTimeValidator {                                 strict: false,                                 constraints: None,                                 microseconds_precision: Truncate,                             },                         ),                         frozen: false,                     },                     Field {                         name: "error",                         lookup_key: Simple {                             key: "error",                             py_key: Py(                                 0x00007fffff904b70,                             ),                             path: LookupPath(                                 [                                     S(                                         "error",                                         Py(                                             0x00007fffff904b70,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffff904b70,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007ffffff85420,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Str(                                             StrValidator {                                                 strict: false,                                                 coerce_numbers_to_str: false,                                             },                                         ),                                         name: "nullable[str]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[str]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "id",                         lookup_key: Simple {                             key: "id",                             py_key: Py(                                 0x00007fffff8eb3b0,                             ),                             path: LookupPath(                                 [                                     S(                                         "id",                                         Py(                                             0x00007fffff8eb3b0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffff8eb3b0,                         ),                         validator: FunctionAfter(                             FunctionAfterValidator {                                 validator: Str(                                     StrValidator {                                         strict: false,                                         coerce_numbers_to_str: false,                                     },                                 ),                                 func: Py(                                     0x0000555556a23980,                                 ),                                 config: Py(                                     0x00007fffe13d7ac0,                                 ),                                 name: "function-after[Uuid(), str]",                                 field_name: None,                                 info_arg: false,                             },                         ),                         frozen: false,                     },                     Field {                         name: "output_unit",                         lookup_key: Simple {                             key: "output_unit",                             py_key: Py(                                 0x00007fffe14f4170,                             ),                             path: LookupPath(                                 [                                     S(                                         "output_unit",                                         Py(                                             0x00007fffe14f4170,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe14f4170,                         ),                         validator: LaxOrStrict(                             LaxOrStrictValidator {                                 strict: false,                                 lax_validator: Chain(                                     ChainValidator {                                         steps: [                                             Str(                                                 StrValidator {                                                     strict: false,                                                     coerce_numbers_to_str: false,                                                 },                                             ),                                             FunctionPlain(                                                 FunctionPlainValidator {                                                     func: Py(                                                         0x00007fffe13bac10,                                                     ),                                                     config: Py(                                                         0x00007fffe13d7ac0,                                                     ),                                                     name: "function-plain[to_enum()]",                                                     field_name: None,                                                     info_arg: false,                                                 },                                             ),                                         ],                                         name: "chain[str,function-plain[to_enum()]]",                                     },                                 ),                                 strict_validator: JsonOrPython(                                     JsonOrPython {                                         json: FunctionAfter(                                             FunctionAfterValidator {                                                 validator: Str(                                                     StrValidator {                                                         strict: false,                                                         coerce_numbers_to_str: false,                                                     },                                                 ),                                                 func: Py(                                                     0x00007fffe13bac10,                                                 ),                                                 config: Py(                                                     0x00007fffe13d7ac0,                                                 ),                                                 name: "function-after[to_enum(), str]",                                                 field_name: None,                                                 info_arg: false,                                             },                                         ),                                         python: IsInstance(                                             IsInstanceValidator {                                                 class: Py(                                                     0x0000555556b3f970,                                                 ),                                                 class_repr: "UnitArea",                                                 name: "is-instance[UnitArea]",                                             },                                         ),                                         name: "json-or-python[json=function-after[to_enum(), str],python=is-instance[UnitArea]]",                                     },                                 ),                                 name: "lax-or-strict[lax=chain[str,function-plain[to_enum()]],strict=json-or-python[json=function-after[to_enum(), str],python=is-instance[UnitArea]]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "src_format",                         lookup_key: Simple {                             key: "src_format",                             py_key: Py(                                 0x00007fffe1494470,                             ),                             path: LookupPath(                                 [                                     S(                                         "src_format",                                         Py(                                             0x00007fffe1494470,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe1494470,                         ),                         validator: LaxOrStrict(                             LaxOrStrictValidator {                                 strict: false,                                 lax_validator: Chain(                                     ChainValidator {                                         steps: [                                             Str(                                                 StrValidator {                                                     strict: false,                                                     coerce_numbers_to_str: false,                                                 },                                             ),                                             FunctionPlain(                                                 FunctionPlainValidator {                                                     func: Py(                                                         0x00007fffe13badc0,                                                     ),                                                     config: Py(                                                         0x00007fffe13d7ac0,                                                     ),                                                     name: "function-plain[to_enum()]",                                                     field_name: None,                                                     info_arg: false,                                                 },                                             ),                                         ],                                         name: "chain[str,function-plain[to_enum()]]",                                     },                                 ),                                 strict_validator: JsonOrPython(                                     JsonOrPython {                                         json: FunctionAfter(                                             FunctionAfterValidator {                                                 validator: Str(                                                     StrValidator {                                                         strict: false,                                                         coerce_numbers_to_str: false,                                                     },                                                 ),                                                 func: Py(                                                     0x00007fffe13badc0,                                                 ),                                                 config: Py(                                                     0x00007fffe13d7ac0,                                                 ),                                                 name: "function-after[to_enum(), str]",                                                 field_name: None,                                                 info_arg: false,                                             },                                         ),                                         python: IsInstance(                                             IsInstanceValidator {                                                 class: Py(                                                     0x0000555556aa0cc0,                                                 ),                                                 class_repr: "FileImportFormat",                                                 name: "is-instance[FileImportFormat]",                                             },                                         ),                                         name: "json-or-python[json=function-after[to_enum(), str],python=is-instance[FileImportFormat]]",                                     },                                 ),                                 name: "lax-or-strict[lax=chain[str,function-plain[to_enum()]],strict=json-or-python[json=function-after[to_enum(), str],python=is-instance[FileImportFormat]]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "started_at",                         lookup_key: Simple {                             key: "started_at",                             py_key: Py(                                 0x00007fffe137cbf0,                             ),                             path: LookupPath(                                 [                                     S(                                         "started_at",                                         Py(                                             0x00007fffe137cbf0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe137cbf0,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007ffffff85420,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Datetime(                                             DateTimeValidator {                                                 strict: false,                                                 constraints: None,                                                 microseconds_precision: Truncate,                                             },                                         ),                                         name: "nullable[datetime]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[datetime]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "status",                         lookup_key: Simple {                             key: "status",                             py_key: Py(                                 0x00007fffff6e27f0,                             ),                             path: LookupPath(                                 [                                     S(                                         "status",                                         Py(                                             0x00007fffff6e27f0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffff6e27f0,                         ),                         validator: LaxOrStrict(                             LaxOrStrictValidator {                                 strict: false,                                 lax_validator: Chain(                                     ChainValidator {                                         steps: [                                             Str(                                                 StrValidator {                                                     strict: false,                                                     coerce_numbers_to_str: false,                                                 },                                             ),                                             FunctionPlain(                                                 FunctionPlainValidator {                                                     func: Py(                                                         0x00007fffe13bae50,                                                     ),                                                     config: Py(                                                         0x00007fffe13d7ac0,                                                     ),                                                     name: "function-plain[to_enum()]",                                                     field_name: None,                                                     info_arg: false,                                                 },                                             ),                                         ],                                         name: "chain[str,function-plain[to_enum()]]",                                     },                                 ),                                 strict_validator: JsonOrPython(                                     JsonOrPython {                                         json: FunctionAfter(                                             FunctionAfterValidator {                                                 validator: Str(                                                     StrValidator {                                                         strict: false,                                                         coerce_numbers_to_str: false,                                                     },                                                 ),                                                 func: Py(                                                     0x00007fffe13bae50,                                                 ),                                                 config: Py(                                                     0x00007fffe13d7ac0,                                                 ),                                                 name: "function-after[to_enum(), str]",                                                 field_name: None,                                                 info_arg: false,                                             },                                         ),                                         python: IsInstance(                                             IsInstanceValidator {                                                 class: Py(                                                     0x0000555556a230f0,                                                 ),                                                 class_repr: "ApiCallStatus",                                                 name: "is-instance[ApiCallStatus]",                                             },                                         ),                                         name: "json-or-python[json=function-after[to_enum(), str],python=is-instance[ApiCallStatus]]",                                     },                                 ),                                 name: "lax-or-strict[lax=chain[str,function-plain[to_enum()]],strict=json-or-python[json=function-after[to_enum(), str],python=is-instance[ApiCallStatus]]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "surface_area",                         lookup_key: Simple {                             key: "surface_area",                             py_key: Py(                                 0x00007fffe1c7bdb0,                             ),                             path: LookupPath(                                 [                                     S(                                         "surface_area",                                         Py(                                             0x00007fffe1c7bdb0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe1c7bdb0,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007ffffff85420,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Float(                                             FloatValidator {                                                 strict: false,                                                 allow_inf_nan: true,                                             },                                         ),                                         name: "nullable[float]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[float]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "type",                         lookup_key: Simple {                             key: "type",                             py_key: Py(                                 0x00007fffff8ebef0,                             ),                             path: LookupPath(                                 [                                     S(                                         "type",                                         Py(                                             0x00007fffff8ebef0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffff8ebef0,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fffe1c91e90,                                     ),                                 ),                                 on_error: Raise,                                 validator: Literal(                                     LiteralValidator {                                         lookup: LiteralLookup {                                             expected_bool: None,                                             expected_int: None,                                             expected_str: Some(                                                 {                                                     "file_surface_area": 0,                                                 },                                             ),                                             expected_py: None,                                             values: [                                                 Py(                                                     0x00007fffe1c91e90,                                                 ),                                             ],                                         },                                         expected_repr: "'file_surface_area'",                                         name: "literal['file_surface_area']",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[literal['file_surface_area']]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "updated_at",                         lookup_key: Simple {                             key: "updated_at",                             py_key: Py(                                 0x00007fffe137c6b0,                             ),                             path: LookupPath(                                 [                                     S(                                         "updated_at",                                         Py(                                             0x00007fffe137c6b0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe137c6b0,                         ),                         validator: Datetime(                             DateTimeValidator {                                 strict: false,                                 constraints: None,                                 microseconds_precision: Truncate,                             },                         ),                         frozen: false,                     },                     Field {                         name: "user_id",                         lookup_key: Simple {                             key: "user_id",                             py_key: Py(                                 0x00007fffe137c730,                             ),                             path: LookupPath(                                 [                                     S(                                         "user_id",                                         Py(                                             0x00007fffe137c730,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe137c730,                         ),                         validator: FunctionAfter(                             FunctionAfterValidator {                                 validator: Str(                                     StrValidator {                                         strict: false,                                         coerce_numbers_to_str: false,                                     },                                 ),                                 func: Py(                                     0x0000555556a23980,                                 ),                                 config: Py(                                     0x00007fffe13d7ac0,                                 ),                                 name: "function-after[Uuid(), str]",                                 field_name: None,                                 info_arg: false,                             },                         ),                         frozen: false,                     },                 ],                 model_name: "file_surface_area",                 extra_behavior: Ignore,                 extras_validator: None,                 strict: false,                 from_attributes: false,                 loc_by_alias: true,             },         ),         class: Py(             0x0000555556bd1340,         ),         post_init: None,         frozen: false,         custom_init: false,         root_model: false,         name: "file_surface_area",     }, ), definitions=[])[source]
__repr__()[source]

Return repr(self).

Return type:

str

__repr_args__()[source]
__repr_name__()[source]

Name of the instance’s class, used in __repr__.

Return type:

str

__repr_str__(join_str)[source]
Return type:

str

__rich_repr__()[source]

Used by Rich (https://rich.readthedocs.io/en/stable/pretty.html) to pretty print objects.

__setattr__(name, value)[source]

Implement setattr(self, name, value).

Return type:

None

__setstate__(state)[source]
Return type:

None

__signature__: ClassVar[Signature] = <Signature (*, completed_at: Optional[datetime.datetime] = None, created_at: datetime.datetime, error: Optional[str] = None, id: kittycad.models.uuid.Uuid, output_unit: kittycad.models.unit_area.UnitArea, src_format: kittycad.models.file_import_format.FileImportFormat, started_at: Optional[datetime.datetime] = None, status: kittycad.models.api_call_status.ApiCallStatus, surface_area: Optional[float] = None, type: Literal['file_surface_area'] = 'file_surface_area', updated_at: datetime.datetime, user_id: kittycad.models.uuid.Uuid) -> None>[source]
__slots__ = ('__dict__', '__pydantic_fields_set__', '__pydantic_extra__', '__pydantic_private__')[source]
__str__()[source]

Return str(self).

Return type:

str

_abc_impl = <_abc._abc_data object>[source]
_calculate_keys(*args, **kwargs)[source]
Return type:

Any

_check_frozen(name, value)[source]
Return type:

None

_copy_and_set_values(*args, **kwargs)[source]
Return type:

Any

classmethod _get_value(cls, *args, **kwargs)[source]
Return type:

Any

_iter(*args, **kwargs)[source]
Return type:

Any

completed_at: Optional[datetime][source]
classmethod construct(cls, _fields_set=None, **values)[source]
Return type:

Model

copy(*, include=None, exclude=None, update=None, deep=False)[source]

Returns a copy of the model.

!!! warning “Deprecated”

This method is now deprecated; use model_copy instead.

If you need include or exclude, use:

`py data = self.model_dump(include=include, exclude=exclude, round_trip=True) data = {**data, **(update or {})} copied = self.model_validate(data) `

Parameters:
  • include (AbstractSetIntStr | MappingIntStrAny | None) – Optional set or mapping specifying which fields to include in the copied model.

  • exclude (AbstractSetIntStr | MappingIntStrAny | None) – Optional set or mapping specifying which fields to exclude in the copied model.

  • update (Dict[str, Any] | None) – Optional dictionary of field-value pairs to override field values in the copied model.

  • deep (bool) – If True, the values of fields that are Pydantic models will be deep copied.

Return type:

Model

Returns:

A copy of the model with included, excluded and updated fields as specified.

created_at: datetime[source]
dict(*, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False)[source]
Return type:

Dict[str, Any]

error: Optional[str][source]
classmethod from_orm(cls, obj)[source]
Return type:

Model

id: Uuid[source]
json(*, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, encoder=PydanticUndefined, models_as_dict=PydanticUndefined, **dumps_kwargs)[source]
Return type:

str

property model_computed_fields: dict[str, ComputedFieldInfo][source]

Get the computed fields of this model instance.

Returns:

A dictionary of computed field names and their corresponding ComputedFieldInfo objects.

model_config: ClassVar[ConfigDict] = {}[source]

Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].

classmethod model_construct(_fields_set=None, **values)[source]

Creates a new instance of the Model class with validated data.

Creates a new model setting __dict__ and __pydantic_fields_set__ from trusted or pre-validated data. Default values are respected, but no other validation is performed. Behaves as if Config.extra = ‘allow’ was set since it adds all passed values

Parameters:
  • _fields_set (set[str] | None) – The set of field names accepted for the Model instance.

  • values (Any) – Trusted or pre-validated data dictionary.

Return type:

Model

Returns:

A new instance of the Model class with validated data.

model_copy(*, update=None, deep=False)[source]

Usage docs: https://docs.pydantic.dev/2.5/concepts/serialization/#model_copy

Returns a copy of the model.

Parameters:
  • update (dict[str, Any] | None) – Values to change/add in the new model. Note: the data is not validated before creating the new model. You should trust this data.

  • deep (bool) – Set to True to make a deep copy of the model.

Return type:

Model

Returns:

New model instance.

model_dump(*, mode='python', include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, round_trip=False, warnings=True)[source]

Usage docs: https://docs.pydantic.dev/2.5/concepts/serialization/#modelmodel_dump

Generate a dictionary representation of the model, optionally specifying which fields to include or exclude.

Parameters:
  • mode – The mode in which to_python should run. If mode is ‘json’, the dictionary will only contain JSON serializable types. If mode is ‘python’, the dictionary may contain any Python objects.

  • include – A list of fields to include in the output.

  • exclude – A list of fields to exclude from the output.

  • by_alias – Whether to use the field’s alias in the dictionary key if defined.

  • exclude_unset – Whether to exclude fields that have not been explicitly set.

  • exclude_defaults – Whether to exclude fields that are set to their default value from the output.

  • exclude_none – Whether to exclude fields that have a value of None from the output.

  • round_trip – Whether to enable serialization and deserialization round-trip support.

  • warnings – Whether to log warnings when invalid fields are encountered.

Returns:

A dictionary representation of the model.

model_dump_json(*, indent=None, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, round_trip=False, warnings=True)[source]

Usage docs: https://docs.pydantic.dev/2.5/concepts/serialization/#modelmodel_dump_json

Generates a JSON representation of the model using Pydantic’s to_json method.

Parameters:
  • indent – Indentation to use in the JSON output. If None is passed, the output will be compact.

  • include – Field(s) to include in the JSON output. Can take either a string or set of strings.

  • exclude – Field(s) to exclude from the JSON output. Can take either a string or set of strings.

  • by_alias – Whether to serialize using field aliases.

  • exclude_unset – Whether to exclude fields that have not been explicitly set.

  • exclude_defaults – Whether to exclude fields that have the default value.

  • exclude_none – Whether to exclude fields that have a value of None.

  • round_trip – Whether to use serialization/deserialization between JSON and class instance.

  • warnings – Whether to show any warnings that occurred during serialization.

Returns:

A JSON string representation of the model.

property model_extra[source]

Get extra fields set during validation.

Returns:

A dictionary of extra fields, or None if config.extra is not set to “allow”.

model_fields: ClassVar[dict[str, FieldInfo]] = {'completed_at': FieldInfo(annotation=Union[datetime, NoneType], required=False), 'created_at': FieldInfo(annotation=datetime, required=True), 'error': FieldInfo(annotation=Union[str, NoneType], required=False), 'id': FieldInfo(annotation=Uuid, required=True), 'output_unit': FieldInfo(annotation=UnitArea, required=True), 'src_format': FieldInfo(annotation=FileImportFormat, required=True), 'started_at': FieldInfo(annotation=Union[datetime, NoneType], required=False), 'status': FieldInfo(annotation=ApiCallStatus, required=True), 'surface_area': FieldInfo(annotation=Union[float, NoneType], required=False), 'type': FieldInfo(annotation=Literal['file_surface_area'], required=False, default='file_surface_area'), 'updated_at': FieldInfo(annotation=datetime, required=True), 'user_id': FieldInfo(annotation=Uuid, required=True)}[source]

Metadata about the fields defined on the model, mapping of field names to [FieldInfo][pydantic.fields.FieldInfo].

This replaces Model.__fields__ from Pydantic V1.

property model_fields_set: set[str][source]

Returns the set of fields that have been explicitly set on this model instance.

Returns:

A set of strings representing the fields that have been set,

i.e. that were not filled from defaults.

classmethod model_json_schema(by_alias=True, ref_template='#/$defs/{model}', schema_generator=<class 'pydantic.json_schema.GenerateJsonSchema'>, mode='validation')[source]

Generates a JSON schema for a model class.

Parameters:
  • by_alias (bool) – Whether to use attribute aliases or not.

  • ref_template (str) – The reference template.

  • schema_generator (type[GenerateJsonSchema]) – To override the logic used to generate the JSON schema, as a subclass of GenerateJsonSchema with your desired modifications

  • mode (Literal['validation', 'serialization']) – The mode in which to generate the schema.

Return type:

dict[str, Any]

Returns:

The JSON schema for the given model class.

classmethod model_parametrized_name(params)[source]

Compute the class name for parametrizations of generic classes.

This method can be overridden to achieve a custom naming scheme for generic BaseModels.

Parameters:

params (tuple[type[Any], ...]) – Tuple of types of the class. Given a generic class Model with 2 type variables and a concrete model Model[str, int], the value (str, int) would be passed to params.

Return type:

str

Returns:

String representing the new class where params are passed to cls as type variables.

Raises:

TypeError – Raised when trying to generate concrete names for non-generic models.

model_post_init(_BaseModel__context)[source]

Override this method to perform additional initialization after __init__ and model_construct. This is useful if you want to do some validation that requires the entire model to be initialized.

Return type:

None

classmethod model_rebuild(*, force=False, raise_errors=True, _parent_namespace_depth=2, _types_namespace=None)[source]

Try to rebuild the pydantic-core schema for the model.

This may be necessary when one of the annotations is a ForwardRef which could not be resolved during the initial attempt to build the schema, and automatic rebuilding fails.

Parameters:
  • force – Whether to force the rebuilding of the model schema, defaults to False.

  • raise_errors – Whether to raise errors, defaults to True.

  • _parent_namespace_depth – The depth level of the parent namespace, defaults to 2.

  • _types_namespace – The types namespace, defaults to None.

Returns:

Returns None if the schema is already “complete” and rebuilding was not required. If rebuilding _was_ required, returns True if rebuilding was successful, otherwise False.

classmethod model_validate(obj, *, strict=None, from_attributes=None, context=None)[source]

Validate a pydantic model instance.

Parameters:
  • obj (Any) – The object to validate.

  • strict (bool | None) – Whether to raise an exception on invalid fields.

  • from_attributes (bool | None) – Whether to extract data from object attributes.

  • context (dict[str, Any] | None) – Additional context to pass to the validator.

Raises:

ValidationError – If the object could not be validated.

Return type:

Model

Returns:

The validated model instance.

classmethod model_validate_json(json_data, *, strict=None, context=None)[source]

Usage docs: https://docs.pydantic.dev/2.5/concepts/json/#json-parsing

Validate the given JSON data against the Pydantic model.

Parameters:
  • json_data (str | bytes | bytearray) – The JSON data to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • context (dict[str, Any] | None) – Extra variables to pass to the validator.

Return type:

Model

Returns:

The validated Pydantic model.

Raises:

ValueError – If json_data is not a JSON string.

classmethod model_validate_strings(obj, *, strict=None, context=None)[source]

Validate the given object contains string data against the Pydantic model.

Parameters:
  • obj (Any) – The object contains string data to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • context (dict[str, Any] | None) – Extra variables to pass to the validator.

Return type:

Model

Returns:

The validated Pydantic model.

output_unit: UnitArea[source]
classmethod parse_file(cls, path, *, content_type=None, encoding='utf8', proto=None, allow_pickle=False)[source]
Return type:

Model

classmethod parse_obj(cls, obj)[source]
Return type:

Model

classmethod parse_raw(cls, b, *, content_type=None, encoding='utf8', proto=None, allow_pickle=False)[source]
Return type:

Model

classmethod schema(cls, by_alias=True, ref_template='#/$defs/{model}')[source]
Return type:

Dict[str, Any]

classmethod schema_json(cls, *, by_alias=True, ref_template='#/$defs/{model}', **dumps_kwargs)[source]
Return type:

str

src_format: FileImportFormat[source]
started_at: Optional[datetime][source]
status: ApiCallStatus[source]
surface_area: Optional[float][source]
type: Literal['file_surface_area'][source]
classmethod update_forward_refs(cls, **localns)[source]
Return type:

None

updated_at: datetime[source]
user_id: Uuid[source]
classmethod validate(cls, value)[source]
Return type:

Model

class kittycad.models.async_api_call_output.file_volume(**data)[source][source]

A file volume.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

__init__ uses __pydantic_self__ instead of the more common self for the first arg to allow self as a field name.

__abstractmethods__ = frozenset({})[source]
__annotations__ = {'__class_vars__': 'ClassVar[set[str]]', '__private_attributes__': 'ClassVar[dict[str, ModelPrivateAttr]]', '__pydantic_complete__': 'ClassVar[bool]', '__pydantic_core_schema__': 'ClassVar[CoreSchema]', '__pydantic_custom_init__': 'ClassVar[bool]', '__pydantic_decorators__': 'ClassVar[_decorators.DecoratorInfos]', '__pydantic_extra__': 'dict[str, Any] | None', '__pydantic_fields_set__': 'set[str]', '__pydantic_generic_metadata__': 'ClassVar[_generics.PydanticGenericMetadata]', '__pydantic_parent_namespace__': 'ClassVar[dict[str, Any] | None]', '__pydantic_post_init__': "ClassVar[None | Literal['model_post_init']]", '__pydantic_private__': 'dict[str, Any] | None', '__pydantic_root_model__': 'ClassVar[bool]', '__pydantic_serializer__': 'ClassVar[SchemaSerializer]', '__pydantic_validator__': 'ClassVar[SchemaValidator]', '__signature__': 'ClassVar[Signature]', 'completed_at': typing.Optional[datetime.datetime], 'created_at': <class 'datetime.datetime'>, 'error': typing.Optional[str], 'id': <class 'kittycad.models.uuid.Uuid'>, 'model_config': 'ClassVar[ConfigDict]', 'model_fields': 'ClassVar[dict[str, FieldInfo]]', 'output_unit': <enum 'UnitVolume'>, 'src_format': <enum 'FileImportFormat'>, 'started_at': typing.Optional[datetime.datetime], 'status': <enum 'ApiCallStatus'>, 'type': typing.Literal['file_volume'], 'updated_at': <class 'datetime.datetime'>, 'user_id': <class 'kittycad.models.uuid.Uuid'>, 'volume': typing.Optional[float]}[source]
classmethod __class_getitem__(typevar_values)[source]
__class_vars__: ClassVar[set[str]] = {}[source]
__copy__()[source]

Returns a shallow copy of the model.

Return type:

Model

__deepcopy__(memo=None)[source]

Returns a deep copy of the model.

Return type:

Model

__delattr__(item)[source]

Implement delattr(self, name).

Return type:

Any

__dict__[source]
__eq__(other)[source]

Return self==value.

Return type:

bool

__fields__ = {'completed_at': FieldInfo(annotation=Union[datetime, NoneType], required=False), 'created_at': FieldInfo(annotation=datetime, required=True), 'error': FieldInfo(annotation=Union[str, NoneType], required=False), 'id': FieldInfo(annotation=Uuid, required=True), 'output_unit': FieldInfo(annotation=UnitVolume, required=True), 'src_format': FieldInfo(annotation=FileImportFormat, required=True), 'started_at': FieldInfo(annotation=Union[datetime, NoneType], required=False), 'status': FieldInfo(annotation=ApiCallStatus, required=True), 'type': FieldInfo(annotation=Literal['file_volume'], required=False, default='file_volume'), 'updated_at': FieldInfo(annotation=datetime, required=True), 'user_id': FieldInfo(annotation=Uuid, required=True), 'volume': FieldInfo(annotation=Union[float, NoneType], required=False)}[source]
property __fields_set__: set[str][source]
classmethod __get_pydantic_core_schema__(_BaseModel__source, _BaseModel__handler)[source]

Hook into generating the model’s CoreSchema.

Parameters:
  • __source – The class we are generating a schema for. This will generally be the same as the cls argument if this is a classmethod.

  • __handler – Call into Pydantic’s internal JSON schema generation. A callable that calls into Pydantic’s internal CoreSchema generation logic.

Return type:

Union[AnySchema, NoneSchema, BoolSchema, IntSchema, FloatSchema, DecimalSchema, StringSchema, BytesSchema, DateSchema, TimeSchema, DatetimeSchema, TimedeltaSchema, LiteralSchema, IsInstanceSchema, IsSubclassSchema, CallableSchema, ListSchema, TuplePositionalSchema, TupleVariableSchema, SetSchema, FrozenSetSchema, GeneratorSchema, DictSchema, AfterValidatorFunctionSchema, BeforeValidatorFunctionSchema, WrapValidatorFunctionSchema, PlainValidatorFunctionSchema, WithDefaultSchema, NullableSchema, UnionSchema, TaggedUnionSchema, ChainSchema, LaxOrStrictSchema, JsonOrPythonSchema, TypedDictSchema, ModelFieldsSchema, ModelSchema, DataclassArgsSchema, DataclassSchema, ArgumentsSchema, CallSchema, CustomErrorSchema, JsonSchema, UrlSchema, MultiHostUrlSchema, DefinitionsSchema, DefinitionReferenceSchema, UuidSchema]

Returns:

A pydantic-core CoreSchema.

classmethod __get_pydantic_json_schema__(_BaseModel__core_schema, _BaseModel__handler)[source]

Hook into generating the model’s JSON schema.

Parameters:
  • __core_schema – A pydantic-core CoreSchema. You can ignore this argument and call the handler with a new CoreSchema, wrap this CoreSchema ({‘type’: ‘nullable’, ‘schema’: current_schema}), or just call the handler with the original schema.

  • __handler – Call into Pydantic’s internal JSON schema generation. This will raise a pydantic.errors.PydanticInvalidForJsonSchema if JSON schema generation fails. Since this gets called by BaseModel.model_json_schema you can override the schema_generator argument to that function to change JSON schema generation globally for a type.

Return type:

Dict[str, Any]

Returns:

A JSON schema, as a Python object.

__getattr__(item)[source]
Return type:

Any

__getstate__()[source]
Return type:

dict[Any, Any]

__hash__ = None[source]
__init__(**data)[source]

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

__init__ uses __pydantic_self__ instead of the more common self for the first arg to allow self as a field name.

__iter__()[source]

So dict(model) works.

Return type:

TupleGenerator

__module__ = 'kittycad.models.async_api_call_output'[source]
__pretty__(fmt, **kwargs)[source]

Used by devtools (https://python-devtools.helpmanual.io/) to pretty print objects.

Return type:

Generator[Any, None, None]

__private_attributes__: ClassVar[dict[str, ModelPrivateAttr]] = {}[source]
__pydantic_complete__: ClassVar[bool] = True[source]
__pydantic_core_schema__: ClassVar[CoreSchema] = {'cls': <class 'kittycad.models.async_api_call_output.file_volume'>, 'config': {'title': 'file_volume'}, 'custom_init': False, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_annotation_functions': [], 'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'kittycad.models.async_api_call_output.file_volume'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.async_api_call_output.file_volume'>>]}, 'ref': 'kittycad.models.async_api_call_output.file_volume:93825015704192', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'completed_at': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_annotation_functions': [<bound method InnerSchemaValidator.__get_pydantic_json_schema__ of InnerSchemaValidator(core_schema={'type': 'datetime', 'microseconds_precision': 'truncate', 'metadata': {'pydantic_js_annotation_functions': [...], 'pydantic.internal.needs_apply_discriminated_union': False}}, js_schema=None, js_core_schema=None, js_schema_update=None)>]}, 'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'created_at': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'metadata': {'pydantic_js_annotation_functions': [<bound method InnerSchemaValidator.__get_pydantic_json_schema__ of InnerSchemaValidator(core_schema={'type': 'datetime', 'microseconds_precision': 'truncate', 'metadata': {'pydantic_js_annotation_functions': [...]}}, js_schema=None, js_core_schema=None, js_schema_update=None)>]}, 'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'model-field'}, 'error': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'id': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'function': {'function': <class 'kittycad.models.uuid.Uuid'>, 'type': 'no-info'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'function-after'}, 'type': 'model-field'}, 'output_unit': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'lax_schema': {'steps': [{'type': 'str'}, {'type': 'function-plain', 'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}}], 'type': 'chain'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_functions': [<function get_enum_core_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.unit_volume.UnitVolume:93825015377696', 'strict_schema': {'json_schema': {'function': {'function': <function get_enum_core_schema.<locals>.to_enum>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'python_schema': {'cls': <enum 'UnitVolume'>, 'type': 'is-instance'}, 'type': 'json-or-python'}, 'type': 'lax-or-strict'}, 'type': 'model-field'}, 'src_format': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'lax_schema': {'steps': [{'type': 'str'}, {'type': 'function-plain', 'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}}], 'type': 'chain'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_functions': [<function get_enum_core_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.file_import_format.FileImportFormat:93825014566080', 'strict_schema': {'json_schema': {'function': {'function': <function get_enum_core_schema.<locals>.to_enum>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'python_schema': {'cls': <enum 'FileImportFormat'>, 'type': 'is-instance'}, 'type': 'json-or-python'}, 'type': 'lax-or-strict'}, 'type': 'model-field'}, 'started_at': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_annotation_functions': [<bound method InnerSchemaValidator.__get_pydantic_json_schema__ of InnerSchemaValidator(core_schema={'type': 'datetime', 'microseconds_precision': 'truncate', 'metadata': {'pydantic_js_annotation_functions': [...], 'pydantic.internal.needs_apply_discriminated_union': False}}, js_schema=None, js_core_schema=None, js_schema_update=None)>]}, 'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'status': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'lax_schema': {'steps': [{'type': 'str'}, {'type': 'function-plain', 'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}}], 'type': 'chain'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_functions': [<function get_enum_core_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.api_call_status.ApiCallStatus:93825014051056', 'strict_schema': {'json_schema': {'function': {'function': <function get_enum_core_schema.<locals>.to_enum>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'python_schema': {'cls': <enum 'ApiCallStatus'>, 'type': 'is-instance'}, 'type': 'json-or-python'}, 'type': 'lax-or-strict'}, 'type': 'model-field'}, 'type': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': 'file_volume', 'schema': {'expected': ['file_volume'], 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'literal'}, 'type': 'default'}, 'type': 'model-field'}, 'updated_at': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'metadata': {'pydantic_js_annotation_functions': [<bound method InnerSchemaValidator.__get_pydantic_json_schema__ of InnerSchemaValidator(core_schema={'type': 'datetime', 'microseconds_precision': 'truncate', 'metadata': {'pydantic_js_annotation_functions': [...]}}, js_schema=None, js_core_schema=None, js_schema_update=None)>]}, 'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'model-field'}, 'user_id': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'function': {'function': <class 'kittycad.models.uuid.Uuid'>, 'type': 'no-info'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'function-after'}, 'type': 'model-field'}, 'volume': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'float'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}}, 'model_name': 'file_volume', 'type': 'model-fields'}, 'type': 'model'}[source]
__pydantic_custom_init__: ClassVar[bool] = False[source]
__pydantic_decorators__: ClassVar[_decorators.DecoratorInfos] = DecoratorInfos(validators={}, field_validators={}, root_validators={}, field_serializers={}, model_serializers={}, model_validators={}, computed_fields={})[source]
__pydantic_extra__: dict[str, Any] | None[source]
__pydantic_fields_set__: set[str][source]
__pydantic_generic_metadata__: ClassVar[_generics.PydanticGenericMetadata] = {'args': (), 'origin': None, 'parameters': ()}[source]
classmethod __pydantic_init_subclass__(**kwargs)[source]

This is intended to behave just like __init_subclass__, but is called by ModelMetaclass only after the class is actually fully initialized. In particular, attributes like model_fields will be present when this is called.

This is necessary because __init_subclass__ will always be called by type.__new__, and it would require a prohibitively large refactor to the ModelMetaclass to ensure that type.__new__ was called in such a manner that the class would already be sufficiently initialized.

This will receive the same kwargs that would be passed to the standard __init_subclass__, namely, any kwargs passed to the class definition that aren’t used internally by pydantic.

Parameters:

**kwargs (Any) – Any keyword arguments passed to the class definition that aren’t used internally by pydantic.

Return type:

None

__pydantic_parent_namespace__: ClassVar[dict[str, Any] | None] = {'AiFeedback': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Annotated': <pydantic._internal._model_construction._PydanticWeakRef object>, 'ApiCallStatus': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Base64Data': <pydantic._internal._model_construction._PydanticWeakRef object>, 'BaseModel': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Dict': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Field': <pydantic._internal._model_construction._PydanticWeakRef object>, 'FileExportFormat': <pydantic._internal._model_construction._PydanticWeakRef object>, 'FileImportFormat': <pydantic._internal._model_construction._PydanticWeakRef object>, 'InputFormat': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Literal': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Optional': <pydantic._internal._model_construction._PydanticWeakRef object>, 'OutputFormat': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Point3d': <pydantic._internal._model_construction._PydanticWeakRef object>, 'RootModel': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Union': <pydantic._internal._model_construction._PydanticWeakRef object>, 'UnitArea': <pydantic._internal._model_construction._PydanticWeakRef object>, 'UnitDensity': <pydantic._internal._model_construction._PydanticWeakRef object>, 'UnitLength': <pydantic._internal._model_construction._PydanticWeakRef object>, 'UnitMass': <pydantic._internal._model_construction._PydanticWeakRef object>, 'UnitVolume': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Uuid': <pydantic._internal._model_construction._PydanticWeakRef object>, '__builtins__': {'ArithmeticError': <class 'ArithmeticError'>, 'AssertionError': <class 'AssertionError'>, 'AttributeError': <class 'AttributeError'>, 'BaseException': <class 'BaseException'>, 'BlockingIOError': <class 'BlockingIOError'>, 'BrokenPipeError': <class 'BrokenPipeError'>, 'BufferError': <class 'BufferError'>, 'BytesWarning': <class 'BytesWarning'>, 'ChildProcessError': <class 'ChildProcessError'>, 'ConnectionAbortedError': <class 'ConnectionAbortedError'>, 'ConnectionError': <class 'ConnectionError'>, 'ConnectionRefusedError': <class 'ConnectionRefusedError'>, 'ConnectionResetError': <class 'ConnectionResetError'>, 'DeprecationWarning': <class 'DeprecationWarning'>, 'EOFError': <class 'EOFError'>, 'Ellipsis': Ellipsis, 'EnvironmentError': <class 'OSError'>, 'Exception': <class 'Exception'>, 'False': False, 'FileExistsError': <class 'FileExistsError'>, 'FileNotFoundError': <class 'FileNotFoundError'>, 'FloatingPointError': <class 'FloatingPointError'>, 'FutureWarning': <class 'FutureWarning'>, 'GeneratorExit': <class 'GeneratorExit'>, 'IOError': <class 'OSError'>, 'ImportError': <class 'ImportError'>, 'ImportWarning': <class 'ImportWarning'>, 'IndentationError': <class 'IndentationError'>, 'IndexError': <class 'IndexError'>, 'InterruptedError': <class 'InterruptedError'>, 'IsADirectoryError': <class 'IsADirectoryError'>, 'KeyError': <class 'KeyError'>, 'KeyboardInterrupt': <class 'KeyboardInterrupt'>, 'LookupError': <class 'LookupError'>, 'MemoryError': <class 'MemoryError'>, 'ModuleNotFoundError': <class 'ModuleNotFoundError'>, 'NameError': <class 'NameError'>, 'None': None, 'NotADirectoryError': <class 'NotADirectoryError'>, 'NotImplemented': NotImplemented, 'NotImplementedError': <class 'NotImplementedError'>, 'OSError': <class 'OSError'>, 'OverflowError': <class 'OverflowError'>, 'PendingDeprecationWarning': <class 'PendingDeprecationWarning'>, 'PermissionError': <class 'PermissionError'>, 'ProcessLookupError': <class 'ProcessLookupError'>, 'RecursionError': <class 'RecursionError'>, 'ReferenceError': <class 'ReferenceError'>, 'ResourceWarning': <class 'ResourceWarning'>, 'RuntimeError': <class 'RuntimeError'>, 'RuntimeWarning': <class 'RuntimeWarning'>, 'StopAsyncIteration': <class 'StopAsyncIteration'>, 'StopIteration': <class 'StopIteration'>, 'SyntaxError': <class 'SyntaxError'>, 'SyntaxWarning': <class 'SyntaxWarning'>, 'SystemError': <class 'SystemError'>, 'SystemExit': <class 'SystemExit'>, 'TabError': <class 'TabError'>, 'TimeoutError': <class 'TimeoutError'>, 'True': True, 'TypeError': <class 'TypeError'>, 'UnboundLocalError': <class 'UnboundLocalError'>, 'UnicodeDecodeError': <class 'UnicodeDecodeError'>, 'UnicodeEncodeError': <class 'UnicodeEncodeError'>, 'UnicodeError': <class 'UnicodeError'>, 'UnicodeTranslateError': <class 'UnicodeTranslateError'>, 'UnicodeWarning': <class 'UnicodeWarning'>, 'UserWarning': <class 'UserWarning'>, 'ValueError': <class 'ValueError'>, 'Warning': <class 'Warning'>, 'ZeroDivisionError': <class 'ZeroDivisionError'>, '__build_class__': <built-in function __build_class__>, '__debug__': True, '__doc__': "Built-in functions, exceptions, and other objects.\n\nNoteworthy: None is the `nil' object; Ellipsis represents `...' in slices.", '__import__': <built-in function __import__>, '__loader__': <class '_frozen_importlib.BuiltinImporter'>, '__name__': 'builtins', '__package__': '', '__spec__': ModuleSpec(name='builtins', loader=<class '_frozen_importlib.BuiltinImporter'>, origin='built-in'), 'abs': <built-in function abs>, 'all': <built-in function all>, 'any': <built-in function any>, 'ascii': <built-in function ascii>, 'bin': <built-in function bin>, 'bool': <class 'bool'>, 'breakpoint': <built-in function breakpoint>, 'bytearray': <class 'bytearray'>, 'bytes': <class 'bytes'>, 'callable': <built-in function callable>, 'chr': <built-in function chr>, 'classmethod': <class 'classmethod'>, 'compile': <built-in function compile>, 'complex': <class 'complex'>, 'copyright': Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved.  Copyright (c) 2000 BeOpen.com. All Rights Reserved.  Copyright (c) 1995-2001 Corporation for National Research Initiatives. All Rights Reserved.  Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam. All Rights Reserved., 'credits':     Thanks to CWI, CNRI, BeOpen.com, Zope Corporation and a cast of thousands     for supporting Python development.  See www.python.org for more information., 'delattr': <built-in function delattr>, 'dict': <class 'dict'>, 'dir': <built-in function dir>, 'divmod': <built-in function divmod>, 'enumerate': <class 'enumerate'>, 'eval': <built-in function eval>, 'exec': <built-in function exec>, 'exit': Use exit() or Ctrl-D (i.e. EOF) to exit, 'filter': <class 'filter'>, 'float': <class 'float'>, 'format': <built-in function format>, 'frozenset': <class 'frozenset'>, 'getattr': <built-in function getattr>, 'globals': <built-in function globals>, 'hasattr': <built-in function hasattr>, 'hash': <built-in function hash>, 'help': Type help() for interactive help, or help(object) for help about object., 'hex': <built-in function hex>, 'id': <built-in function id>, 'input': <built-in function input>, 'int': <class 'int'>, 'isinstance': <built-in function isinstance>, 'issubclass': <built-in function issubclass>, 'iter': <built-in function iter>, 'len': <built-in function len>, 'license': Type license() to see the full license text, 'list': <class 'list'>, 'locals': <built-in function locals>, 'map': <class 'map'>, 'max': <built-in function max>, 'memoryview': <class 'memoryview'>, 'min': <built-in function min>, 'next': <built-in function next>, 'object': <class 'object'>, 'oct': <built-in function oct>, 'open': <built-in function open>, 'ord': <built-in function ord>, 'pow': <built-in function pow>, 'print': <built-in function print>, 'property': <class 'property'>, 'quit': Use quit() or Ctrl-D (i.e. EOF) to exit, 'range': <class 'range'>, 'repr': <built-in function repr>, 'reversed': <class 'reversed'>, 'round': <built-in function round>, 'set': <class 'set'>, 'setattr': <built-in function setattr>, 'slice': <class 'slice'>, 'sorted': <built-in function sorted>, 'staticmethod': <class 'staticmethod'>, 'str': <class 'str'>, 'sum': <built-in function sum>, 'super': <class 'super'>, 'tuple': <class 'tuple'>, 'type': <class 'type'>, 'vars': <built-in function vars>, 'zip': <class 'zip'>}, '__cached__': '/home/user/src/kittycad/models/__pycache__/async_api_call_output.cpython-39.pyc', '__doc__': <pydantic._internal._model_construction._PydanticWeakRef object>, '__file__': '/home/user/src/kittycad/models/async_api_call_output.py', '__loader__': <pydantic._internal._model_construction._PydanticWeakRef object>, '__name__': 'kittycad.models.async_api_call_output', '__package__': 'kittycad.models', '__spec__': <pydantic._internal._model_construction._PydanticWeakRef object>, 'datetime': <pydantic._internal._model_construction._PydanticWeakRef object>, 'file_center_of_mass': <pydantic._internal._model_construction._PydanticWeakRef object>, 'file_conversion': <pydantic._internal._model_construction._PydanticWeakRef object>, 'file_mass': <pydantic._internal._model_construction._PydanticWeakRef object>}[source]
__pydantic_post_init__: ClassVar[None | Literal['model_post_init']] = None[source]
__pydantic_private__: dict[str, Any] | None[source]
__pydantic_root_model__: ClassVar[bool] = False[source]
__pydantic_serializer__: ClassVar[SchemaSerializer] = SchemaSerializer(serializer=Model(     ModelSerializer {         class: Py(             0x0000555556bb6a80,         ),         serializer: Fields(             GeneralFieldsSerializer {                 fields: {                     "id": SerField {                         key_py: Py(                             0x00007fffff8eb3b0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Str(                                 StrSerializer,                             ),                         ),                         required: true,                     },                     "src_format": SerField {                         key_py: Py(                             0x00007fffe1494470,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             JsonOrPython(                                 JsonOrPythonSerializer {                                     json: Str(                                         StrSerializer,                                     ),                                     python: Any(                                         AnySerializer,                                     ),                                     name: "json-or-python[json=str, python=any]",                                 },                             ),                         ),                         required: true,                     },                     "volume": SerField {                         key_py: Py(                             0x00007ffffdc0c230,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007ffffff85420,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Float(                                                 FloatSerializer {                                                     inf_nan_mode: Null,                                                 },                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "started_at": SerField {                         key_py: Py(                             0x00007fffe137cbf0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007ffffff85420,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Datetime(                                                 DatetimeSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "completed_at": SerField {                         key_py: Py(                             0x00007fffe1c78a70,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007ffffff85420,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Datetime(                                                 DatetimeSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "status": SerField {                         key_py: Py(                             0x00007fffff6e27f0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             JsonOrPython(                                 JsonOrPythonSerializer {                                     json: Str(                                         StrSerializer,                                     ),                                     python: Any(                                         AnySerializer,                                     ),                                     name: "json-or-python[json=str, python=any]",                                 },                             ),                         ),                         required: true,                     },                     "updated_at": SerField {                         key_py: Py(                             0x00007fffe137c6b0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Datetime(                                 DatetimeSerializer,                             ),                         ),                         required: true,                     },                     "output_unit": SerField {                         key_py: Py(                             0x00007fffe14f4170,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             JsonOrPython(                                 JsonOrPythonSerializer {                                     json: Str(                                         StrSerializer,                                     ),                                     python: Any(                                         AnySerializer,                                     ),                                     name: "json-or-python[json=str, python=any]",                                 },                             ),                         ),                         required: true,                     },                     "error": SerField {                         key_py: Py(                             0x00007fffff904b70,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007ffffff85420,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Str(                                                 StrSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "user_id": SerField {                         key_py: Py(                             0x00007fffe137c730,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Str(                                 StrSerializer,                             ),                         ),                         required: true,                     },                     "created_at": SerField {                         key_py: Py(                             0x00007fffe12ecdf0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Datetime(                                 DatetimeSerializer,                             ),                         ),                         required: true,                     },                     "type": SerField {                         key_py: Py(                             0x00007fffff8ebef0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fffe1c7bbf0,                                         ),                                     ),                                     serializer: Literal(                                         LiteralSerializer {                                             expected_int: {},                                             expected_str: {                                                 "file_volume",                                             },                                             expected_py: None,                                             name: "literal['file_volume']",                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                 },                 computed_fields: Some(                     ComputedFields(                         [],                     ),                 ),                 mode: SimpleDict,                 extra_serializer: None,                 filter: SchemaFilter {                     include: None,                     exclude: None,                 },                 required_fields: 12,             },         ),         has_extra: false,         root_model: false,         name: "file_volume",     }, ), definitions=[])[source]
__pydantic_validator__: ClassVar[SchemaValidator] = SchemaValidator(title="file_volume", validator=Model(     ModelValidator {         revalidate: Never,         validator: ModelFields(             ModelFieldsValidator {                 fields: [                     Field {                         name: "completed_at",                         lookup_key: Simple {                             key: "completed_at",                             py_key: Py(                                 0x00007fffe1c78a70,                             ),                             path: LookupPath(                                 [                                     S(                                         "completed_at",                                         Py(                                             0x00007fffe1c78a70,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe1c78a70,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007ffffff85420,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Datetime(                                             DateTimeValidator {                                                 strict: false,                                                 constraints: None,                                                 microseconds_precision: Truncate,                                             },                                         ),                                         name: "nullable[datetime]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[datetime]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "created_at",                         lookup_key: Simple {                             key: "created_at",                             py_key: Py(                                 0x00007fffe12ecdf0,                             ),                             path: LookupPath(                                 [                                     S(                                         "created_at",                                         Py(                                             0x00007fffe12ecdf0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe12ecdf0,                         ),                         validator: Datetime(                             DateTimeValidator {                                 strict: false,                                 constraints: None,                                 microseconds_precision: Truncate,                             },                         ),                         frozen: false,                     },                     Field {                         name: "error",                         lookup_key: Simple {                             key: "error",                             py_key: Py(                                 0x00007fffff904b70,                             ),                             path: LookupPath(                                 [                                     S(                                         "error",                                         Py(                                             0x00007fffff904b70,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffff904b70,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007ffffff85420,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Str(                                             StrValidator {                                                 strict: false,                                                 coerce_numbers_to_str: false,                                             },                                         ),                                         name: "nullable[str]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[str]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "id",                         lookup_key: Simple {                             key: "id",                             py_key: Py(                                 0x00007fffff8eb3b0,                             ),                             path: LookupPath(                                 [                                     S(                                         "id",                                         Py(                                             0x00007fffff8eb3b0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffff8eb3b0,                         ),                         validator: FunctionAfter(                             FunctionAfterValidator {                                 validator: Str(                                     StrValidator {                                         strict: false,                                         coerce_numbers_to_str: false,                                     },                                 ),                                 func: Py(                                     0x0000555556a23980,                                 ),                                 config: Py(                                     0x00007fffe1436ac0,                                 ),                                 name: "function-after[Uuid(), str]",                                 field_name: None,                                 info_arg: false,                             },                         ),                         frozen: false,                     },                     Field {                         name: "output_unit",                         lookup_key: Simple {                             key: "output_unit",                             py_key: Py(                                 0x00007fffe14f4170,                             ),                             path: LookupPath(                                 [                                     S(                                         "output_unit",                                         Py(                                             0x00007fffe14f4170,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe14f4170,                         ),                         validator: LaxOrStrict(                             LaxOrStrictValidator {                                 strict: false,                                 lax_validator: Chain(                                     ChainValidator {                                         steps: [                                             Str(                                                 StrValidator {                                                     strict: false,                                                     coerce_numbers_to_str: false,                                                 },                                             ),                                             FunctionPlain(                                                 FunctionPlainValidator {                                                     func: Py(                                                         0x00007fffe1418c10,                                                     ),                                                     config: Py(                                                         0x00007fffe1436ac0,                                                     ),                                                     name: "function-plain[to_enum()]",                                                     field_name: None,                                                     info_arg: false,                                                 },                                             ),                                         ],                                         name: "chain[str,function-plain[to_enum()]]",                                     },                                 ),                                 strict_validator: JsonOrPython(                                     JsonOrPython {                                         json: FunctionAfter(                                             FunctionAfterValidator {                                                 validator: Str(                                                     StrValidator {                                                         strict: false,                                                         coerce_numbers_to_str: false,                                                     },                                                 ),                                                 func: Py(                                                     0x00007fffe1418c10,                                                 ),                                                 config: Py(                                                     0x00007fffe1436ac0,                                                 ),                                                 name: "function-after[to_enum(), str]",                                                 field_name: None,                                                 info_arg: false,                                             },                                         ),                                         python: IsInstance(                                             IsInstanceValidator {                                                 class: Py(                                                     0x0000555556b66f20,                                                 ),                                                 class_repr: "UnitVolume",                                                 name: "is-instance[UnitVolume]",                                             },                                         ),                                         name: "json-or-python[json=function-after[to_enum(), str],python=is-instance[UnitVolume]]",                                     },                                 ),                                 name: "lax-or-strict[lax=chain[str,function-plain[to_enum()]],strict=json-or-python[json=function-after[to_enum(), str],python=is-instance[UnitVolume]]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "src_format",                         lookup_key: Simple {                             key: "src_format",                             py_key: Py(                                 0x00007fffe1494470,                             ),                             path: LookupPath(                                 [                                     S(                                         "src_format",                                         Py(                                             0x00007fffe1494470,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe1494470,                         ),                         validator: LaxOrStrict(                             LaxOrStrictValidator {                                 strict: false,                                 lax_validator: Chain(                                     ChainValidator {                                         steps: [                                             Str(                                                 StrValidator {                                                     strict: false,                                                     coerce_numbers_to_str: false,                                                 },                                             ),                                             FunctionPlain(                                                 FunctionPlainValidator {                                                     func: Py(                                                         0x00007fffe142b160,                                                     ),                                                     config: Py(                                                         0x00007fffe1436ac0,                                                     ),                                                     name: "function-plain[to_enum()]",                                                     field_name: None,                                                     info_arg: false,                                                 },                                             ),                                         ],                                         name: "chain[str,function-plain[to_enum()]]",                                     },                                 ),                                 strict_validator: JsonOrPython(                                     JsonOrPython {                                         json: FunctionAfter(                                             FunctionAfterValidator {                                                 validator: Str(                                                     StrValidator {                                                         strict: false,                                                         coerce_numbers_to_str: false,                                                     },                                                 ),                                                 func: Py(                                                     0x00007fffe142b160,                                                 ),                                                 config: Py(                                                     0x00007fffe1436ac0,                                                 ),                                                 name: "function-after[to_enum(), str]",                                                 field_name: None,                                                 info_arg: false,                                             },                                         ),                                         python: IsInstance(                                             IsInstanceValidator {                                                 class: Py(                                                     0x0000555556aa0cc0,                                                 ),                                                 class_repr: "FileImportFormat",                                                 name: "is-instance[FileImportFormat]",                                             },                                         ),                                         name: "json-or-python[json=function-after[to_enum(), str],python=is-instance[FileImportFormat]]",                                     },                                 ),                                 name: "lax-or-strict[lax=chain[str,function-plain[to_enum()]],strict=json-or-python[json=function-after[to_enum(), str],python=is-instance[FileImportFormat]]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "started_at",                         lookup_key: Simple {                             key: "started_at",                             py_key: Py(                                 0x00007fffe137cbf0,                             ),                             path: LookupPath(                                 [                                     S(                                         "started_at",                                         Py(                                             0x00007fffe137cbf0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe137cbf0,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007ffffff85420,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Datetime(                                             DateTimeValidator {                                                 strict: false,                                                 constraints: None,                                                 microseconds_precision: Truncate,                                             },                                         ),                                         name: "nullable[datetime]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[datetime]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "status",                         lookup_key: Simple {                             key: "status",                             py_key: Py(                                 0x00007fffff6e27f0,                             ),                             path: LookupPath(                                 [                                     S(                                         "status",                                         Py(                                             0x00007fffff6e27f0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffff6e27f0,                         ),                         validator: LaxOrStrict(                             LaxOrStrictValidator {                                 strict: false,                                 lax_validator: Chain(                                     ChainValidator {                                         steps: [                                             Str(                                                 StrValidator {                                                     strict: false,                                                     coerce_numbers_to_str: false,                                                 },                                             ),                                             FunctionPlain(                                                 FunctionPlainValidator {                                                     func: Py(                                                         0x00007fffe142b280,                                                     ),                                                     config: Py(                                                         0x00007fffe1436ac0,                                                     ),                                                     name: "function-plain[to_enum()]",                                                     field_name: None,                                                     info_arg: false,                                                 },                                             ),                                         ],                                         name: "chain[str,function-plain[to_enum()]]",                                     },                                 ),                                 strict_validator: JsonOrPython(                                     JsonOrPython {                                         json: FunctionAfter(                                             FunctionAfterValidator {                                                 validator: Str(                                                     StrValidator {                                                         strict: false,                                                         coerce_numbers_to_str: false,                                                     },                                                 ),                                                 func: Py(                                                     0x00007fffe142b280,                                                 ),                                                 config: Py(                                                     0x00007fffe1436ac0,                                                 ),                                                 name: "function-after[to_enum(), str]",                                                 field_name: None,                                                 info_arg: false,                                             },                                         ),                                         python: IsInstance(                                             IsInstanceValidator {                                                 class: Py(                                                     0x0000555556a230f0,                                                 ),                                                 class_repr: "ApiCallStatus",                                                 name: "is-instance[ApiCallStatus]",                                             },                                         ),                                         name: "json-or-python[json=function-after[to_enum(), str],python=is-instance[ApiCallStatus]]",                                     },                                 ),                                 name: "lax-or-strict[lax=chain[str,function-plain[to_enum()]],strict=json-or-python[json=function-after[to_enum(), str],python=is-instance[ApiCallStatus]]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "type",                         lookup_key: Simple {                             key: "type",                             py_key: Py(                                 0x00007fffff8ebef0,                             ),                             path: LookupPath(                                 [                                     S(                                         "type",                                         Py(                                             0x00007fffff8ebef0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffff8ebef0,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fffe1c7bbf0,                                     ),                                 ),                                 on_error: Raise,                                 validator: Literal(                                     LiteralValidator {                                         lookup: LiteralLookup {                                             expected_bool: None,                                             expected_int: None,                                             expected_str: Some(                                                 {                                                     "file_volume": 0,                                                 },                                             ),                                             expected_py: None,                                             values: [                                                 Py(                                                     0x00007fffe1c7bbf0,                                                 ),                                             ],                                         },                                         expected_repr: "'file_volume'",                                         name: "literal['file_volume']",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[literal['file_volume']]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "updated_at",                         lookup_key: Simple {                             key: "updated_at",                             py_key: Py(                                 0x00007fffe137c6b0,                             ),                             path: LookupPath(                                 [                                     S(                                         "updated_at",                                         Py(                                             0x00007fffe137c6b0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe137c6b0,                         ),                         validator: Datetime(                             DateTimeValidator {                                 strict: false,                                 constraints: None,                                 microseconds_precision: Truncate,                             },                         ),                         frozen: false,                     },                     Field {                         name: "user_id",                         lookup_key: Simple {                             key: "user_id",                             py_key: Py(                                 0x00007fffe137c730,                             ),                             path: LookupPath(                                 [                                     S(                                         "user_id",                                         Py(                                             0x00007fffe137c730,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe137c730,                         ),                         validator: FunctionAfter(                             FunctionAfterValidator {                                 validator: Str(                                     StrValidator {                                         strict: false,                                         coerce_numbers_to_str: false,                                     },                                 ),                                 func: Py(                                     0x0000555556a23980,                                 ),                                 config: Py(                                     0x00007fffe1436ac0,                                 ),                                 name: "function-after[Uuid(), str]",                                 field_name: None,                                 info_arg: false,                             },                         ),                         frozen: false,                     },                     Field {                         name: "volume",                         lookup_key: Simple {                             key: "volume",                             py_key: Py(                                 0x00007ffffdc0c230,                             ),                             path: LookupPath(                                 [                                     S(                                         "volume",                                         Py(                                             0x00007ffffdc0c230,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007ffffdc0c230,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007ffffff85420,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Float(                                             FloatValidator {                                                 strict: false,                                                 allow_inf_nan: true,                                             },                                         ),                                         name: "nullable[float]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[float]]",                             },                         ),                         frozen: false,                     },                 ],                 model_name: "file_volume",                 extra_behavior: Ignore,                 extras_validator: None,                 strict: false,                 from_attributes: false,                 loc_by_alias: true,             },         ),         class: Py(             0x0000555556bb6a80,         ),         post_init: None,         frozen: false,         custom_init: false,         root_model: false,         name: "file_volume",     }, ), definitions=[])[source]
__repr__()[source]

Return repr(self).

Return type:

str

__repr_args__()[source]
__repr_name__()[source]

Name of the instance’s class, used in __repr__.

Return type:

str

__repr_str__(join_str)[source]
Return type:

str

__rich_repr__()[source]

Used by Rich (https://rich.readthedocs.io/en/stable/pretty.html) to pretty print objects.

__setattr__(name, value)[source]

Implement setattr(self, name, value).

Return type:

None

__setstate__(state)[source]
Return type:

None

__signature__: ClassVar[Signature] = <Signature (*, completed_at: Optional[datetime.datetime] = None, created_at: datetime.datetime, error: Optional[str] = None, id: kittycad.models.uuid.Uuid, output_unit: kittycad.models.unit_volume.UnitVolume, src_format: kittycad.models.file_import_format.FileImportFormat, started_at: Optional[datetime.datetime] = None, status: kittycad.models.api_call_status.ApiCallStatus, type: Literal['file_volume'] = 'file_volume', updated_at: datetime.datetime, user_id: kittycad.models.uuid.Uuid, volume: Optional[float] = None) -> None>[source]
__slots__ = ('__dict__', '__pydantic_fields_set__', '__pydantic_extra__', '__pydantic_private__')[source]
__str__()[source]

Return str(self).

Return type:

str

_abc_impl = <_abc._abc_data object>[source]
_calculate_keys(*args, **kwargs)[source]
Return type:

Any

_check_frozen(name, value)[source]
Return type:

None

_copy_and_set_values(*args, **kwargs)[source]
Return type:

Any

classmethod _get_value(cls, *args, **kwargs)[source]
Return type:

Any

_iter(*args, **kwargs)[source]
Return type:

Any

completed_at: Optional[datetime][source]
classmethod construct(cls, _fields_set=None, **values)[source]
Return type:

Model

copy(*, include=None, exclude=None, update=None, deep=False)[source]

Returns a copy of the model.

!!! warning “Deprecated”

This method is now deprecated; use model_copy instead.

If you need include or exclude, use:

`py data = self.model_dump(include=include, exclude=exclude, round_trip=True) data = {**data, **(update or {})} copied = self.model_validate(data) `

Parameters:
  • include (AbstractSetIntStr | MappingIntStrAny | None) – Optional set or mapping specifying which fields to include in the copied model.

  • exclude (AbstractSetIntStr | MappingIntStrAny | None) – Optional set or mapping specifying which fields to exclude in the copied model.

  • update (Dict[str, Any] | None) – Optional dictionary of field-value pairs to override field values in the copied model.

  • deep (bool) – If True, the values of fields that are Pydantic models will be deep copied.

Return type:

Model

Returns:

A copy of the model with included, excluded and updated fields as specified.

created_at: datetime[source]
dict(*, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False)[source]
Return type:

Dict[str, Any]

error: Optional[str][source]
classmethod from_orm(cls, obj)[source]
Return type:

Model

id: Uuid[source]
json(*, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, encoder=PydanticUndefined, models_as_dict=PydanticUndefined, **dumps_kwargs)[source]
Return type:

str

property model_computed_fields: dict[str, ComputedFieldInfo][source]

Get the computed fields of this model instance.

Returns:

A dictionary of computed field names and their corresponding ComputedFieldInfo objects.

model_config: ClassVar[ConfigDict] = {}[source]

Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].

classmethod model_construct(_fields_set=None, **values)[source]

Creates a new instance of the Model class with validated data.

Creates a new model setting __dict__ and __pydantic_fields_set__ from trusted or pre-validated data. Default values are respected, but no other validation is performed. Behaves as if Config.extra = ‘allow’ was set since it adds all passed values

Parameters:
  • _fields_set (set[str] | None) – The set of field names accepted for the Model instance.

  • values (Any) – Trusted or pre-validated data dictionary.

Return type:

Model

Returns:

A new instance of the Model class with validated data.

model_copy(*, update=None, deep=False)[source]

Usage docs: https://docs.pydantic.dev/2.5/concepts/serialization/#model_copy

Returns a copy of the model.

Parameters:
  • update (dict[str, Any] | None) – Values to change/add in the new model. Note: the data is not validated before creating the new model. You should trust this data.

  • deep (bool) – Set to True to make a deep copy of the model.

Return type:

Model

Returns:

New model instance.

model_dump(*, mode='python', include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, round_trip=False, warnings=True)[source]

Usage docs: https://docs.pydantic.dev/2.5/concepts/serialization/#modelmodel_dump

Generate a dictionary representation of the model, optionally specifying which fields to include or exclude.

Parameters:
  • mode – The mode in which to_python should run. If mode is ‘json’, the dictionary will only contain JSON serializable types. If mode is ‘python’, the dictionary may contain any Python objects.

  • include – A list of fields to include in the output.

  • exclude – A list of fields to exclude from the output.

  • by_alias – Whether to use the field’s alias in the dictionary key if defined.

  • exclude_unset – Whether to exclude fields that have not been explicitly set.

  • exclude_defaults – Whether to exclude fields that are set to their default value from the output.

  • exclude_none – Whether to exclude fields that have a value of None from the output.

  • round_trip – Whether to enable serialization and deserialization round-trip support.

  • warnings – Whether to log warnings when invalid fields are encountered.

Returns:

A dictionary representation of the model.

model_dump_json(*, indent=None, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, round_trip=False, warnings=True)[source]

Usage docs: https://docs.pydantic.dev/2.5/concepts/serialization/#modelmodel_dump_json

Generates a JSON representation of the model using Pydantic’s to_json method.

Parameters:
  • indent – Indentation to use in the JSON output. If None is passed, the output will be compact.

  • include – Field(s) to include in the JSON output. Can take either a string or set of strings.

  • exclude – Field(s) to exclude from the JSON output. Can take either a string or set of strings.

  • by_alias – Whether to serialize using field aliases.

  • exclude_unset – Whether to exclude fields that have not been explicitly set.

  • exclude_defaults – Whether to exclude fields that have the default value.

  • exclude_none – Whether to exclude fields that have a value of None.

  • round_trip – Whether to use serialization/deserialization between JSON and class instance.

  • warnings – Whether to show any warnings that occurred during serialization.

Returns:

A JSON string representation of the model.

property model_extra[source]

Get extra fields set during validation.

Returns:

A dictionary of extra fields, or None if config.extra is not set to “allow”.

model_fields: ClassVar[dict[str, FieldInfo]] = {'completed_at': FieldInfo(annotation=Union[datetime, NoneType], required=False), 'created_at': FieldInfo(annotation=datetime, required=True), 'error': FieldInfo(annotation=Union[str, NoneType], required=False), 'id': FieldInfo(annotation=Uuid, required=True), 'output_unit': FieldInfo(annotation=UnitVolume, required=True), 'src_format': FieldInfo(annotation=FileImportFormat, required=True), 'started_at': FieldInfo(annotation=Union[datetime, NoneType], required=False), 'status': FieldInfo(annotation=ApiCallStatus, required=True), 'type': FieldInfo(annotation=Literal['file_volume'], required=False, default='file_volume'), 'updated_at': FieldInfo(annotation=datetime, required=True), 'user_id': FieldInfo(annotation=Uuid, required=True), 'volume': FieldInfo(annotation=Union[float, NoneType], required=False)}[source]

Metadata about the fields defined on the model, mapping of field names to [FieldInfo][pydantic.fields.FieldInfo].

This replaces Model.__fields__ from Pydantic V1.

property model_fields_set: set[str][source]

Returns the set of fields that have been explicitly set on this model instance.

Returns:

A set of strings representing the fields that have been set,

i.e. that were not filled from defaults.

classmethod model_json_schema(by_alias=True, ref_template='#/$defs/{model}', schema_generator=<class 'pydantic.json_schema.GenerateJsonSchema'>, mode='validation')[source]

Generates a JSON schema for a model class.

Parameters:
  • by_alias (bool) – Whether to use attribute aliases or not.

  • ref_template (str) – The reference template.

  • schema_generator (type[GenerateJsonSchema]) – To override the logic used to generate the JSON schema, as a subclass of GenerateJsonSchema with your desired modifications

  • mode (Literal['validation', 'serialization']) – The mode in which to generate the schema.

Return type:

dict[str, Any]

Returns:

The JSON schema for the given model class.

classmethod model_parametrized_name(params)[source]

Compute the class name for parametrizations of generic classes.

This method can be overridden to achieve a custom naming scheme for generic BaseModels.

Parameters:

params (tuple[type[Any], ...]) – Tuple of types of the class. Given a generic class Model with 2 type variables and a concrete model Model[str, int], the value (str, int) would be passed to params.

Return type:

str

Returns:

String representing the new class where params are passed to cls as type variables.

Raises:

TypeError – Raised when trying to generate concrete names for non-generic models.

model_post_init(_BaseModel__context)[source]

Override this method to perform additional initialization after __init__ and model_construct. This is useful if you want to do some validation that requires the entire model to be initialized.

Return type:

None

classmethod model_rebuild(*, force=False, raise_errors=True, _parent_namespace_depth=2, _types_namespace=None)[source]

Try to rebuild the pydantic-core schema for the model.

This may be necessary when one of the annotations is a ForwardRef which could not be resolved during the initial attempt to build the schema, and automatic rebuilding fails.

Parameters:
  • force – Whether to force the rebuilding of the model schema, defaults to False.

  • raise_errors – Whether to raise errors, defaults to True.

  • _parent_namespace_depth – The depth level of the parent namespace, defaults to 2.

  • _types_namespace – The types namespace, defaults to None.

Returns:

Returns None if the schema is already “complete” and rebuilding was not required. If rebuilding _was_ required, returns True if rebuilding was successful, otherwise False.

classmethod model_validate(obj, *, strict=None, from_attributes=None, context=None)[source]

Validate a pydantic model instance.

Parameters:
  • obj (Any) – The object to validate.

  • strict (bool | None) – Whether to raise an exception on invalid fields.

  • from_attributes (bool | None) – Whether to extract data from object attributes.

  • context (dict[str, Any] | None) – Additional context to pass to the validator.

Raises:

ValidationError – If the object could not be validated.

Return type:

Model

Returns:

The validated model instance.

classmethod model_validate_json(json_data, *, strict=None, context=None)[source]

Usage docs: https://docs.pydantic.dev/2.5/concepts/json/#json-parsing

Validate the given JSON data against the Pydantic model.

Parameters:
  • json_data (str | bytes | bytearray) – The JSON data to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • context (dict[str, Any] | None) – Extra variables to pass to the validator.

Return type:

Model

Returns:

The validated Pydantic model.

Raises:

ValueError – If json_data is not a JSON string.

classmethod model_validate_strings(obj, *, strict=None, context=None)[source]

Validate the given object contains string data against the Pydantic model.

Parameters:
  • obj (Any) – The object contains string data to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • context (dict[str, Any] | None) – Extra variables to pass to the validator.

Return type:

Model

Returns:

The validated Pydantic model.

output_unit: UnitVolume[source]
classmethod parse_file(cls, path, *, content_type=None, encoding='utf8', proto=None, allow_pickle=False)[source]
Return type:

Model

classmethod parse_obj(cls, obj)[source]
Return type:

Model

classmethod parse_raw(cls, b, *, content_type=None, encoding='utf8', proto=None, allow_pickle=False)[source]
Return type:

Model

classmethod schema(cls, by_alias=True, ref_template='#/$defs/{model}')[source]
Return type:

Dict[str, Any]

classmethod schema_json(cls, *, by_alias=True, ref_template='#/$defs/{model}', **dumps_kwargs)[source]
Return type:

str

src_format: FileImportFormat[source]
started_at: Optional[datetime][source]
status: ApiCallStatus[source]
type: Literal['file_volume'][source]
classmethod update_forward_refs(cls, **localns)[source]
Return type:

None

updated_at: datetime[source]
user_id: Uuid[source]
classmethod validate(cls, value)[source]
Return type:

Model

volume: Optional[float][source]
class kittycad.models.async_api_call_output.text_to_cad(**data)[source][source]

Text to CAD.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

__init__ uses __pydantic_self__ instead of the more common self for the first arg to allow self as a field name.

__abstractmethods__ = frozenset({})[source]
__annotations__ = {'__class_vars__': 'ClassVar[set[str]]', '__private_attributes__': 'ClassVar[dict[str, ModelPrivateAttr]]', '__pydantic_complete__': 'ClassVar[bool]', '__pydantic_core_schema__': 'ClassVar[CoreSchema]', '__pydantic_custom_init__': 'ClassVar[bool]', '__pydantic_decorators__': 'ClassVar[_decorators.DecoratorInfos]', '__pydantic_extra__': 'dict[str, Any] | None', '__pydantic_fields_set__': 'set[str]', '__pydantic_generic_metadata__': 'ClassVar[_generics.PydanticGenericMetadata]', '__pydantic_parent_namespace__': 'ClassVar[dict[str, Any] | None]', '__pydantic_post_init__': "ClassVar[None | Literal['model_post_init']]", '__pydantic_private__': 'dict[str, Any] | None', '__pydantic_root_model__': 'ClassVar[bool]', '__pydantic_serializer__': 'ClassVar[SchemaSerializer]', '__pydantic_validator__': 'ClassVar[SchemaValidator]', '__signature__': 'ClassVar[Signature]', 'completed_at': typing.Optional[datetime.datetime], 'created_at': <class 'datetime.datetime'>, 'error': typing.Optional[str], 'feedback': typing.Optional[kittycad.models.ai_feedback.AiFeedback], 'id': <class 'kittycad.models.uuid.Uuid'>, 'model_config': 'ClassVar[ConfigDict]', 'model_fields': 'ClassVar[dict[str, FieldInfo]]', 'model_version': <class 'str'>, 'output_format': <enum 'FileExportFormat'>, 'outputs': typing.Optional[typing.Dict[str, kittycad.models.base64data.Base64Data]], 'prompt': <class 'str'>, 'started_at': typing.Optional[datetime.datetime], 'status': <enum 'ApiCallStatus'>, 'type': typing.Literal['text_to_cad'], 'updated_at': <class 'datetime.datetime'>, 'user_id': <class 'kittycad.models.uuid.Uuid'>}[source]
classmethod __class_getitem__(typevar_values)[source]
__class_vars__: ClassVar[set[str]] = {}[source]
__copy__()[source]

Returns a shallow copy of the model.

Return type:

Model

__deepcopy__(memo=None)[source]

Returns a deep copy of the model.

Return type:

Model

__delattr__(item)[source]

Implement delattr(self, name).

Return type:

Any

__dict__[source]
__eq__(other)[source]

Return self==value.

Return type:

bool

__fields__ = {'completed_at': FieldInfo(annotation=Union[datetime, NoneType], required=False), 'created_at': FieldInfo(annotation=datetime, required=True), 'error': FieldInfo(annotation=Union[str, NoneType], required=False), 'feedback': FieldInfo(annotation=Union[AiFeedback, NoneType], required=False), 'id': FieldInfo(annotation=Uuid, required=True), 'model_version': FieldInfo(annotation=str, required=True), 'output_format': FieldInfo(annotation=FileExportFormat, required=True), 'outputs': FieldInfo(annotation=Union[Dict[str, kittycad.models.base64data.Base64Data], NoneType], required=False), 'prompt': FieldInfo(annotation=str, required=True), 'started_at': FieldInfo(annotation=Union[datetime, NoneType], required=False), 'status': FieldInfo(annotation=ApiCallStatus, required=True), 'type': FieldInfo(annotation=Literal['text_to_cad'], required=False, default='text_to_cad'), 'updated_at': FieldInfo(annotation=datetime, required=True), 'user_id': FieldInfo(annotation=Uuid, required=True)}[source]
property __fields_set__: set[str][source]
classmethod __get_pydantic_core_schema__(_BaseModel__source, _BaseModel__handler)[source]

Hook into generating the model’s CoreSchema.

Parameters:
  • __source – The class we are generating a schema for. This will generally be the same as the cls argument if this is a classmethod.

  • __handler – Call into Pydantic’s internal JSON schema generation. A callable that calls into Pydantic’s internal CoreSchema generation logic.

Return type:

Union[AnySchema, NoneSchema, BoolSchema, IntSchema, FloatSchema, DecimalSchema, StringSchema, BytesSchema, DateSchema, TimeSchema, DatetimeSchema, TimedeltaSchema, LiteralSchema, IsInstanceSchema, IsSubclassSchema, CallableSchema, ListSchema, TuplePositionalSchema, TupleVariableSchema, SetSchema, FrozenSetSchema, GeneratorSchema, DictSchema, AfterValidatorFunctionSchema, BeforeValidatorFunctionSchema, WrapValidatorFunctionSchema, PlainValidatorFunctionSchema, WithDefaultSchema, NullableSchema, UnionSchema, TaggedUnionSchema, ChainSchema, LaxOrStrictSchema, JsonOrPythonSchema, TypedDictSchema, ModelFieldsSchema, ModelSchema, DataclassArgsSchema, DataclassSchema, ArgumentsSchema, CallSchema, CustomErrorSchema, JsonSchema, UrlSchema, MultiHostUrlSchema, DefinitionsSchema, DefinitionReferenceSchema, UuidSchema]

Returns:

A pydantic-core CoreSchema.

classmethod __get_pydantic_json_schema__(_BaseModel__core_schema, _BaseModel__handler)[source]

Hook into generating the model’s JSON schema.

Parameters:
  • __core_schema – A pydantic-core CoreSchema. You can ignore this argument and call the handler with a new CoreSchema, wrap this CoreSchema ({‘type’: ‘nullable’, ‘schema’: current_schema}), or just call the handler with the original schema.

  • __handler – Call into Pydantic’s internal JSON schema generation. This will raise a pydantic.errors.PydanticInvalidForJsonSchema if JSON schema generation fails. Since this gets called by BaseModel.model_json_schema you can override the schema_generator argument to that function to change JSON schema generation globally for a type.

Return type:

Dict[str, Any]

Returns:

A JSON schema, as a Python object.

__getattr__(item)[source]
Return type:

Any

__getstate__()[source]
Return type:

dict[Any, Any]

__hash__ = None[source]
__init__(**data)[source]

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

__init__ uses __pydantic_self__ instead of the more common self for the first arg to allow self as a field name.

__iter__()[source]

So dict(model) works.

Return type:

TupleGenerator

__module__ = 'kittycad.models.async_api_call_output'[source]
__pretty__(fmt, **kwargs)[source]

Used by devtools (https://python-devtools.helpmanual.io/) to pretty print objects.

Return type:

Generator[Any, None, None]

__private_attributes__: ClassVar[dict[str, ModelPrivateAttr]] = {}[source]
__pydantic_complete__: ClassVar[bool] = True[source]
__pydantic_core_schema__: ClassVar[CoreSchema] = {'cls': <class 'kittycad.models.async_api_call_output.text_to_cad'>, 'config': {'title': 'text_to_cad'}, 'custom_init': False, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_annotation_functions': [], 'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'kittycad.models.async_api_call_output.text_to_cad'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.async_api_call_output.text_to_cad'>>]}, 'ref': 'kittycad.models.async_api_call_output.text_to_cad:93825015870224', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'completed_at': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_annotation_functions': [<bound method InnerSchemaValidator.__get_pydantic_json_schema__ of InnerSchemaValidator(core_schema={'type': 'datetime', 'microseconds_precision': 'truncate', 'metadata': {'pydantic_js_annotation_functions': [...], 'pydantic.internal.needs_apply_discriminated_union': False}}, js_schema=None, js_core_schema=None, js_schema_update=None)>]}, 'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'created_at': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'metadata': {'pydantic_js_annotation_functions': [<bound method InnerSchemaValidator.__get_pydantic_json_schema__ of InnerSchemaValidator(core_schema={'type': 'datetime', 'microseconds_precision': 'truncate', 'metadata': {'pydantic_js_annotation_functions': [...]}}, js_schema=None, js_core_schema=None, js_schema_update=None)>]}, 'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'model-field'}, 'error': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'feedback': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'lax_schema': {'steps': [{'type': 'str'}, {'type': 'function-plain', 'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}}], 'type': 'chain'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_functions': [<function get_enum_core_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.ai_feedback.AiFeedback:93825012033616', 'strict_schema': {'json_schema': {'function': {'function': <function get_enum_core_schema.<locals>.to_enum>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'python_schema': {'cls': <enum 'AiFeedback'>, 'type': 'is-instance'}, 'type': 'json-or-python'}, 'type': 'lax-or-strict'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'id': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'function': {'function': <class 'kittycad.models.uuid.Uuid'>, 'type': 'no-info'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'function-after'}, 'type': 'model-field'}, 'model_version': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'model-field'}, 'output_format': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'lax_schema': {'steps': [{'type': 'str'}, {'type': 'function-plain', 'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}}], 'type': 'chain'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_functions': [<function get_enum_core_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.file_export_format.FileExportFormat:93825014565136', 'strict_schema': {'json_schema': {'function': {'function': <function get_enum_core_schema.<locals>.to_enum>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'python_schema': {'cls': <enum 'FileExportFormat'>, 'type': 'is-instance'}, 'type': 'json-or-python'}, 'type': 'lax-or-strict'}, 'type': 'model-field'}, 'outputs': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'keys_schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'strict': False, 'type': 'dict', 'values_schema': {'function': {'function': <class 'kittycad.models.base64data.Base64Data'>, 'type': 'no-info'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'bytes'}, 'type': 'function-after'}}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'prompt': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'model-field'}, 'started_at': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_annotation_functions': [<bound method InnerSchemaValidator.__get_pydantic_json_schema__ of InnerSchemaValidator(core_schema={'type': 'datetime', 'microseconds_precision': 'truncate', 'metadata': {'pydantic_js_annotation_functions': [...], 'pydantic.internal.needs_apply_discriminated_union': False}}, js_schema=None, js_core_schema=None, js_schema_update=None)>]}, 'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'status': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'lax_schema': {'steps': [{'type': 'str'}, {'type': 'function-plain', 'function': {'type': 'no-info', 'function': <function get_enum_core_schema.<locals>.to_enum>}}], 'type': 'chain'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_functions': [<function get_enum_core_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.api_call_status.ApiCallStatus:93825014051056', 'strict_schema': {'json_schema': {'function': {'function': <function get_enum_core_schema.<locals>.to_enum>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'python_schema': {'cls': <enum 'ApiCallStatus'>, 'type': 'is-instance'}, 'type': 'json-or-python'}, 'type': 'lax-or-strict'}, 'type': 'model-field'}, 'type': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': 'text_to_cad', 'schema': {'expected': ['text_to_cad'], 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'literal'}, 'type': 'default'}, 'type': 'model-field'}, 'updated_at': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'metadata': {'pydantic_js_annotation_functions': [<bound method InnerSchemaValidator.__get_pydantic_json_schema__ of InnerSchemaValidator(core_schema={'type': 'datetime', 'microseconds_precision': 'truncate', 'metadata': {'pydantic_js_annotation_functions': [...]}}, js_schema=None, js_core_schema=None, js_schema_update=None)>]}, 'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'model-field'}, 'user_id': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'function': {'function': <class 'kittycad.models.uuid.Uuid'>, 'type': 'no-info'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'function-after'}, 'type': 'model-field'}}, 'model_name': 'text_to_cad', 'type': 'model-fields'}, 'type': 'model'}[source]
__pydantic_custom_init__: ClassVar[bool] = False[source]
__pydantic_decorators__: ClassVar[_decorators.DecoratorInfos] = DecoratorInfos(validators={}, field_validators={}, root_validators={}, field_serializers={}, model_serializers={}, model_validators={}, computed_fields={})[source]
__pydantic_extra__: dict[str, Any] | None[source]
__pydantic_fields_set__: set[str][source]
__pydantic_generic_metadata__: ClassVar[_generics.PydanticGenericMetadata] = {'args': (), 'origin': None, 'parameters': ()}[source]
classmethod __pydantic_init_subclass__(**kwargs)[source]

This is intended to behave just like __init_subclass__, but is called by ModelMetaclass only after the class is actually fully initialized. In particular, attributes like model_fields will be present when this is called.

This is necessary because __init_subclass__ will always be called by type.__new__, and it would require a prohibitively large refactor to the ModelMetaclass to ensure that type.__new__ was called in such a manner that the class would already be sufficiently initialized.

This will receive the same kwargs that would be passed to the standard __init_subclass__, namely, any kwargs passed to the class definition that aren’t used internally by pydantic.

Parameters:

**kwargs (Any) – Any keyword arguments passed to the class definition that aren’t used internally by pydantic.

Return type:

None

__pydantic_parent_namespace__: ClassVar[dict[str, Any] | None] = {'AiFeedback': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Annotated': <pydantic._internal._model_construction._PydanticWeakRef object>, 'ApiCallStatus': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Base64Data': <pydantic._internal._model_construction._PydanticWeakRef object>, 'BaseModel': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Dict': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Field': <pydantic._internal._model_construction._PydanticWeakRef object>, 'FileExportFormat': <pydantic._internal._model_construction._PydanticWeakRef object>, 'FileImportFormat': <pydantic._internal._model_construction._PydanticWeakRef object>, 'InputFormat': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Literal': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Optional': <pydantic._internal._model_construction._PydanticWeakRef object>, 'OutputFormat': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Point3d': <pydantic._internal._model_construction._PydanticWeakRef object>, 'RootModel': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Union': <pydantic._internal._model_construction._PydanticWeakRef object>, 'UnitArea': <pydantic._internal._model_construction._PydanticWeakRef object>, 'UnitDensity': <pydantic._internal._model_construction._PydanticWeakRef object>, 'UnitLength': <pydantic._internal._model_construction._PydanticWeakRef object>, 'UnitMass': <pydantic._internal._model_construction._PydanticWeakRef object>, 'UnitVolume': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Uuid': <pydantic._internal._model_construction._PydanticWeakRef object>, '__builtins__': {'ArithmeticError': <class 'ArithmeticError'>, 'AssertionError': <class 'AssertionError'>, 'AttributeError': <class 'AttributeError'>, 'BaseException': <class 'BaseException'>, 'BlockingIOError': <class 'BlockingIOError'>, 'BrokenPipeError': <class 'BrokenPipeError'>, 'BufferError': <class 'BufferError'>, 'BytesWarning': <class 'BytesWarning'>, 'ChildProcessError': <class 'ChildProcessError'>, 'ConnectionAbortedError': <class 'ConnectionAbortedError'>, 'ConnectionError': <class 'ConnectionError'>, 'ConnectionRefusedError': <class 'ConnectionRefusedError'>, 'ConnectionResetError': <class 'ConnectionResetError'>, 'DeprecationWarning': <class 'DeprecationWarning'>, 'EOFError': <class 'EOFError'>, 'Ellipsis': Ellipsis, 'EnvironmentError': <class 'OSError'>, 'Exception': <class 'Exception'>, 'False': False, 'FileExistsError': <class 'FileExistsError'>, 'FileNotFoundError': <class 'FileNotFoundError'>, 'FloatingPointError': <class 'FloatingPointError'>, 'FutureWarning': <class 'FutureWarning'>, 'GeneratorExit': <class 'GeneratorExit'>, 'IOError': <class 'OSError'>, 'ImportError': <class 'ImportError'>, 'ImportWarning': <class 'ImportWarning'>, 'IndentationError': <class 'IndentationError'>, 'IndexError': <class 'IndexError'>, 'InterruptedError': <class 'InterruptedError'>, 'IsADirectoryError': <class 'IsADirectoryError'>, 'KeyError': <class 'KeyError'>, 'KeyboardInterrupt': <class 'KeyboardInterrupt'>, 'LookupError': <class 'LookupError'>, 'MemoryError': <class 'MemoryError'>, 'ModuleNotFoundError': <class 'ModuleNotFoundError'>, 'NameError': <class 'NameError'>, 'None': None, 'NotADirectoryError': <class 'NotADirectoryError'>, 'NotImplemented': NotImplemented, 'NotImplementedError': <class 'NotImplementedError'>, 'OSError': <class 'OSError'>, 'OverflowError': <class 'OverflowError'>, 'PendingDeprecationWarning': <class 'PendingDeprecationWarning'>, 'PermissionError': <class 'PermissionError'>, 'ProcessLookupError': <class 'ProcessLookupError'>, 'RecursionError': <class 'RecursionError'>, 'ReferenceError': <class 'ReferenceError'>, 'ResourceWarning': <class 'ResourceWarning'>, 'RuntimeError': <class 'RuntimeError'>, 'RuntimeWarning': <class 'RuntimeWarning'>, 'StopAsyncIteration': <class 'StopAsyncIteration'>, 'StopIteration': <class 'StopIteration'>, 'SyntaxError': <class 'SyntaxError'>, 'SyntaxWarning': <class 'SyntaxWarning'>, 'SystemError': <class 'SystemError'>, 'SystemExit': <class 'SystemExit'>, 'TabError': <class 'TabError'>, 'TimeoutError': <class 'TimeoutError'>, 'True': True, 'TypeError': <class 'TypeError'>, 'UnboundLocalError': <class 'UnboundLocalError'>, 'UnicodeDecodeError': <class 'UnicodeDecodeError'>, 'UnicodeEncodeError': <class 'UnicodeEncodeError'>, 'UnicodeError': <class 'UnicodeError'>, 'UnicodeTranslateError': <class 'UnicodeTranslateError'>, 'UnicodeWarning': <class 'UnicodeWarning'>, 'UserWarning': <class 'UserWarning'>, 'ValueError': <class 'ValueError'>, 'Warning': <class 'Warning'>, 'ZeroDivisionError': <class 'ZeroDivisionError'>, '__build_class__': <built-in function __build_class__>, '__debug__': True, '__doc__': "Built-in functions, exceptions, and other objects.\n\nNoteworthy: None is the `nil' object; Ellipsis represents `...' in slices.", '__import__': <built-in function __import__>, '__loader__': <class '_frozen_importlib.BuiltinImporter'>, '__name__': 'builtins', '__package__': '', '__spec__': ModuleSpec(name='builtins', loader=<class '_frozen_importlib.BuiltinImporter'>, origin='built-in'), 'abs': <built-in function abs>, 'all': <built-in function all>, 'any': <built-in function any>, 'ascii': <built-in function ascii>, 'bin': <built-in function bin>, 'bool': <class 'bool'>, 'breakpoint': <built-in function breakpoint>, 'bytearray': <class 'bytearray'>, 'bytes': <class 'bytes'>, 'callable': <built-in function callable>, 'chr': <built-in function chr>, 'classmethod': <class 'classmethod'>, 'compile': <built-in function compile>, 'complex': <class 'complex'>, 'copyright': Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved.  Copyright (c) 2000 BeOpen.com. All Rights Reserved.  Copyright (c) 1995-2001 Corporation for National Research Initiatives. All Rights Reserved.  Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam. All Rights Reserved., 'credits':     Thanks to CWI, CNRI, BeOpen.com, Zope Corporation and a cast of thousands     for supporting Python development.  See www.python.org for more information., 'delattr': <built-in function delattr>, 'dict': <class 'dict'>, 'dir': <built-in function dir>, 'divmod': <built-in function divmod>, 'enumerate': <class 'enumerate'>, 'eval': <built-in function eval>, 'exec': <built-in function exec>, 'exit': Use exit() or Ctrl-D (i.e. EOF) to exit, 'filter': <class 'filter'>, 'float': <class 'float'>, 'format': <built-in function format>, 'frozenset': <class 'frozenset'>, 'getattr': <built-in function getattr>, 'globals': <built-in function globals>, 'hasattr': <built-in function hasattr>, 'hash': <built-in function hash>, 'help': Type help() for interactive help, or help(object) for help about object., 'hex': <built-in function hex>, 'id': <built-in function id>, 'input': <built-in function input>, 'int': <class 'int'>, 'isinstance': <built-in function isinstance>, 'issubclass': <built-in function issubclass>, 'iter': <built-in function iter>, 'len': <built-in function len>, 'license': Type license() to see the full license text, 'list': <class 'list'>, 'locals': <built-in function locals>, 'map': <class 'map'>, 'max': <built-in function max>, 'memoryview': <class 'memoryview'>, 'min': <built-in function min>, 'next': <built-in function next>, 'object': <class 'object'>, 'oct': <built-in function oct>, 'open': <built-in function open>, 'ord': <built-in function ord>, 'pow': <built-in function pow>, 'print': <built-in function print>, 'property': <class 'property'>, 'quit': Use quit() or Ctrl-D (i.e. EOF) to exit, 'range': <class 'range'>, 'repr': <built-in function repr>, 'reversed': <class 'reversed'>, 'round': <built-in function round>, 'set': <class 'set'>, 'setattr': <built-in function setattr>, 'slice': <class 'slice'>, 'sorted': <built-in function sorted>, 'staticmethod': <class 'staticmethod'>, 'str': <class 'str'>, 'sum': <built-in function sum>, 'super': <class 'super'>, 'tuple': <class 'tuple'>, 'type': <class 'type'>, 'vars': <built-in function vars>, 'zip': <class 'zip'>}, '__cached__': '/home/user/src/kittycad/models/__pycache__/async_api_call_output.cpython-39.pyc', '__doc__': <pydantic._internal._model_construction._PydanticWeakRef object>, '__file__': '/home/user/src/kittycad/models/async_api_call_output.py', '__loader__': <pydantic._internal._model_construction._PydanticWeakRef object>, '__name__': 'kittycad.models.async_api_call_output', '__package__': 'kittycad.models', '__spec__': <pydantic._internal._model_construction._PydanticWeakRef object>, 'datetime': <pydantic._internal._model_construction._PydanticWeakRef object>, 'file_center_of_mass': <pydantic._internal._model_construction._PydanticWeakRef object>, 'file_conversion': <pydantic._internal._model_construction._PydanticWeakRef object>, 'file_density': <pydantic._internal._model_construction._PydanticWeakRef object>, 'file_mass': <pydantic._internal._model_construction._PydanticWeakRef object>, 'file_surface_area': <pydantic._internal._model_construction._PydanticWeakRef object>, 'file_volume': <pydantic._internal._model_construction._PydanticWeakRef object>}[source]
__pydantic_post_init__: ClassVar[None | Literal['model_post_init']] = None[source]
__pydantic_private__: dict[str, Any] | None[source]
__pydantic_root_model__: ClassVar[bool] = False[source]
__pydantic_serializer__: ClassVar[SchemaSerializer] = SchemaSerializer(serializer=Model(     ModelSerializer {         class: Py(             0x0000555556bdf310,         ),         serializer: Fields(             GeneralFieldsSerializer {                 fields: {                     "model_version": SerField {                         key_py: Py(                             0x00007fffe1c95cb0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Str(                                 StrSerializer,                             ),                         ),                         required: true,                     },                     "id": SerField {                         key_py: Py(                             0x00007fffff8eb3b0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Str(                                 StrSerializer,                             ),                         ),                         required: true,                     },                     "completed_at": SerField {                         key_py: Py(                             0x00007fffe1c78a70,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007ffffff85420,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Datetime(                                                 DatetimeSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "prompt": SerField {                         key_py: Py(                             0x00007fffff8974f0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Str(                                 StrSerializer,                             ),                         ),                         required: true,                     },                     "user_id": SerField {                         key_py: Py(                             0x00007fffe137c730,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Str(                                 StrSerializer,                             ),                         ),                         required: true,                     },                     "error": SerField {                         key_py: Py(                             0x00007fffff904b70,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007ffffff85420,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Str(                                                 StrSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "status": SerField {                         key_py: Py(                             0x00007fffff6e27f0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             JsonOrPython(                                 JsonOrPythonSerializer {                                     json: Str(                                         StrSerializer,                                     ),                                     python: Any(                                         AnySerializer,                                     ),                                     name: "json-or-python[json=str, python=any]",                                 },                             ),                         ),                         required: true,                     },                     "type": SerField {                         key_py: Py(                             0x00007fffff8ebef0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fffe1c7b030,                                         ),                                     ),                                     serializer: Literal(                                         LiteralSerializer {                                             expected_int: {},                                             expected_str: {                                                 "text_to_cad",                                             },                                             expected_py: None,                                             name: "literal['text_to_cad']",                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "outputs": SerField {                         key_py: Py(                             0x00007fffe35f2670,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007ffffff85420,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Dict(                                                 DictSerializer {                                                     key_serializer: Str(                                                         StrSerializer,                                                     ),                                                     value_serializer: Bytes(                                                         BytesSerializer,                                                     ),                                                     filter: SchemaFilter {                                                         include: None,                                                         exclude: None,                                                     },                                                     name: "dict[str, bytes]",                                                 },                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "output_format": SerField {                         key_py: Py(                             0x00007fffe1c7b830,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             JsonOrPython(                                 JsonOrPythonSerializer {                                     json: Str(                                         StrSerializer,                                     ),                                     python: Any(                                         AnySerializer,                                     ),                                     name: "json-or-python[json=str, python=any]",                                 },                             ),                         ),                         required: true,                     },                     "started_at": SerField {                         key_py: Py(                             0x00007fffe137cbf0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007ffffff85420,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Datetime(                                                 DatetimeSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "feedback": SerField {                         key_py: Py(                             0x00007fffe155ff30,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007ffffff85420,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: JsonOrPython(                                                 JsonOrPythonSerializer {                                                     json: Str(                                                         StrSerializer,                                                     ),                                                     python: Any(                                                         AnySerializer,                                                     ),                                                     name: "json-or-python[json=str, python=any]",                                                 },                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "updated_at": SerField {                         key_py: Py(                             0x00007fffe137c6b0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Datetime(                                 DatetimeSerializer,                             ),                         ),                         required: true,                     },                     "created_at": SerField {                         key_py: Py(                             0x00007fffe12ecdf0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Datetime(                                 DatetimeSerializer,                             ),                         ),                         required: true,                     },                 },                 computed_fields: Some(                     ComputedFields(                         [],                     ),                 ),                 mode: SimpleDict,                 extra_serializer: None,                 filter: SchemaFilter {                     include: None,                     exclude: None,                 },                 required_fields: 14,             },         ),         has_extra: false,         root_model: false,         name: "text_to_cad",     }, ), definitions=[])[source]
__pydantic_validator__: ClassVar[SchemaValidator] = SchemaValidator(title="text_to_cad", validator=Model(     ModelValidator {         revalidate: Never,         validator: ModelFields(             ModelFieldsValidator {                 fields: [                     Field {                         name: "completed_at",                         lookup_key: Simple {                             key: "completed_at",                             py_key: Py(                                 0x00007fffe1c78a70,                             ),                             path: LookupPath(                                 [                                     S(                                         "completed_at",                                         Py(                                             0x00007fffe1c78a70,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe1c78a70,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007ffffff85420,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Datetime(                                             DateTimeValidator {                                                 strict: false,                                                 constraints: None,                                                 microseconds_precision: Truncate,                                             },                                         ),                                         name: "nullable[datetime]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[datetime]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "created_at",                         lookup_key: Simple {                             key: "created_at",                             py_key: Py(                                 0x00007fffe12ecdf0,                             ),                             path: LookupPath(                                 [                                     S(                                         "created_at",                                         Py(                                             0x00007fffe12ecdf0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe12ecdf0,                         ),                         validator: Datetime(                             DateTimeValidator {                                 strict: false,                                 constraints: None,                                 microseconds_precision: Truncate,                             },                         ),                         frozen: false,                     },                     Field {                         name: "error",                         lookup_key: Simple {                             key: "error",                             py_key: Py(                                 0x00007fffff904b70,                             ),                             path: LookupPath(                                 [                                     S(                                         "error",                                         Py(                                             0x00007fffff904b70,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffff904b70,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007ffffff85420,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Str(                                             StrValidator {                                                 strict: false,                                                 coerce_numbers_to_str: false,                                             },                                         ),                                         name: "nullable[str]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[str]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "feedback",                         lookup_key: Simple {                             key: "feedback",                             py_key: Py(                                 0x00007fffe155ff30,                             ),                             path: LookupPath(                                 [                                     S(                                         "feedback",                                         Py(                                             0x00007fffe155ff30,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe155ff30,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007ffffff85420,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: LaxOrStrict(                                             LaxOrStrictValidator {                                                 strict: false,                                                 lax_validator: Chain(                                                     ChainValidator {                                                         steps: [                                                             Str(                                                                 StrValidator {                                                                     strict: false,                                                                     coerce_numbers_to_str: false,                                                                 },                                                             ),                                                             FunctionPlain(                                                                 FunctionPlainValidator {                                                                     func: Py(                                                                         0x00007fffe13d65e0,                                                                     ),                                                                     config: Py(                                                                         0x00007fffe13e9440,                                                                     ),                                                                     name: "function-plain[to_enum()]",                                                                     field_name: None,                                                                     info_arg: false,                                                                 },                                                             ),                                                         ],                                                         name: "chain[str,function-plain[to_enum()]]",                                                     },                                                 ),                                                 strict_validator: JsonOrPython(                                                     JsonOrPython {                                                         json: FunctionAfter(                                                             FunctionAfterValidator {                                                                 validator: Str(                                                                     StrValidator {                                                                         strict: false,                                                                         coerce_numbers_to_str: false,                                                                     },                                                                 ),                                                                 func: Py(                                                                     0x00007fffe13d65e0,                                                                 ),                                                                 config: Py(                                                                     0x00007fffe13e9440,                                                                 ),                                                                 name: "function-after[to_enum(), str]",                                                                 field_name: None,                                                                 info_arg: false,                                                             },                                                         ),                                                         python: IsInstance(                                                             IsInstanceValidator {                                                                 class: Py(                                                                     0x0000555556836850,                                                                 ),                                                                 class_repr: "AiFeedback",                                                                 name: "is-instance[AiFeedback]",                                                             },                                                         ),                                                         name: "json-or-python[json=function-after[to_enum(), str],python=is-instance[AiFeedback]]",                                                     },                                                 ),                                                 name: "lax-or-strict[lax=chain[str,function-plain[to_enum()]],strict=json-or-python[json=function-after[to_enum(), str],python=is-instance[AiFeedback]]]",                                             },                                         ),                                         name: "nullable[lax-or-strict[lax=chain[str,function-plain[to_enum()]],strict=json-or-python[json=function-after[to_enum(), str],python=is-instance[AiFeedback]]]]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[lax-or-strict[lax=chain[str,function-plain[to_enum()]],strict=json-or-python[json=function-after[to_enum(), str],python=is-instance[AiFeedback]]]]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "id",                         lookup_key: Simple {                             key: "id",                             py_key: Py(                                 0x00007fffff8eb3b0,                             ),                             path: LookupPath(                                 [                                     S(                                         "id",                                         Py(                                             0x00007fffff8eb3b0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffff8eb3b0,                         ),                         validator: FunctionAfter(                             FunctionAfterValidator {                                 validator: Str(                                     StrValidator {                                         strict: false,                                         coerce_numbers_to_str: false,                                     },                                 ),                                 func: Py(                                     0x0000555556a23980,                                 ),                                 config: Py(                                     0x00007fffe13e9440,                                 ),                                 name: "function-after[Uuid(), str]",                                 field_name: None,                                 info_arg: false,                             },                         ),                         frozen: false,                     },                     Field {                         name: "model_version",                         lookup_key: Simple {                             key: "model_version",                             py_key: Py(                                 0x00007fffe1c95cb0,                             ),                             path: LookupPath(                                 [                                     S(                                         "model_version",                                         Py(                                             0x00007fffe1c95cb0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe1c95cb0,                         ),                         validator: Str(                             StrValidator {                                 strict: false,                                 coerce_numbers_to_str: false,                             },                         ),                         frozen: false,                     },                     Field {                         name: "output_format",                         lookup_key: Simple {                             key: "output_format",                             py_key: Py(                                 0x00007fffe1c7b830,                             ),                             path: LookupPath(                                 [                                     S(                                         "output_format",                                         Py(                                             0x00007fffe1c7b830,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe1c7b830,                         ),                         validator: LaxOrStrict(                             LaxOrStrictValidator {                                 strict: false,                                 lax_validator: Chain(                                     ChainValidator {                                         steps: [                                             Str(                                                 StrValidator {                                                     strict: false,                                                     coerce_numbers_to_str: false,                                                 },                                             ),                                             FunctionPlain(                                                 FunctionPlainValidator {                                                     func: Py(                                                         0x00007fffe13d68b0,                                                     ),                                                     config: Py(                                                         0x00007fffe13e9440,                                                     ),                                                     name: "function-plain[to_enum()]",                                                     field_name: None,                                                     info_arg: false,                                                 },                                             ),                                         ],                                         name: "chain[str,function-plain[to_enum()]]",                                     },                                 ),                                 strict_validator: JsonOrPython(                                     JsonOrPython {                                         json: FunctionAfter(                                             FunctionAfterValidator {                                                 validator: Str(                                                     StrValidator {                                                         strict: false,                                                         coerce_numbers_to_str: false,                                                     },                                                 ),                                                 func: Py(                                                     0x00007fffe13d68b0,                                                 ),                                                 config: Py(                                                     0x00007fffe13e9440,                                                 ),                                                 name: "function-after[to_enum(), str]",                                                 field_name: None,                                                 info_arg: false,                                             },                                         ),                                         python: IsInstance(                                             IsInstanceValidator {                                                 class: Py(                                                     0x0000555556aa0910,                                                 ),                                                 class_repr: "FileExportFormat",                                                 name: "is-instance[FileExportFormat]",                                             },                                         ),                                         name: "json-or-python[json=function-after[to_enum(), str],python=is-instance[FileExportFormat]]",                                     },                                 ),                                 name: "lax-or-strict[lax=chain[str,function-plain[to_enum()]],strict=json-or-python[json=function-after[to_enum(), str],python=is-instance[FileExportFormat]]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "outputs",                         lookup_key: Simple {                             key: "outputs",                             py_key: Py(                                 0x00007fffe35f2670,                             ),                             path: LookupPath(                                 [                                     S(                                         "outputs",                                         Py(                                             0x00007fffe35f2670,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe35f2670,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007ffffff85420,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Dict(                                             DictValidator {                                                 strict: false,                                                 key_validator: Str(                                                     StrValidator {                                                         strict: false,                                                         coerce_numbers_to_str: false,                                                     },                                                 ),                                                 value_validator: FunctionAfter(                                                     FunctionAfterValidator {                                                         validator: Bytes(                                                             BytesValidator {                                                                 strict: false,                                                             },                                                         ),                                                         func: Py(                                                             0x0000555556b67730,                                                         ),                                                         config: Py(                                                             0x00007fffe13e9440,                                                         ),                                                         name: "function-after[Base64Data(), bytes]",                                                         field_name: None,                                                         info_arg: false,                                                     },                                                 ),                                                 min_length: None,                                                 max_length: None,                                                 name: "dict[str,function-after[Base64Data(), bytes]]",                                             },                                         ),                                         name: "nullable[dict[str,function-after[Base64Data(), bytes]]]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[dict[str,function-after[Base64Data(), bytes]]]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "prompt",                         lookup_key: Simple {                             key: "prompt",                             py_key: Py(                                 0x00007fffff8974f0,                             ),                             path: LookupPath(                                 [                                     S(                                         "prompt",                                         Py(                                             0x00007fffff8974f0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffff8974f0,                         ),                         validator: Str(                             StrValidator {                                 strict: false,                                 coerce_numbers_to_str: false,                             },                         ),                         frozen: false,                     },                     Field {                         name: "started_at",                         lookup_key: Simple {                             key: "started_at",                             py_key: Py(                                 0x00007fffe137cbf0,                             ),                             path: LookupPath(                                 [                                     S(                                         "started_at",                                         Py(                                             0x00007fffe137cbf0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe137cbf0,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007ffffff85420,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Datetime(                                             DateTimeValidator {                                                 strict: false,                                                 constraints: None,                                                 microseconds_precision: Truncate,                                             },                                         ),                                         name: "nullable[datetime]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[datetime]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "status",                         lookup_key: Simple {                             key: "status",                             py_key: Py(                                 0x00007fffff6e27f0,                             ),                             path: LookupPath(                                 [                                     S(                                         "status",                                         Py(                                             0x00007fffff6e27f0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffff6e27f0,                         ),                         validator: LaxOrStrict(                             LaxOrStrictValidator {                                 strict: false,                                 lax_validator: Chain(                                     ChainValidator {                                         steps: [                                             Str(                                                 StrValidator {                                                     strict: false,                                                     coerce_numbers_to_str: false,                                                 },                                             ),                                             FunctionPlain(                                                 FunctionPlainValidator {                                                     func: Py(                                                         0x00007fffe13d69d0,                                                     ),                                                     config: Py(                                                         0x00007fffe13e9440,                                                     ),                                                     name: "function-plain[to_enum()]",                                                     field_name: None,                                                     info_arg: false,                                                 },                                             ),                                         ],                                         name: "chain[str,function-plain[to_enum()]]",                                     },                                 ),                                 strict_validator: JsonOrPython(                                     JsonOrPython {                                         json: FunctionAfter(                                             FunctionAfterValidator {                                                 validator: Str(                                                     StrValidator {                                                         strict: false,                                                         coerce_numbers_to_str: false,                                                     },                                                 ),                                                 func: Py(                                                     0x00007fffe13d69d0,                                                 ),                                                 config: Py(                                                     0x00007fffe13e9440,                                                 ),                                                 name: "function-after[to_enum(), str]",                                                 field_name: None,                                                 info_arg: false,                                             },                                         ),                                         python: IsInstance(                                             IsInstanceValidator {                                                 class: Py(                                                     0x0000555556a230f0,                                                 ),                                                 class_repr: "ApiCallStatus",                                                 name: "is-instance[ApiCallStatus]",                                             },                                         ),                                         name: "json-or-python[json=function-after[to_enum(), str],python=is-instance[ApiCallStatus]]",                                     },                                 ),                                 name: "lax-or-strict[lax=chain[str,function-plain[to_enum()]],strict=json-or-python[json=function-after[to_enum(), str],python=is-instance[ApiCallStatus]]]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "type",                         lookup_key: Simple {                             key: "type",                             py_key: Py(                                 0x00007fffff8ebef0,                             ),                             path: LookupPath(                                 [                                     S(                                         "type",                                         Py(                                             0x00007fffff8ebef0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffff8ebef0,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fffe1c7b030,                                     ),                                 ),                                 on_error: Raise,                                 validator: Literal(                                     LiteralValidator {                                         lookup: LiteralLookup {                                             expected_bool: None,                                             expected_int: None,                                             expected_str: Some(                                                 {                                                     "text_to_cad": 0,                                                 },                                             ),                                             expected_py: None,                                             values: [                                                 Py(                                                     0x00007fffe1c7b030,                                                 ),                                             ],                                         },                                         expected_repr: "'text_to_cad'",                                         name: "literal['text_to_cad']",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[literal['text_to_cad']]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "updated_at",                         lookup_key: Simple {                             key: "updated_at",                             py_key: Py(                                 0x00007fffe137c6b0,                             ),                             path: LookupPath(                                 [                                     S(                                         "updated_at",                                         Py(                                             0x00007fffe137c6b0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe137c6b0,                         ),                         validator: Datetime(                             DateTimeValidator {                                 strict: false,                                 constraints: None,                                 microseconds_precision: Truncate,                             },                         ),                         frozen: false,                     },                     Field {                         name: "user_id",                         lookup_key: Simple {                             key: "user_id",                             py_key: Py(                                 0x00007fffe137c730,                             ),                             path: LookupPath(                                 [                                     S(                                         "user_id",                                         Py(                                             0x00007fffe137c730,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fffe137c730,                         ),                         validator: FunctionAfter(                             FunctionAfterValidator {                                 validator: Str(                                     StrValidator {                                         strict: false,                                         coerce_numbers_to_str: false,                                     },                                 ),                                 func: Py(                                     0x0000555556a23980,                                 ),                                 config: Py(                                     0x00007fffe13e9440,                                 ),                                 name: "function-after[Uuid(), str]",                                 field_name: None,                                 info_arg: false,                             },                         ),                         frozen: false,                     },                 ],                 model_name: "text_to_cad",                 extra_behavior: Ignore,                 extras_validator: None,                 strict: false,                 from_attributes: false,                 loc_by_alias: true,             },         ),         class: Py(             0x0000555556bdf310,         ),         post_init: None,         frozen: false,         custom_init: false,         root_model: false,         name: "text_to_cad",     }, ), definitions=[])[source]
__repr__()[source]

Return repr(self).

Return type:

str

__repr_args__()[source]
__repr_name__()[source]

Name of the instance’s class, used in __repr__.

Return type:

str

__repr_str__(join_str)[source]
Return type:

str

__rich_repr__()[source]

Used by Rich (https://rich.readthedocs.io/en/stable/pretty.html) to pretty print objects.

__setattr__(name, value)[source]

Implement setattr(self, name, value).

Return type:

None

__setstate__(state)[source]
Return type:

None

__signature__: ClassVar[Signature] = <Signature (*, completed_at: Optional[datetime.datetime] = None, created_at: datetime.datetime, error: Optional[str] = None, feedback: Optional[kittycad.models.ai_feedback.AiFeedback] = None, id: kittycad.models.uuid.Uuid, model_version: str, output_format: kittycad.models.file_export_format.FileExportFormat, outputs: Optional[Dict[str, kittycad.models.base64data.Base64Data]] = None, prompt: str, started_at: Optional[datetime.datetime] = None, status: kittycad.models.api_call_status.ApiCallStatus, type: Literal['text_to_cad'] = 'text_to_cad', updated_at: datetime.datetime, user_id: kittycad.models.uuid.Uuid) -> None>[source]
__slots__ = ('__dict__', '__pydantic_fields_set__', '__pydantic_extra__', '__pydantic_private__')[source]
__str__()[source]

Return str(self).

Return type:

str

_abc_impl = <_abc._abc_data object>[source]
_calculate_keys(*args, **kwargs)[source]
Return type:

Any

_check_frozen(name, value)[source]
Return type:

None

_copy_and_set_values(*args, **kwargs)[source]
Return type:

Any

classmethod _get_value(cls, *args, **kwargs)[source]
Return type:

Any

_iter(*args, **kwargs)[source]
Return type:

Any

completed_at: Optional[datetime][source]
classmethod construct(cls, _fields_set=None, **values)[source]
Return type:

Model

copy(*, include=None, exclude=None, update=None, deep=False)[source]

Returns a copy of the model.

!!! warning “Deprecated”

This method is now deprecated; use model_copy instead.

If you need include or exclude, use:

`py data = self.model_dump(include=include, exclude=exclude, round_trip=True) data = {**data, **(update or {})} copied = self.model_validate(data) `

Parameters:
  • include (AbstractSetIntStr | MappingIntStrAny | None) – Optional set or mapping specifying which fields to include in the copied model.

  • exclude (AbstractSetIntStr | MappingIntStrAny | None) – Optional set or mapping specifying which fields to exclude in the copied model.

  • update (Dict[str, Any] | None) – Optional dictionary of field-value pairs to override field values in the copied model.

  • deep (bool) – If True, the values of fields that are Pydantic models will be deep copied.

Return type:

Model

Returns:

A copy of the model with included, excluded and updated fields as specified.

created_at: datetime[source]
dict(*, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False)[source]
Return type:

Dict[str, Any]

error: Optional[str][source]
feedback: Optional[AiFeedback][source]
classmethod from_orm(cls, obj)[source]
Return type:

Model

id: Uuid[source]
json(*, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, encoder=PydanticUndefined, models_as_dict=PydanticUndefined, **dumps_kwargs)[source]
Return type:

str

property model_computed_fields: dict[str, ComputedFieldInfo][source]

Get the computed fields of this model instance.

Returns:

A dictionary of computed field names and their corresponding ComputedFieldInfo objects.

model_config: ClassVar[ConfigDict] = {}[source]

Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].

classmethod model_construct(_fields_set=None, **values)[source]

Creates a new instance of the Model class with validated data.

Creates a new model setting __dict__ and __pydantic_fields_set__ from trusted or pre-validated data. Default values are respected, but no other validation is performed. Behaves as if Config.extra = ‘allow’ was set since it adds all passed values

Parameters:
  • _fields_set (set[str] | None) – The set of field names accepted for the Model instance.

  • values (Any) – Trusted or pre-validated data dictionary.

Return type:

Model

Returns:

A new instance of the Model class with validated data.

model_copy(*, update=None, deep=False)[source]

Usage docs: https://docs.pydantic.dev/2.5/concepts/serialization/#model_copy

Returns a copy of the model.

Parameters:
  • update (dict[str, Any] | None) – Values to change/add in the new model. Note: the data is not validated before creating the new model. You should trust this data.

  • deep (bool) – Set to True to make a deep copy of the model.

Return type:

Model

Returns:

New model instance.

model_dump(*, mode='python', include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, round_trip=False, warnings=True)[source]

Usage docs: https://docs.pydantic.dev/2.5/concepts/serialization/#modelmodel_dump

Generate a dictionary representation of the model, optionally specifying which fields to include or exclude.

Parameters:
  • mode – The mode in which to_python should run. If mode is ‘json’, the dictionary will only contain JSON serializable types. If mode is ‘python’, the dictionary may contain any Python objects.

  • include – A list of fields to include in the output.

  • exclude – A list of fields to exclude from the output.

  • by_alias – Whether to use the field’s alias in the dictionary key if defined.

  • exclude_unset – Whether to exclude fields that have not been explicitly set.

  • exclude_defaults – Whether to exclude fields that are set to their default value from the output.

  • exclude_none – Whether to exclude fields that have a value of None from the output.

  • round_trip – Whether to enable serialization and deserialization round-trip support.

  • warnings – Whether to log warnings when invalid fields are encountered.

Returns:

A dictionary representation of the model.

model_dump_json(*, indent=None, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, round_trip=False, warnings=True)[source]

Usage docs: https://docs.pydantic.dev/2.5/concepts/serialization/#modelmodel_dump_json

Generates a JSON representation of the model using Pydantic’s to_json method.

Parameters:
  • indent – Indentation to use in the JSON output. If None is passed, the output will be compact.

  • include – Field(s) to include in the JSON output. Can take either a string or set of strings.

  • exclude – Field(s) to exclude from the JSON output. Can take either a string or set of strings.

  • by_alias – Whether to serialize using field aliases.

  • exclude_unset – Whether to exclude fields that have not been explicitly set.

  • exclude_defaults – Whether to exclude fields that have the default value.

  • exclude_none – Whether to exclude fields that have a value of None.

  • round_trip – Whether to use serialization/deserialization between JSON and class instance.

  • warnings – Whether to show any warnings that occurred during serialization.

Returns:

A JSON string representation of the model.

property model_extra[source]

Get extra fields set during validation.

Returns:

A dictionary of extra fields, or None if config.extra is not set to “allow”.

model_fields: ClassVar[dict[str, FieldInfo]] = {'completed_at': FieldInfo(annotation=Union[datetime, NoneType], required=False), 'created_at': FieldInfo(annotation=datetime, required=True), 'error': FieldInfo(annotation=Union[str, NoneType], required=False), 'feedback': FieldInfo(annotation=Union[AiFeedback, NoneType], required=False), 'id': FieldInfo(annotation=Uuid, required=True), 'model_version': FieldInfo(annotation=str, required=True), 'output_format': FieldInfo(annotation=FileExportFormat, required=True), 'outputs': FieldInfo(annotation=Union[Dict[str, kittycad.models.base64data.Base64Data], NoneType], required=False), 'prompt': FieldInfo(annotation=str, required=True), 'started_at': FieldInfo(annotation=Union[datetime, NoneType], required=False), 'status': FieldInfo(annotation=ApiCallStatus, required=True), 'type': FieldInfo(annotation=Literal['text_to_cad'], required=False, default='text_to_cad'), 'updated_at': FieldInfo(annotation=datetime, required=True), 'user_id': FieldInfo(annotation=Uuid, required=True)}[source]

Metadata about the fields defined on the model, mapping of field names to [FieldInfo][pydantic.fields.FieldInfo].

This replaces Model.__fields__ from Pydantic V1.

property model_fields_set: set[str][source]

Returns the set of fields that have been explicitly set on this model instance.

Returns:

A set of strings representing the fields that have been set,

i.e. that were not filled from defaults.

classmethod model_json_schema(by_alias=True, ref_template='#/$defs/{model}', schema_generator=<class 'pydantic.json_schema.GenerateJsonSchema'>, mode='validation')[source]

Generates a JSON schema for a model class.

Parameters:
  • by_alias (bool) – Whether to use attribute aliases or not.

  • ref_template (str) – The reference template.

  • schema_generator (type[GenerateJsonSchema]) – To override the logic used to generate the JSON schema, as a subclass of GenerateJsonSchema with your desired modifications

  • mode (Literal['validation', 'serialization']) – The mode in which to generate the schema.

Return type:

dict[str, Any]

Returns:

The JSON schema for the given model class.

classmethod model_parametrized_name(params)[source]

Compute the class name for parametrizations of generic classes.

This method can be overridden to achieve a custom naming scheme for generic BaseModels.

Parameters:

params (tuple[type[Any], ...]) – Tuple of types of the class. Given a generic class Model with 2 type variables and a concrete model Model[str, int], the value (str, int) would be passed to params.

Return type:

str

Returns:

String representing the new class where params are passed to cls as type variables.

Raises:

TypeError – Raised when trying to generate concrete names for non-generic models.

model_post_init(_BaseModel__context)[source]

Override this method to perform additional initialization after __init__ and model_construct. This is useful if you want to do some validation that requires the entire model to be initialized.

Return type:

None

classmethod model_rebuild(*, force=False, raise_errors=True, _parent_namespace_depth=2, _types_namespace=None)[source]

Try to rebuild the pydantic-core schema for the model.

This may be necessary when one of the annotations is a ForwardRef which could not be resolved during the initial attempt to build the schema, and automatic rebuilding fails.

Parameters:
  • force – Whether to force the rebuilding of the model schema, defaults to False.

  • raise_errors – Whether to raise errors, defaults to True.

  • _parent_namespace_depth – The depth level of the parent namespace, defaults to 2.

  • _types_namespace – The types namespace, defaults to None.

Returns:

Returns None if the schema is already “complete” and rebuilding was not required. If rebuilding _was_ required, returns True if rebuilding was successful, otherwise False.

classmethod model_validate(obj, *, strict=None, from_attributes=None, context=None)[source]

Validate a pydantic model instance.

Parameters:
  • obj (Any) – The object to validate.

  • strict (bool | None) – Whether to raise an exception on invalid fields.

  • from_attributes (bool | None) – Whether to extract data from object attributes.

  • context (dict[str, Any] | None) – Additional context to pass to the validator.

Raises:

ValidationError – If the object could not be validated.

Return type:

Model

Returns:

The validated model instance.

classmethod model_validate_json(json_data, *, strict=None, context=None)[source]

Usage docs: https://docs.pydantic.dev/2.5/concepts/json/#json-parsing

Validate the given JSON data against the Pydantic model.

Parameters:
  • json_data (str | bytes | bytearray) – The JSON data to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • context (dict[str, Any] | None) – Extra variables to pass to the validator.

Return type:

Model

Returns:

The validated Pydantic model.

Raises:

ValueError – If json_data is not a JSON string.

classmethod model_validate_strings(obj, *, strict=None, context=None)[source]

Validate the given object contains string data against the Pydantic model.

Parameters:
  • obj (Any) – The object contains string data to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • context (dict[str, Any] | None) – Extra variables to pass to the validator.

Return type:

Model

Returns:

The validated Pydantic model.

model_version: str[source]
output_format: FileExportFormat[source]
outputs: Optional[Dict[str, Base64Data]][source]
classmethod parse_file(cls, path, *, content_type=None, encoding='utf8', proto=None, allow_pickle=False)[source]
Return type:

Model

classmethod parse_obj(cls, obj)[source]
Return type:

Model

classmethod parse_raw(cls, b, *, content_type=None, encoding='utf8', proto=None, allow_pickle=False)[source]
Return type:

Model

prompt: str[source]
classmethod schema(cls, by_alias=True, ref_template='#/$defs/{model}')[source]
Return type:

Dict[str, Any]

classmethod schema_json(cls, *, by_alias=True, ref_template='#/$defs/{model}', **dumps_kwargs)[source]
Return type:

str

started_at: Optional[datetime][source]
status: ApiCallStatus[source]
type: Literal['text_to_cad'][source]
classmethod update_forward_refs(cls, **localns)[source]
Return type:

None

updated_at: datetime[source]
user_id: Uuid[source]
classmethod validate(cls, value)[source]
Return type:

Model