145 lines
2.9 KiB
Markdown
Raw Normal View History

---
myst:
html_meta:
"description lang=en": |
2024-09-23 12:39:36 -04:00
Top-level documentation for AutoGen, a framework for developing applications using AI agents
html_theme.sidebar_secondary.remove: false
2024-09-23 13:45:16 -04:00
sd_hide_title: true
---
<style>
.hero-title {
font-size: 60px;
font-weight: bold;
margin: 2rem auto 0;
}
.wip-card {
border: 1px solid var(--pst-color-success);
background-color: var(--pst-color-success-bg);
border-radius: .25rem;
padding: 0.3rem;
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 1rem;
}
</style>
2024-09-23 13:45:16 -04:00
# AutoGen
<div class="container">
<div class="row text-center">
<div class="col-sm-12">
<h1 class="hero-title">
AutoGen
</h1>
<h3>
A framework for building AI agents and multi-agent applications
</h3>
</div>
</div>
</div>
<div style="margin-top: 2rem;">
::::{grid}
:gutter: 2
:::{grid-item-card}
:shadow: none
:margin: 2 0 0 0
:columns: 12 12 12 12
<div class="sd-card-title sd-font-weight-bold docutils">
{fas}`people-group;pst-color-primary`
AgentChat </div>
High-level API that includes preset agents and teams for building multi-agent systems.
2024-09-30 19:43:05 -04:00
```sh
2024-12-30 17:12:51 -05:00
pip install "autogen-agentchat==0.4.0.dev13"
2024-09-30 19:43:05 -04:00
```
2024-12-05 13:47:57 -08:00
💡 *Start here if you are looking for an API similar to AutoGen 0.2.*
+++
<a class="sd-sphinx-override sd-btn sd-text-wrap sd-btn-secondary reference internal" href="user-guide/agentchat-user-guide/quickstart.html"><span class="doc">Get Started</span></a>
<a class="sd-sphinx-override sd-btn sd-text-wrap sd-btn-secondary reference internal" href="user-guide/agentchat-user-guide/migration-guide.html"><span class="doc">Migration Guide (0.2.x to 0.4.x)</span></a>
:::
:::{grid-item-card} {fas}`palette;pst-color-primary` Studio
:shadow: none
:margin: 2 0 0 0
:columns: 12 12 12 12
No-code platform for authoring and interacting with multi-agent teams.
+++
```{button-ref} user-guide/autogenstudio-user-guide/index
:color: secondary
Get Started
```
:::
:::{grid-item-card} {fas}`cube;pst-color-primary` Core
:shadow: none
:margin: 2 0 0 0
:columns: 12 12 6 6
Provides building blocks for creating asynchronous, event driven multi-agent systems.
2024-09-30 19:43:05 -04:00
```sh
2024-12-30 17:12:51 -05:00
pip install "autogen-core==0.4.0.dev13"
2024-09-30 19:43:05 -04:00
```
+++
```{button-ref} user-guide/core-user-guide/quickstart
:color: secondary
Get Started
```
:::
:::{grid-item-card} {fas}`puzzle-piece;pst-color-primary` Extensions
:shadow: none
:margin: 2 0 0 0
:columns: 12 12 6 6
Implementations of core components that interface with external services, or use extra dependencies. For example, Docker based code execution.
```sh
2024-12-30 17:12:51 -05:00
pip install "autogen-ext==0.4.0.dev13"
```
+++
```{button-ref} user-guide/extensions-user-guide/index
:color: secondary
Get Started
```
:::
::::
</div>
```{toctree}
:maxdepth: 3
:hidden:
user-guide/agentchat-user-guide/index
user-guide/core-user-guide/index
user-guide/extensions-user-guide/index
Studio <user-guide/autogenstudio-user-guide/index>
reference/index
```