We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 17d4ecd + 1c92dc2 commit 391da5dCopy full SHA for 391da5d
units/en/unit2/tiny-agents.mdx
@@ -65,6 +65,7 @@ Let's setup a project with a basic Tiny Agent.
65
```bash
66
mkdir my-agent
67
touch my-agent/agent.json
68
+cd my-agent
69
```
70
71
The JSON file will look like this:
@@ -79,7 +80,7 @@ The JSON file will look like this:
79
80
"command": "npx",
81
"args": [
82
"mcp-remote",
- "http://localhost:7860/gradio_api/mcp/sse" // This is the MCP Server we created in the previous section
83
+ "http://localhost:7860/gradio_api/mcp/sse"
84
]
85
}
86
@@ -89,7 +90,7 @@ The JSON file will look like this:
89
90
We can then run the agent with the following command:
91
92
-npx @huggingface/tiny-agents run ./my-agent
93
+npx @huggingface/tiny-agents run agent.json
94
95
96
</hfoption>
0 commit comments