| .. | ||
| llm_app_memory.py | ||
| multi_llm_memory.py | ||
| README.md | ||
| requirements.txt | ||
🧠 LLM App with Memory
This Streamlit app is an AI-powered chatbot that uses OpenAI's GPT-4o model with a persistent memory feature. It allows users to have conversations with the AI while maintaining context across multiple interactions.
Features
- Utilizes OpenAI's GPT-4o model for generating responses
- Implements persistent memory using Mem0 and Qdrant vector store
- Allows users to view their conversation history
- Provides a user-friendly interface with Streamlit
How to get Started?
- Clone the GitHub repository
git clone https://github.com/Shubhamsaboo/awesome-llm-apps.git
- Install the required dependencies:
pip install -r requirements.txt
- Ensure Qdrant is running: The app expects Qdrant to be running on localhost:6333. Adjust the configuration in the code if your setup is different.
docker pull qdrant/qdrant
docker run -p 6333:6333 -p 6334:6334 \
-v $(pwd)/qdrant_storage:/qdrant/storage:z \
qdrant/qdrant
- Run the Streamlit App
streamlit run llm_app_memory.py