| .. | ||
| ai_arxiv_agent_memory.py | ||
| README.md | ||
| requirements.txt | ||
📚 AI Research Agent with Memory
This Streamlit app implements an AI-powered research assistant that helps users search for academic papers on arXiv while maintaining a memory of user interests and past interactions. It utilizes OpenAI's GPT-4o-mini model for processing search results, MultiOn for web browsing, and Mem0 with Qdrant for maintaining user context.
Features
- Search interface for querying arXiv papers
- AI-powered processing of search results for improved readability
- Persistent memory of user interests and past searches
- Utilizes OpenAI's GPT-4o-mini model for intelligent processing
- Implements memory storage and retrieval using Mem0 and Qdrant
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 ai_arxiv_agent_memory.py