# mem0-server **Repository Path**: chenlinyang/mem0-server ## Basic Information - **Project Name**: mem0-server - **Description**: mem0-server服务 - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2025-05-24 - **Last Updated**: 2025-05-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Getting Started ## 🌟感谢Mem0开源!🌟 👉Mem0官方地址[github](https://github.com/mem0ai/mem0) ## 此篇主要对Mem0做了最小化部署实践 采用以下技术组件: - 大语言模型:智谱AI(zhipu ai) - 嵌入模型:Ollama - 向量数据库:PostgreSQL - 图数据库:Neo4j # Mem0 REST API Server Mem0 provides a REST API server (written using FastAPI). Users can perform all operations through REST endpoints. The API also includes OpenAPI documentation, accessible at `/docs` when the server is running. ## Features - **Create memories:** Create memories based on messages for a user, agent, or run. - **Retrieve memories:** Get all memories for a given user, agent, or run. - **Search memories:** Search stored memories based on a query. - **Update memories:** Update an existing memory. - **Delete memories:** Delete a specific memory or all memories for a user, agent, or run. - **Reset memories:** Reset all memories for a user, agent, or run. - **OpenAPI Documentation:** Accessible via `/docs` endpoint. ## Running the server Follow the instructions in the [docs](https://docs.mem0.ai/open-source/features/rest-api) to run the server. - uvicorn main:app --host 0.0.0.0 --port 8000 --reload