10 lines
138 B
Python
10 lines
138 B
Python
|
|
from pydantic import BaseModel
|
|
|
|
|
|
|
|
class TextToCadCreateBody(BaseModel):
|
|
"""Body for generating models from text."""
|
|
|
|
prompt: str
|