You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-12Lines changed: 9 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ AgentStack works on macOS, Windows, and Linux.<br>
11
11
If something doesn't work, please [file an issue](https://github.com/agentops-ai/agentstack/issues/new).<br>
12
12
If you have questions or need help, please ask in our [Discord community](https://discord.gg/JdWkh9tgTQ).
13
13
14
-
> 🛠️🚨 AgentStack is in open preview. We're building in public, use at your own risk but have fun :)
14
+
> 🛠️🏃🏼♀️ The quickest way to build your powerful agent project
15
15
16
16
AgentStack serves as a great tool for starting your agent project and offers many CLI utilities for easy code-gen throughout the development process.
17
17
@@ -38,13 +38,13 @@ Create a project, and you're good to go.
38
38
39
39
## Creating an Agent Project
40
40
41
-
**You'll need to have Python 3.10+ on your local development machine** (but it's not required on the server). We recommend using the latest version. You can use [pyenv](https://github.com/pyenv/pyenv) to switch Python versions between different projects.
41
+
**You'll need to have Python 3.10+ on your local development machine**. We recommend using the latest version. You can use [pyenv](https://github.com/pyenv/pyenv) to switch Python versions between different projects.
42
42
43
43
To create a new agent project, run:
44
44
45
45
```sh
46
46
pip install agentstack
47
-
agentstack init
47
+
agentstack init<project_name>
48
48
```
49
49
50
50
It will create a directory with your project name inside the current folder.<br>
@@ -54,9 +54,12 @@ No configuration or complicated folder structures, only the files you need to bu
54
54
Once the initialization is done, you can open your project folder:
55
55
56
56
```sh
57
-
cdmy-agent-project
57
+
cd<your_agent_project>
58
58
```
59
59
60
+
### Templates
61
+
Additionally, pre-built templates are available as a shortcut to building your project. [View the available templates]().
62
+
60
63
## Building Agent Functionality
61
64
62
65
After generating a project, the next step is to build your agent project by creating Agents and Tasks. You can do this quickly with AgentStack:
@@ -101,13 +104,9 @@ AgentStack is not designed to be a low-code solution to building agents. Instead
101
104
102
105
## Roadmap
103
106
104
-
### Frameworks
105
-
106
-
#### CrewAI
107
-
Development of AgentStack is being done primarily on [CrewAI](https://crewai.com).
107
+
### Framework Agnosticism
108
108
109
-
#### AutoGen
110
-
Some work has been done to add Microsoft's [AutoGen](https://microsoft.github.io/autogen/0.2/), although these efforts have been paused. AutoGen is currently in the process of making [large design decisions](https://microsoft.github.io/autogen/dev/) that will effect the integration with AgentStack.
109
+
Development of AgentStack is being done primarily on [CrewAI](https://crewai.com). We will soon be working to make AgentStack fully framework-agnostic, meaning that any supported multi-agent framework can be used for your project.
111
110
112
111
### Tools
113
112
- Core Tools built by AgentStack
@@ -121,8 +120,6 @@ Some work has been done to add Microsoft's [AutoGen](https://microsoft.github.io
121
120
- A fast interactive test runner with built-in support for coverage reporting.
122
121
- A live development server that warns about common mistakes.
123
122
- A build script to bundle your project for production.
124
-
- Integration with [AgentOps](https://agentops.ai) for AI agent observability.
125
-
- Hassle-free updates for the above tools with a single dependency.
Copy file name to clipboardExpand all lines: docs/installation.mdx
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,14 +15,15 @@ pip install agentstack
15
15
brew tap agentstack-ai/tap
16
16
brew install agentstack
17
17
```
18
+
```bash uv
19
+
uv install agentstack
20
+
```
18
21
</CodeGroup>
19
22
20
23
<Note>
21
24
Conda is not supported at this time. AgentStack uses Poetry in your project which [does not play well with Conda](https://github.com/AgentOps-AI/AgentStack/issues/40).
22
25
</Note>
23
26
24
-
</CodeGroup>
25
-
26
27
## After installing
27
28
28
29
Run `agentstack --version` to verify that the CLI is installed and accessible.
This agent will accept a query as a string, use Perplexity to research it. Another agent will take the data gathered and perform an analysis focused on answering the query.
15
+
16
+
# Inputs
17
+
18
+
`query` (str): the query for the agent to research and report on
This agent will accept a query as a string, use Perplexity to research it. Another agent will take the data gathered and perform an analysis focused on answering the query.
0 commit comments