From d9b17431a799a0354103ef390f6db15f34fb92be Mon Sep 17 00:00:00 2001 From: blackhao <13851610112@163.com> Date: Wed, 10 Dec 2025 19:30:26 -0600 Subject: init file sys --- backend/app/schemas.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'backend/app/schemas.py') 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 -- cgit v1.2.3