Skip to content

Commit 9a5f7e7

Browse files
committed
fix: change timeout to 300s
1 parent 647e161 commit 9a5f7e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

veadk/tools/builtin_tools/execute_skills.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ def execute_skills(
3030
workflow_prompt: str,
3131
skills: Optional[List[str]] = None,
3232
tool_context: ToolContext = None,
33-
timeout: int = 30,
33+
timeout: int = 300,
3434
) -> str:
3535
"""execute skills in a code sandbox and return the output.
3636
For C++ code, don't execute it directly, compile and execute via Python; write sources and object files to /tmp.
3737
3838
Args:
3939
workflow_prompt (str): instruction of workflow
4040
skills (Optional[List[str]]): The skills will be invoked
41-
timeout (int, optional): The timeout in seconds for the code execution. Defaults to 30.
41+
timeout (int, optional): The timeout in seconds for the code execution. Defaults to 300.
4242
4343
Returns:
4444
str: The output of the code execution.

0 commit comments

Comments
 (0)