pip install streamlit langchain openai wikipedia chromadb tiktoken
streamlit - used to build the app
langchain - used to build llm workflow
openai - needed to use openai gpt
wikipedia - used to connect gpt to wikipedia
chromadb - vector storage...next tut?
tiktoken - backend tokenizer for openai
- Retrieve an OpenAI API key from https://platform.openai.com/account/api-keys
- Set your secret key to a variable called
api_key
in a file calledapikey.py
at the root of this repository.
streamlit run app.py
Produced with the guidance of Nicholas Renotte's LangChain Crash Course: Build a AutoGPT app in 25 minutes!