thinkall commited on
Commit
ca036be
·
1 Parent(s): 7d3c03c

Fix dependency, add demo.png

Browse files
Files changed (3) hide show
  1. README.md +21 -3
  2. demo.png +0 -0
  3. requirements.txt +1 -0
README.md CHANGED
@@ -4,12 +4,30 @@ emoji: 🌖
4
  colorFrom: pink
5
  colorTo: blue
6
  sdk: gradio
7
- dependencies:
8
- - pyautogen
9
  sdk_version: 3.47.1
10
  app_file: app.py
11
  pinned: false
12
  license: mit
13
  ---
14
 
15
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  colorFrom: pink
5
  colorTo: blue
6
  sdk: gradio
 
 
7
  sdk_version: 3.47.1
8
  app_file: app.py
9
  pinned: false
10
  license: mit
11
  ---
12
 
13
+ # Microsoft AutoGen: Retrieve Chat Demo
14
+
15
+ This demo shows how to use the RetrieveUserProxyAgent and RetrieveAssistantAgent to build a chatbot.
16
+
17
+ #### [GitHub](https://github.com/microsoft/autogen) [Discord](https://discord.gg/pAbnFJrkgZ) [Docs](https://microsoft.github.io/autogen/) [Paper](https://arxiv.org/abs/2308.08155)
18
+
19
+ LLM configure file should contain OpenAI, Azure OpenAI or other openai compatible models, for example:
20
+ ```
21
+ [
22
+ {
23
+ "engine": "gpt-35-turbo",
24
+ "model": "gpt-3.5-turbo",
25
+ "api_base": "https://xxx.openai.azure.com",
26
+ "api_type": "azure",
27
+ "api_version": "2023-05-15",
28
+ "api_key": "xxx",
29
+ }
30
+ ]
31
+ ```
32
+
33
+ ![](demo.png)
demo.png ADDED
requirements.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ pyautogen>=0.1.10