Spaces:
Runtime error
Runtime error
fix(tools): enhance execute_terminal docstring to clarify VM command execution
Browse files- src/tools.py +4 -1
src/tools.py
CHANGED
@@ -27,7 +27,10 @@ def execute_terminal(command: str) -> str:
|
|
27 |
Use this tool to inspect uploaded documents under ``/data``, fetch web
|
28 |
content with utilities like ``curl`` or ``wget`` and run other commands.
|
29 |
The assistant must call this tool to search the internet whenever unsure
|
30 |
-
about any detail.
|
|
|
|
|
|
|
31 |
|
32 |
The command is executed with network access enabled. Output from
|
33 |
``stdout`` and ``stderr`` is captured when the command completes.
|
|
|
27 |
Use this tool to inspect uploaded documents under ``/data``, fetch web
|
28 |
content with utilities like ``curl`` or ``wget`` and run other commands.
|
29 |
The assistant must call this tool to search the internet whenever unsure
|
30 |
+
about any detail. The user does NOT have access to this VM, so you are
|
31 |
+
free to run any command you need to gather information or perform tasks.
|
32 |
+
You are in charge of this VM and can run any command you need to
|
33 |
+
accomplish the user's request.
|
34 |
|
35 |
The command is executed with network access enabled. Output from
|
36 |
``stdout`` and ``stderr`` is captured when the command completes.
|