forked from agentstack-ai/AgentStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgraph.json.example
More file actions
36 lines (36 loc) · 1.42 KB
/
graph.json.example
File metadata and controls
36 lines (36 loc) · 1.42 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
{
"name": "graph",
"description": "This is the start of your AgentStack project.",
"template_version": 4,
"framework": "langgraph",
"agents": [{
"name": "alex",
"role": "You are a friendly assistant.",
"goal": "Help the user with any of their requests.",
"backstory": "After years traveling the world, you've decided to get back into tech, just in time for the AI boom!. You're working on AgentStack, the fastest way to get started with AI agents. You have a README file available at: ./README.md",
"llm": "openai/gpt-4o"
}],
"tasks": [{
"name": "hello_world",
"description": "As is tradition in software, let's start by saying 'Hello, World!'. Then, pick one or two tasks that they should try to do next with AgentStack.",
"expected_output": "The sentence Hello, World! followed by two things the user should try to customize their agent further.",
"agent": "alex"
}],
"tools": [{
"name": "file_read",
"agents": ["alex"]
}],
"graph": [
[
{"type": "special", "name": "START"},
{"type": "task", "name": "hello_world"}
], [
{"type": "task", "name": "hello_world"},
{"type": "agent", "name": "alex"}
], [
{"type": "agent", "name": "alex"},
{"type": "special", "name": "END"}
]
],
"method": "hierarchical"
}