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>
This commit is contained in:
committed by
GitHub
parent
3ff3519d68
commit
4aa6b69d5c
@ -1,3 +1,5 @@
|
||||
from typing import Optional
|
||||
|
||||
from pydantic import BaseModel, ConfigDict
|
||||
|
||||
from ..models.source_range import SourceRange
|
||||
@ -6,6 +8,8 @@ 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
|
||||
|
Reference in New Issue
Block a user