This is an experiment in building a large-language-model-backed chatbot. It can hold a conversation, remember previous comments/questions, and answer all types of queries (history, web search, movie data, weather, news, and more).
This app relies on the amazing LangChain Python library, which powers all the interesting AI stuff.
First, add your API keys in the .env
file.
Then, install the Python requirements and start the app. You'll want a Procfile manager like Foreman or Hivemind installed.
pip install requirements.txt
foreman start -f Procfile.local
Once it's running, open up https://127.0.0.1:9000/ and you'll be able to start interacting with the bot. There's also a writing assistant endpoint at https://127.0.0.1:9000/write.
Q: hi, my name is bob
A: Hi Bob! Nice to meet you! How can I help you today?
Q: what's the last letter of my name?
A: b
Q: show me a cat gif
A: Here is a cat gif: <iframe src="https://giphy.com/embed/ICOgUNjpvO0PC" width="480" height="480" frameBorder="0" class="giphy-embed" allowFullScreen></iframe><br /><a href="https://giphy.com/embed/ICOgUNjpvO0PC">powered by GIPHY</a>
Q: actually, can you make it a dolphin?
A: Here is a dolphin gif: <iframe src="https://giphy.com/embed/11ctq1pDmD3cB2" width="480" height="480" frameBorder="0" class="giphy-embed" allowFullScreen></iframe><br /><a href="https://giphy.com/embed/11ctq1pDmD3cB2">powered by GIPHY</a>
Q: what year was Dr. Strangelove released?
A: Dr. Strangelove was released in 1964.
Q: what's the sum of the first six prime numbers?
A: The sum of the first six prime numbers is 41.
This repository is set up to deploy on Fly.io. You should be able to follow their docs and get it running there very quickly.
This folder has a few attempts at generating/testing LLM examples programmatically. You can probably ignore this unless you're just curious.