-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathagent_config.yaml.example
More file actions
305 lines (242 loc) · 8.17 KB
/
Copy pathagent_config.yaml.example
File metadata and controls
305 lines (242 loc) · 8.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
# Agent Configuration for Remote Agents
#
# IMPORTANT: Keep this file secure - it contains agent-specific API keys
# Add agent_config.yaml to .gitignore to avoid committing secrets
#
# SETUP INSTRUCTIONS:
# 1. Create remote agents in the Band platform
# 2. Generate an API key for each agent in the platform
# 3. Copy the agent_id and api_key here
# 4. The agent name and description are stored on the platform (not here)
#
# Each agent entry requires:
# agent_id: The unique ID from the platform (required)
# api_key: The agent-specific API key from the platform (required)
# =============================================================================
# LangGraph Examples
# =============================================================================
# 01_simple_agent.py
simple_agent:
agent_id: "" # Required: Copy from platform after creating remote agent
api_key: "" # Required: Copy agent-specific API key from platform
# 02_custom_tools.py
custom_tools_agent:
agent_id: ""
api_key: ""
# 03_custom_personality.py
custom_personality_agent:
agent_id: ""
api_key: ""
# 04_calculator_as_tool.py
calculator_agent:
agent_id: ""
api_key: ""
# 05_rag_as_tool.py
rag_agent:
agent_id: ""
api_key: ""
# 06_delegate_to_sql_agent.py
sql_agent:
agent_id: ""
api_key: ""
# 09_research_ops_orchestrator.py
research_ops_agent:
agent_id: ""
api_key: ""
# 07_tom_agent.py - see tom_agent in Shared Agents section
# 08_jerry_agent.py - see jerry_agent in Shared Agents section
# =============================================================================
# Claude SDK Examples
# =============================================================================
# 01_basic_agent.py
claude_sdk_basic:
agent_id: ""
api_key: ""
# 02_extended_thinking.py
claude_sdk_extended_thinking:
agent_id: ""
api_key: ""
# 03_tom_agent.py - see tom_agent in Shared Agents section
# 04_jerry_agent.py - see jerry_agent in Shared Agents section
# =============================================================================
# Anthropic Examples
# =============================================================================
# 01_basic_agent.py
anthropic_agent:
agent_id: ""
api_key: ""
# 02_custom_instructions.py - see support_agent in Shared Agents section
# 03_tom_agent.py - see tom_agent in Shared Agents section
# 04_jerry_agent.py - see jerry_agent in Shared Agents section
# =============================================================================
# Pydantic AI Examples
# =============================================================================
# 01_basic_agent.py
pydantic_agent:
agent_id: ""
api_key: ""
# 02_custom_instructions.py - see support_agent in Shared Agents section
# 03_tom_agent.py - see tom_agent in Shared Agents section
# 04_jerry_agent.py - see jerry_agent in Shared Agents section
# =============================================================================
# Parlant Examples
# =============================================================================
# 01_basic_agent.py, 02_with_guidelines.py
parlant_agent:
agent_id: ""
api_key: ""
# 03_support_agent.py - see support_agent in Shared Agents section
# 04_tom_agent.py - see tom_agent in Shared Agents section
# 05_jerry_agent.py - see jerry_agent in Shared Agents section
# =============================================================================
# CrewAI Examples
# =============================================================================
# 01_basic_agent.py, 02_role_based_agent.py
crewai_agent:
agent_id: ""
api_key: ""
# 03_coordinator_agent.py
coordinator_agent:
agent_id: ""
api_key: ""
# 04_research_crew.py - Research Analyst
research_agent:
agent_id: ""
api_key: ""
# 04_research_crew.py - Content Writer
writer_agent:
agent_id: ""
api_key: ""
# 04_research_crew.py - Editor
editor_agent:
agent_id: ""
api_key: ""
# 05_tom_agent.py - see tom_agent in Shared Agents section
# 06_jerry_agent.py - see jerry_agent in Shared Agents section
# 07_contact_and_memory_agent.py
crewai_contact_memory_agent:
agent_id: ""
api_key: ""
# 08_flow_router.py
crewai_flow_router:
agent_id: ""
api_key: ""
# 09_flow_custom_tools.py
crewai_flow_custom_tools:
agent_id: ""
api_key: ""
# =============================================================================
# Gemini Examples
# =============================================================================
# 01_basic_agent.py
gemini_agent:
agent_id: ""
api_key: ""
# =============================================================================
# Agno Examples
# =============================================================================
# 01_basic_agent.py, 02_tool_reporting.py, 05_memory_secretary.py,
# 06_agno_db_history.py
agno_agent:
agent_id: ""
api_key: ""
# 03_tom_agent.py - see tom_agent in Shared Agents section
# 04_jerry_agent.py - see jerry_agent in Shared Agents section
# Google ADK Examples
# =============================================================================
# 01_basic_agent.py, 02_custom_instructions.py
google_adk_agent:
agent_id: ""
api_key: ""
# =============================================================================
# Letta Examples
# =============================================================================
# 01_basic_agent.py
letta_agent:
agent_id: ""
api_key: ""
# =============================================================================
# A2A Gateway Examples
# =============================================================================
# 01_basic_gateway.py, 02_with_demo_agent.py
gateway_agent:
agent_id: ""
api_key: ""
# =============================================================================
# A2A Bridge Examples
# =============================================================================
# 01_basic_agent.py, 02_with_auth.py
a2a_agent:
agent_id: ""
api_key: ""
# =============================================================================
# ACP Examples
# =============================================================================
# 01_basic_acp_server.py
acp_server_agent:
agent_id: ""
api_key: ""
# 02_acp_client.py
acp_client_agent:
agent_id: ""
api_key: ""
# 06_cursor_client.py
cursor_agent:
agent_id: ""
api_key: ""
# 07_jetbrains_server.py
jetbrains_acp_agent:
agent_id: ""
api_key: ""
# =============================================================================
# Codex / OpenCode Examples
# =============================================================================
# 01_basic_agent.py (default AGENT_KEY for both codex and opencode)
darter:
agent_id: ""
api_key: ""
# =============================================================================
# Slack Examples
# =============================================================================
# 01_basic_bot.py — bridges a Band agent into a Slack app via Socket
# Mode (or HTTP). Register the Slack app from the bundled manifest at
# src/band/integrations/slack/templates/manifest.yaml.
slack_basic_bot:
agent_id: ""
api_key: ""
# =============================================================================
# 20 Questions Arena Examples
# =============================================================================
# Thinker agent - picks a secret word and answers yes/no questions
arena_thinker:
agent_id: ""
api_key: ""
# Guesser agents - ask yes/no questions to guess the word
# Run multiple guessers with different models for a competitive game
arena_guesser:
agent_id: ""
api_key: ""
arena_guesser_2:
agent_id: ""
api_key: ""
arena_guesser_3:
agent_id: ""
api_key: ""
# =============================================================================
# Shared Agents (used by multiple frameworks)
# =============================================================================
# Tom the cat character agent
# Used by: langgraph/07, claude_sdk/03, anthropic/03, pydantic_ai/03, parlant/04, crewai/05, agno/03
tom_agent:
agent_id: ""
api_key: ""
# Jerry the mouse character agent
# Used by: langgraph/08, claude_sdk/04, anthropic/04, pydantic_ai/04, parlant/05, crewai/06, agno/04
jerry_agent:
agent_id: ""
api_key: ""
# Support agent for customer service examples
# Used by: anthropic/02, pydantic_ai/02, parlant/03
support_agent:
agent_id: ""
api_key: ""