fix: persist workspace Python environments

This commit is contained in:
wuyang
2026-07-26 20:20:37 +08:00
parent bc30a480ad
commit 2fbb5698ac
14 changed files with 170 additions and 20 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ class SearchFilesRequest(BaseModel):
class ExecRequest(BaseModel):
command: str = Field(min_length=1, max_length=32_000)
cwd: str = Field(default=".", max_length=4096, description="Working directory relative to /workspace.")
timeout_seconds: int = Field(default=120, ge=1, le=1800)
timeout_seconds: int = Field(default=900, ge=1, le=1800)
class ApplyPatchRequest(BaseModel):