Files
kittycad.py/kittycad/models/source_range_prompt.py
zoo-github-actions-auth[bot] 4aa6b69d5c Update api spec (#375)
* YOYO NEW API SPEC!

* I have generated the latest API!

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2025-02-10 16:55:38 -08:00

18 lines
351 B
Python

from typing import Optional
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."""
file: Optional[str] = None
prompt: str
range: SourceRange
model_config = ConfigDict(protected_namespaces=())