You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -23,6 +24,7 @@ class DeliberateCodeExecutionRequest(BaseModel):
23
24
submission_files: List[SubmissionFileData] =Field(..., description="List of files to be executed, including their content.")
24
25
program_command: str=Field(..., description="The command to execute the program (e.g., 'python main.py', 'java Main', 'node app.js', './a.out').")
25
26
test_cases: Optional[List[List[str]]] =Field(None, description="Optional list of test cases to be evaluated. Each test case is a list of inputs/arguments.")
27
+
assets: Optional[List[AssetConfig]] =Field(default_factory=list, description="Optional list of assets to be injected into the sandbox before execution.")
0 commit comments