10 lines
191 B
Python
10 lines
191 B
Python
![]() |
from pydantic import BaseModel, ConfigDict
|
||
|
|
||
|
|
||
|
class KclModel(BaseModel):
|
||
|
"""The response containing the KCL code."""
|
||
|
|
||
|
code: str
|
||
|
|
||
|
model_config = ConfigDict(protected_namespaces=())
|