1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
[[agent]]
name = "Bob (llama.cpp)"
command = "docker"
args = ["agent", "serve", "acp", ".turbo-python/agent.yaml"]
env = { TELEMETRY_ENABLED = "false" }
# The user's own agent, the one Zed runs as "mini-me": it speaks the protocol
# on stdin/stdout when started with -acp, and announces slash commands the
# editor lists when / is typed at the start of the box.
[[agent]]
name = "mini-me (llama.cpp)"
command = "mm"
args = ["-acp"]
env = { AGENT_CONFIG = "/Users/k33g/kDrive/Rickub/bots-garden/mini-me/agent.llamacpp.yaml" }
|