Spaces:
Runtime error
Runtime error
File size: 869 Bytes
c225442 ca036be |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
---
title: Autogen Demos
emoji: 🌖
colorFrom: pink
colorTo: blue
sdk: gradio
sdk_version: 3.47.1
app_file: app.py
pinned: false
license: mit
---
# Microsoft AutoGen: Retrieve Chat Demo
This demo shows how to use the RetrieveUserProxyAgent and RetrieveAssistantAgent to build a chatbot.
#### [GitHub](https://github.com/microsoft/autogen) [Discord](https://discord.gg/pAbnFJrkgZ) [Docs](https://microsoft.github.io/autogen/) [Paper](https://arxiv.org/abs/2308.08155)
LLM configure file should contain OpenAI, Azure OpenAI or other openai compatible models, for example:
```
[
{
"engine": "gpt-35-turbo",
"model": "gpt-3.5-turbo",
"api_base": "https://xxx.openai.azure.com",
"api_type": "azure",
"api_version": "2023-05-15",
"api_key": "xxx",
}
]
```
 |