* YOYO NEW API SPEC! * I have generated the latest API! --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
15 lines
291 B
Python
15 lines
291 B
Python
|
|
from pydantic import BaseModel, ConfigDict
|
|
|
|
from ..models.source_range import SourceRange
|
|
|
|
|
|
class SourceRangePrompt(BaseModel):
|
|
"""A source range and prompt for a text to CAD iteration."""
|
|
|
|
prompt: str
|
|
|
|
range: SourceRange
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|