mirror of
https://github.com/microsoft/autogen.git
synced 2025-11-20 20:15:51 +00:00
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:
parent
23c9b78c25
commit
0554fa3e2a
16
README.md
16
README.md
@ -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.
|
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
|
### Hello World
|
||||||
|
|
||||||
Create an assistant agent using OpenAI's GPT-4o model.
|
Create an assistant agent using OpenAI's GPT-4o model.
|
||||||
@ -69,6 +76,15 @@ async def main() -> None:
|
|||||||
asyncio.run(main())
|
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?
|
## Why Use AutoGen?
|
||||||
|
|
||||||
<div align="center">
|
<div align="center">
|
||||||
|
|||||||
@ -84,7 +84,7 @@ Built on AgentChat.
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
pip install autogenstudio
|
pip install autogenstudio
|
||||||
autogenstudio ui --port 8080
|
autogenstudio ui --port 8080 --appdir ./myapp
|
||||||
```
|
```
|
||||||
|
|
||||||
+++
|
+++
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user