awacke1 commited on
Commit
e968f96
1 Parent(s): 7dfc3cd

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +18 -0
app.py ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ st.markdown('''
4
+ Installing and running Autogen locally allows you to run multi agent systems with GPT.
5
+ Start Here: https://autogen-studio.com/autogen-studio-ui
6
+
7
+ #Installation and Running Autogen:
8
+
9
+ 1. create a directory: mkdir autogen
10
+ 2. Go there and create a startup script. C:\Users\aaron\autogen>notepad setkey.bat
11
+ 3. Add three lines for the key(s) and launch:
12
+ - set OPENAI_API_ORG=[your org key] https://platform.openai.com/settings/organization/general
13
+ - set OPENAI_API_KEY=[your openai key] https://platform.openai.com/api-keys
14
+ - autogenstudio ui
15
+ 4. pip install autogenstudio
16
+ 5. run your startup script setkey.bat
17
+ 6. Browse to localhost http://localhost:8081/
18
+ ''')