summaryrefslogtreecommitdiff
path: root/backend/app/schemas.py
diff options
context:
space:
mode:
authorblackhao <13851610112@163.com>2025-12-10 19:30:26 -0600
committerblackhao <13851610112@163.com>2025-12-10 19:30:26 -0600
commitd9b17431a799a0354103ef390f6db15f34fb92be (patch)
tree7e8f2d70bd39f6a32aa4eae8e9655afc339c6bc9 /backend/app/schemas.py
parent0dcaf9d7da9fa5041fbd5489a60886ceb416b1d4 (diff)
init file sys
Diffstat (limited to 'backend/app/schemas.py')
-rw-r--r--backend/app/schemas.py4
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