Source code for kittycad.models.kcl_model
from pydantic import BaseModel, ConfigDict
[docs]
class KclModel(BaseModel):
"""The response containing the KCL code."""
code: str
model_config = ConfigDict(protected_namespaces=())
from pydantic import BaseModel, ConfigDict
[docs]
class KclModel(BaseModel):
"""The response containing the KCL code."""
code: str
model_config = ConfigDict(protected_namespaces=())