Add AGS to README.md (#5019)

* Add AGS to README.md

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

---------

Co-authored-by: Victor Dibia <victordibia@microsoft.com>
This commit is contained in:
Eric Zhu 2025-01-13 06:55:10 -08:00 committed by GitHub
parent 23c9b78c25
commit 0554fa3e2a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 17 additions and 1 deletions

View File

@ -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.
@ -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">

View File

@ -84,7 +84,7 @@ Built on AgentChat.
```bash
pip install autogenstudio
autogenstudio ui --port 8080
autogenstudio ui --port 8080 --appdir ./myapp
```
+++