File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed
Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ Add an Agent Server entry in `settings.json` (Zed → Settings → Agents panel)
5050{
5151 "agent_servers" : {
5252 "Echo Agent (Python)" : {
53+ "type" : " custom" ,
5354 "command" : " /abs/path/to/python" ,
5455 "args" : [
5556 " /abs/path/to/agentclientprotocol/python-sdk/examples/echo_agent.py"
@@ -59,6 +60,21 @@ Add an Agent Server entry in `settings.json` (Zed → Settings → Agents panel)
5960}
6061```
6162
63+ Or, if using ` uv ` :
64+
65+ ``` json
66+ {
67+ "agent_servers" : {
68+ "type" : " custom" ,
69+ "command" : " uv" ,
70+ "args" : [
71+ " run" ,
72+ " /abs/path/to/agentclientprotocol/python-sdk/examples/echo_agent.py"
73+ ],
74+ }
75+ }
76+ ```
77+
6278Open the Agents panel and start the session. Each message you send should be echoed back via streamed ` session/update ` notifications.
6379
6480### Other clients
You can’t perform that action at this time.
0 commit comments