diff options
Diffstat (limited to 'backend/app/schemas.py')
| -rw-r--r-- | backend/app/schemas.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/backend/app/schemas.py b/backend/app/schemas.py index bd8ebe7..54c0560 100644 --- a/backend/app/schemas.py +++ b/backend/app/schemas.py @@ -49,6 +49,10 @@ class NodeRunRequest(BaseModel): user_prompt: str config: LLMConfig merge_strategy: MergeStrategy = MergeStrategy.SMART + attached_file_ids: List[str] = Field(default_factory=list) + # Scopes for file_search filtering: ["project_path/node_id", ...] + # Contains all project/node combinations in the current trace + scopes: List[str] = Field(default_factory=list) class NodeRunResponse(BaseModel): node_id: str |
