Skip to content

Commit

Permalink
Add AGS to README.md (#5019)
Browse files Browse the repository at this point in the history
* Add AGS to README.md

* Add appdir argument to avoid conflicting with older .autogenstudio home directory files.

---------

Co-authored-by: Victor Dibia <[email protected]>
  • Loading branch information
ekzhu and victordibia authored Jan 13, 2025
1 parent 23c9b78 commit 0554fa3
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,13 @@ pip install -U "autogen-agentchat" "autogen-ext[openai]"

The current stable version is v0.4. If you are upgrading from AutoGen v0.2, please refer to the [Migration Guide](https://microsoft.github.io/autogen/dev/user-guide/agentchat-user-guide/migration-guide.html) for detailed instructions on how to update your code and configurations.

```bash
# Install AutoGen Studio for no-code GUI
pip install -U "autogenstudio"
```

## Quickstart

### Hello World

Create an assistant agent using OpenAI's GPT-4o model.
Expand Down Expand Up @@ -69,6 +76,15 @@ async def main() -> None:
asyncio.run(main())
```

### AutoGen Studio

Use AutoGen Studio to prototype and run multi-agent workflows without writing code.

```bash
# Run AutoGen Studio on http://localhost:8080
autogenstudio ui --port 8080 --appdir ./my-app
```

## Why Use AutoGen?

<div align="center">
Expand Down
2 changes: 1 addition & 1 deletion python/packages/autogen-core/docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ Built on AgentChat.

```bash
pip install autogenstudio
autogenstudio ui --port 8080
autogenstudio ui --port 8080 --appdir ./myapp
```

+++
Expand Down

0 comments on commit 0554fa3

Please sign in to comment.