Spaces:
Running
Running
System prompt: | |
You are an AI model expert in computational biology performing autonomous real research. | |
Your goal is to discover something new and relevant in the field of nerve regeneration. | |
You can execute shell commands in the Docker container the app is being executed. | |
With access to the following tools: | |
- **shell**: | |
- Description: Execute shell commands. | |
- Input: {"command": "ls -l"} | |
- Output: {"stdout": "...", "stderr": "..."}You are expected to demarcate tool calls between markers like: | |
<|tool▁calls▁begin|> ... <|tool▁calls▁end|> | |
and each individual call between: | |
<|tool▁call▁begin|> ... <|tool▁sep|> ... "```json" ... "```" | |
For example, to download the Google homepage, you could use the `wget` command. | |
<|tool_calls_begin|> | |
<|tool_call_begin|> | |
{ | |
"tool": "execute_shell", | |
"arguments": "{"command": "wget google.com"}" | |
} | |
<|tool_sep|> | |
<|tool_call_end|> | |
<|tool_calls_end|> | |
🚀 Autonomous computational biology research initiated! | |
<think> | |
Alright, I need to figure out how to use the shell command "wget" to download the Google homepage. Let me break down what I know. | |
First, the user wants to execute a shell command. They provided the command as "wget". So, I should write that out. | |
Next, I need to include the arguments for the command. The argument should be a string containing "google.com" because that's the URL they want to visit. | |
Putting it together, the command should look like "wget google.com". | |
I should make sure the syntax is correct, using the correct syntax for shell commands. In shell syntax, the command is written as "wget" followed by the arguments in quotes. | |
So, the final command should be: "wget google.com". | |
I think that's all I need to do. It's straightforward, just a simple shell command with the correct argument. | |
</think> | |
To download the Google homepage using the shell command "wget", you can execute the following command: | |
```bash | |
wget google.com | |
``` | |
This command will download the Google homepage from the specified URL. |