Skip to content

Commit c9ed3a6

Browse files
authored
Merge pull request #290 from AgentOps-AI/release-bump
release stuff
2 parents 6d0a34b + 50b9e0b commit c9ed3a6

File tree

5 files changed

+48
-7
lines changed

5 files changed

+48
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ AgentStack scaffolds your _agent stack_ - the tech stack that collectively is yo
3232

3333
### Currently Supported Providers
3434
- **LLMs**: Most all notable LLMs and providers are supported via LiteLLM or LangChain
35-
- **Framework**: Currently supported frameworks include CrewAI and LangGraph
35+
- **Framework**: Currently supported frameworks include CrewAI, LangGraph, OpenAI Swarms and LlamaStack
3636
- Roadmap: Pydantic AI, Eliza, AG2 and Autogen
3737
- **Tools**: Maintaining the largest repository of framework-agnostic tools! All tools listed [here](https://docs.agentstack.sh/tools/community)
3838
- **Observability**: AgentOps baked in by default with first-tier support

docs/frameworks/list.mdx

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
---
2+
title: Frameworks
3+
description: 'Supported frameworks in AgentStack'
4+
icon: 'ship'
5+
---
6+
7+
These are documentation links to the frameworks supported directly by AgentStack.
8+
9+
To start a project with one of these frameworks, use
10+
```bash
11+
agentstack init <project_name> --framework <framework_name>
12+
```
13+
14+
## Framework Docs
15+
<CardGroup cols={3}>
16+
<Card
17+
title="CrewAI"
18+
icon="ship"
19+
href="https://docs.crewai.com/introduction"
20+
>
21+
An intuitive agentic framework (recommended)
22+
</Card>
23+
<Card
24+
title="LangGraph"
25+
icon="circle-nodes"
26+
href="https://langchain-ai.github.io/langgraph/"
27+
>
28+
A complex but capable framework with a _steep_ learning curve
29+
</Card>
30+
<Card
31+
title="OpenAI Swarms"
32+
icon="bee"
33+
href="https://github.com/openai/swarm"
34+
>
35+
A simple framework with a cult following
36+
</Card>
37+
<Card
38+
title="LlamaIndex"
39+
icon="layer-group"
40+
href="https://docs.llamaindex.ai/en/stable/"
41+
>
42+
An expansive framework with many ancillary features
43+
</Card>
44+
</CardGroup>

docs/images/the_agent_stack.png

182 KB
Loading

docs/mint.json

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,6 @@
2626
"name": "Community",
2727
"icon": "discord",
2828
"url": "https://discord.gg/JdWkh9tgTQ"
29-
}, {
30-
"name": "CrewAI Docs",
31-
"icon": "ship",
32-
"url": "https://docs.crewai.com/introduction"
3329
}
3430
],
3531
"navigation": [
@@ -38,7 +34,8 @@
3834
"pages": [
3935
"introduction",
4036
"installation",
41-
"quickstart"
37+
"quickstart",
38+
"frameworks/list"
4239
]
4340
},
4441
{

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "agentstack"
7-
version = "0.3.2"
7+
version = "0.3.3"
88
description = "The fastest way to build robust AI agents"
99
authors = [
1010
{ name="Braelyn Boynton", email="[email protected]" },

0 commit comments

Comments
 (0)