Build a chatbot powered by LlamaIndex that augments GPT 3.5 with the contents of the Streamlit docs (or your own data).
- Takes user queries via Streamlit's
st.chat_inputand displays both user queries and model responses withst.chat_message - Uses LlamaIndex to load and index data and create a chat engine that will retrieve context from that data to respond to each user query
You can get your own OpenAI API key by following the following instructions:
- Go to https://platform.openai.com/account/api-keys.
- Click on the
+ Create new secret keybutton. - Next, enter an identifier name (optional) and click on the
Create secret keybutton. - Add your API key to your
secrets.tomlfile. If you don't already have asecrets.tomlfile, add a folder named.streamlit, create a file calledsecrets.tomlwithin the folder, and add the following to it:openai_key = <your key here>
Alternatively, you can use Streamlit Community Cloud's secrets management feature to add your API key via the web interface.
Caution
Don't commit your secrets file to your GitHub repository. The .gitignore file in this repo includes .streamlit/secrets.toml and secrets.toml.
Once the app is loaded, enter your question about the Streamlit library and wait for a response.
