A unique collection of characters recreated as chat models including:
"Sober" Clippy - former hardcore file addict & chronic data baita
J - spatial agent capable with geolocation actions, image recognitions, & distance conversion
Bob's Multiverse:
" " Ross - context shifting model capable of text <-> image,
" " Marley - audio generation & interpretation
Sponge " " - vector collegtor &compressor
" " the Builder - Master of epistemological studies and human triggered schizophrenic - capable of switching between build mode & foreman mode.
Starter examples for building LLM apps with Streamlit.
This app showcases a growing collection of LLM minimum working examples.
Current examples include:
- Chatbot
- File Q&A
- Chat with Internet search
- LangChain Quickstart
- LangChain PromptTemplate
- Chat with user feedback
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 key
button. - Next, enter an identifier name (optional) and click on the
Create secret key
button.
To set the OpenAI API key as an environment variable in Streamlit apps, do the following:
- At the lower right corner, click on
< Manage app
then click on the vertical "..." followed by clicking onSettings
. - This brings the App settings, next click on the
Secrets
tab and paste the API key into the text box as follows:
OPENAI_API_KEY='xxxxxxxxxx'
virtualenv .venv
source .venv/bin/activate
pip install -r .txt
streamlit run Chatbot.py