HowToAutogen / app.py
awacke1's picture
Update app.py
64dd87a verified
raw
history blame
766 Bytes
import streamlit as st
markdown=f"""
Start Here: https://autogen-studio.com/autogen-studio-ui
# Installation and Running Autogen:
1. create a directory: mkdir autogen
2. Go there and create a startup script. C:\\\\Users\\\\aaron\\\\autogen>notepad setkey.bat
3. Add three lines for the key(s) and launch:
- set OPENAI_API_ORG=[your org key] https://platform.openai.com/settings/organization/general
- set OPENAI_API_KEY=[your openai key] https://platform.openai.com/api-keys
- autogenstudio ui
4. pip install autogenstudio
5. run your startup script setkey.bat
6. Browse to localhost http://localhost:8081/
![image/png](https://cdn-uploads.huggingface.co/production/uploads/620630b603825909dcbeba35/ksQAeTwpgct1tuQqTV8UX.png)
"""
st.markdown(markdown)