├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── documentation_issue.yml │ └── feature_request.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── cd.yml │ └── ci.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── LICENSE ├── LLM.md ├── MIGRATION_GUIDE_v1.0.md ├── Makefile ├── README.md ├── cookbooks ├── customer-support-chatbot.ipynb ├── helper │ ├── __init__.py │ └── mem0_teachability.py └── mem0-autogen.ipynb ├── docs ├── README.md ├── _snippets │ ├── async-memory-add.mdx │ ├── blank-notif.mdx │ ├── get-help.mdx │ └── paper-release.mdx ├── api-reference.mdx ├── api-reference │ ├── entities │ │ ├── delete-user.mdx │ │ └── get-users.mdx │ ├── events │ │ ├── get-event.mdx │ │ └── get-events.mdx │ ├── memory │ │ ├── add-memories.mdx │ │ ├── batch-delete.mdx │ │ ├── batch-update.mdx │ │ ├── create-memory-export.mdx │ │ ├── delete-memories.mdx │ │ ├── delete-memory.mdx │ │ ├── feedback.mdx │ │ ├── get-memories.mdx │ │ ├── get-memory-export.mdx │ │ ├── get-memory.mdx │ │ ├── history-memory.mdx │ │ ├── search-memories.mdx │ │ └── update-memory.mdx │ ├── organization │ │ ├── add-org-member.mdx │ │ ├── create-org.mdx │ │ ├── delete-org.mdx │ │ ├── get-org-members.mdx │ │ ├── get-org.mdx │ │ └── get-orgs.mdx │ ├── organizations-projects.mdx │ ├── project │ │ ├── add-project-member.mdx │ │ ├── create-project.mdx │ │ ├── delete-project.mdx │ │ ├── get-project-members.mdx │ │ ├── get-project.mdx │ │ └── get-projects.mdx │ └── webhook │ │ ├── create-webhook.mdx │ │ ├── delete-webhook.mdx │ │ ├── get-webhook.mdx │ │ └── update-webhook.mdx ├── changelog.mdx ├── components │ ├── embedders │ │ ├── config.mdx │ │ ├── models │ │ │ ├── aws_bedrock.mdx │ │ │ ├── azure_openai.mdx │ │ │ ├── google_AI.mdx │ │ │ ├── huggingface.mdx │ │ │ ├── langchain.mdx │ │ │ ├── lmstudio.mdx │ │ │ ├── ollama.mdx │ │ │ ├── openai.mdx │ │ │ ├── together.mdx │ │ │ └── vertexai.mdx │ │ └── overview.mdx │ ├── llms │ │ ├── config.mdx │ │ ├── models │ │ │ ├── anthropic.mdx │ │ │ ├── aws_bedrock.mdx │ │ │ ├── azure_openai.mdx │ │ │ ├── deepseek.mdx │ │ │ ├── google_AI.mdx │ │ │ ├── groq.mdx │ │ │ ├── langchain.mdx │ │ │ ├── litellm.mdx │ │ │ ├── lmstudio.mdx │ │ │ ├── mistral_AI.mdx │ │ │ ├── ollama.mdx │ │ │ ├── openai.mdx │ │ │ ├── sarvam.mdx │ │ │ ├── together.mdx │ │ │ ├── vllm.mdx │ │ │ └── xAI.mdx │ │ └── overview.mdx │ ├── rerankers │ │ ├── config.mdx │ │ ├── custom-prompts.mdx │ │ ├── models │ │ │ ├── cohere.mdx │ │ │ ├── huggingface.mdx │ │ │ ├── llm.mdx │ │ │ ├── llm_reranker.mdx │ │ │ ├── sentence_transformer.mdx │ │ │ └── zero_entropy.mdx │ │ ├── optimization.mdx │ │ └── overview.mdx │ └── vectordbs │ │ ├── config.mdx │ │ ├── dbs │ │ ├── azure.mdx │ │ ├── azure_mysql.mdx │ │ ├── baidu.mdx │ │ ├── cassandra.mdx │ │ ├── chroma.mdx │ │ ├── databricks.mdx │ │ ├── elasticsearch.mdx │ │ ├── faiss.mdx │ │ ├── langchain.mdx │ │ ├── milvus.mdx │ │ ├── mongodb.mdx │ │ ├── neptune_analytics.mdx │ │ ├── opensearch.mdx │ │ ├── pgvector.mdx │ │ ├── pinecone.mdx │ │ ├── qdrant.mdx │ │ ├── redis.mdx │ │ ├── s3_vectors.mdx │ │ ├── supabase.mdx │ │ ├── upstash-vector.mdx │ │ ├── valkey.mdx │ │ ├── vectorize.mdx │ │ ├── vertex_ai.mdx │ │ └── weaviate.mdx │ │ └── overview.mdx ├── contributing │ ├── development.mdx │ └── documentation.mdx ├── cookbooks │ ├── companions │ │ ├── ai-tutor.mdx │ │ ├── local-companion-ollama.mdx │ │ ├── nodejs-companion.mdx │ │ ├── quickstart-demo.mdx │ │ ├── travel-assistant.mdx │ │ ├── voice-companion-openai.mdx │ │ └── youtube-research.mdx │ ├── essentials │ │ ├── building-ai-companion.mdx │ │ ├── choosing-memory-architecture-vector-vs-graph.mdx │ │ ├── controlling-memory-ingestion.mdx │ │ ├── entity-partitioning-playbook.mdx │ │ ├── exporting-memories.mdx │ │ ├── memory-expiration-short-and-long-term.mdx │ │ └── tagging-and-organizing-memories.mdx │ ├── frameworks │ │ ├── chrome-extension.mdx │ │ ├── eliza-os-character.mdx │ │ ├── gemini-3-with-mem0-mcp.mdx │ │ ├── llamaindex-multiagent.mdx │ │ ├── llamaindex-react.mdx │ │ └── multimodal-retrieval.mdx │ ├── integrations │ │ ├── agents-sdk-tool.mdx │ │ ├── aws-bedrock.mdx │ │ ├── healthcare-google-adk.mdx │ │ ├── mastra-agent.mdx │ │ ├── neptune-analytics.mdx │ │ ├── openai-tool-calls.mdx │ │ └── tavily-search.mdx │ ├── operations │ │ ├── content-writing.mdx │ │ ├── deep-research.mdx │ │ ├── email-automation.mdx │ │ ├── support-inbox.mdx │ │ └── team-task-agent.mdx │ └── overview.mdx ├── core-concepts │ ├── memory-operations │ │ ├── add.mdx │ │ ├── delete.mdx │ │ ├── search.mdx │ │ └── update.mdx │ └── memory-types.mdx ├── docs.json ├── favicon.svg ├── images │ ├── add_architecture.png │ ├── banner-sm.png │ ├── dify-mem0-integration.png │ ├── docs thumbnails │ │ ├── API.png │ │ ├── Cookbooks.png │ │ ├── Integrations.png │ │ ├── Mem0 Open Source.png │ │ ├── Mem0 OpenMemory.png │ │ └── Mem0 Platform.png │ ├── graph-platform.png │ ├── graph_memory │ │ ├── graph_example1.png │ │ ├── graph_example2.png │ │ ├── graph_example3.png │ │ ├── graph_example4.png │ │ ├── graph_example5.png │ │ ├── graph_example6.png │ │ ├── graph_example7.png │ │ ├── graph_example8.png │ │ └── graph_example9.png │ ├── hero-dark.svg │ ├── hero-light.svg │ ├── mem0-bg.png │ ├── memory-agent-stack.png │ ├── platform │ │ ├── activity.png │ │ └── api-key.png │ ├── playground │ │ ├── pg-add-memory.png │ │ └── pg-retrieve-memory.png │ ├── rest-api-server.png │ ├── search_architecture.png │ ├── stateless-vs-stateful-agent-2.png │ └── stateless-vs-stateful-agent.png ├── integrations.mdx ├── integrations │ ├── agentops.mdx │ ├── agno.mdx │ ├── autogen.mdx │ ├── aws-bedrock.mdx │ ├── crewai.mdx │ ├── dify.mdx │ ├── elevenlabs.mdx │ ├── flowise.mdx │ ├── google-ai-adk.mdx │ ├── keywords.mdx │ ├── langchain-tools.mdx │ ├── langchain.mdx │ ├── langgraph.mdx │ ├── livekit.mdx │ ├── llama-index.mdx │ ├── mastra.mdx │ ├── openai-agents-sdk.mdx │ ├── pipecat.mdx │ ├── raycast.mdx │ └── vercel-ai-sdk.mdx ├── introduction.mdx ├── llms.txt ├── logo │ ├── Favicon copy.png │ ├── dark.svg │ ├── favicon.png │ ├── favicon_old.png │ ├── light.svg │ ├── mem0 logo.svg │ └── openmemory-icon.svg ├── migration │ ├── api-changes.mdx │ ├── breaking-changes.mdx │ ├── oss-to-platform.mdx │ └── v0-to-v1.mdx ├── open-source │ ├── configuration.mdx │ ├── features │ │ ├── async-memory.mdx │ │ ├── custom-fact-extraction-prompt.mdx │ │ ├── custom-update-memory-prompt.mdx │ │ ├── graph-memory.mdx │ │ ├── metadata-filtering.mdx │ │ ├── multimodal-support.mdx │ │ ├── openai_compatibility.mdx │ │ ├── overview.mdx │ │ ├── reranker-search.mdx │ │ ├── reranking.mdx │ │ └── rest-api.mdx │ ├── multimodal-support.mdx │ ├── node-quickstart.mdx │ ├── overview.mdx │ └── python-quickstart.mdx ├── openapi.json ├── openmemory │ ├── integrations.mdx │ ├── overview.mdx │ └── quickstart.mdx ├── platform │ ├── advanced-memory-operations.mdx │ ├── contribute.mdx │ ├── faqs.mdx │ ├── features │ │ ├── advanced-retrieval.mdx │ │ ├── async-client.mdx │ │ ├── async-mode-default-change.mdx │ │ ├── contextual-add.mdx │ │ ├── criteria-retrieval.mdx │ │ ├── custom-categories.mdx │ │ ├── custom-instructions.mdx │ │ ├── direct-import.mdx │ │ ├── entity-scoped-memory.mdx │ │ ├── expiration-date.mdx │ │ ├── feedback-mechanism.mdx │ │ ├── graph-memory.mdx │ │ ├── graph-threshold.mdx │ │ ├── group-chat.mdx │ │ ├── memory-export.mdx │ │ ├── multimodal-support.mdx │ │ ├── platform-overview.mdx │ │ ├── timestamp.mdx │ │ ├── v2-memory-filters.mdx │ │ └── webhooks.mdx │ ├── overview.mdx │ ├── platform-vs-oss.mdx │ └── quickstart.mdx ├── templates │ ├── api_reference_template.mdx │ ├── concept_guide_template.mdx │ ├── cookbook_template.mdx │ ├── feature_guide_template.mdx │ ├── integration_guide_template.mdx │ ├── migration_guide_template.mdx │ ├── operation_guide_template.mdx │ ├── parameters_reference_template.mdx │ ├── quickstart_template.mdx │ ├── release_notes_template.mdx │ ├── section_overview_template.mdx │ └── troubleshooting_playbook_template.mdx └── v0x │ ├── components │ ├── embedders │ │ ├── config.mdx │ │ ├── models │ │ │ ├── aws_bedrock.mdx │ │ │ ├── azure_openai.mdx │ │ │ ├── google_AI.mdx │ │ │ ├── huggingface.mdx │ │ │ ├── langchain.mdx │ │ │ ├── lmstudio.mdx │ │ │ ├── ollama.mdx │ │ │ ├── openai.mdx │ │ │ ├── together.mdx │ │ │ └── vertexai.mdx │ │ └── overview.mdx │ ├── llms │ │ ├── config.mdx │ │ ├── models │ │ │ ├── anthropic.mdx │ │ │ ├── aws_bedrock.mdx │ │ │ ├── azure_openai.mdx │ │ │ ├── deepseek.mdx │ │ │ ├── google_AI.mdx │ │ │ ├── groq.mdx │ │ │ ├── langchain.mdx │ │ │ ├── litellm.mdx │ │ │ ├── lmstudio.mdx │ │ │ ├── mistral_AI.mdx │ │ │ ├── ollama.mdx │ │ │ ├── openai.mdx │ │ │ ├── sarvam.mdx │ │ │ ├── together.mdx │ │ │ ├── vllm.mdx │ │ │ └── xAI.mdx │ │ └── overview.mdx │ └── vectordbs │ │ ├── config.mdx │ │ ├── dbs │ │ ├── azure.mdx │ │ ├── azure_mysql.mdx │ │ ├── baidu.mdx │ │ ├── chroma.mdx │ │ ├── databricks.mdx │ │ ├── elasticsearch.mdx │ │ ├── faiss.mdx │ │ ├── langchain.mdx │ │ ├── milvus.mdx │ │ ├── mongodb.mdx │ │ ├── neptune_analytics.mdx │ │ ├── opensearch.mdx │ │ ├── pgvector.mdx │ │ ├── pinecone.mdx │ │ ├── qdrant.mdx │ │ ├── redis.mdx │ │ ├── s3_vectors.mdx │ │ ├── supabase.mdx │ │ ├── upstash-vector.mdx │ │ ├── valkey.mdx │ │ ├── vectorize.mdx │ │ ├── vertex_ai.mdx │ │ └── weaviate.mdx │ │ └── overview.mdx │ ├── core-concepts │ ├── memory-operations │ │ ├── add.mdx │ │ ├── delete.mdx │ │ ├── search.mdx │ │ └── update.mdx │ └── memory-types.mdx │ ├── examples │ ├── ai_companion_js.mdx │ ├── aws_example.mdx │ ├── aws_neptune_analytics_hybrid_store.mdx │ ├── chrome-extension.mdx │ ├── collaborative-task-agent.mdx │ ├── customer-support-agent.mdx │ ├── eliza_os.mdx │ ├── email_processing.mdx │ ├── llama-index-mem0.mdx │ ├── llamaindex-multiagent-learning-system.mdx │ ├── mem0-agentic-tool.mdx │ ├── mem0-demo.mdx │ ├── mem0-google-adk-healthcare-assistant.mdx │ ├── mem0-mastra.mdx │ ├── mem0-openai-voice-demo.mdx │ ├── mem0-with-ollama.mdx │ ├── memory-guided-content-writing.mdx │ ├── multimodal-demo.mdx │ ├── openai-inbuilt-tools.mdx │ ├── personal-ai-tutor.mdx │ ├── personal-travel-assistant.mdx │ ├── personalized-deep-research.mdx │ ├── personalized-search-tavily-mem0.mdx │ └── youtube-assistant.mdx │ ├── faqs.mdx │ ├── images │ ├── add_architecture.png │ └── search_architecture.png │ ├── integrations │ ├── agentops.mdx │ ├── agno.mdx │ ├── autogen.mdx │ ├── aws-bedrock.mdx │ ├── crewai.mdx │ ├── dify.mdx │ ├── elevenlabs.mdx │ ├── flowise.mdx │ ├── google-ai-adk.mdx │ ├── keywords.mdx │ ├── langchain-tools.mdx │ ├── langchain.mdx │ ├── langgraph.mdx │ ├── livekit.mdx │ ├── llama-index.mdx │ ├── mastra.mdx │ ├── openai-agents-sdk.mdx │ ├── pipecat.mdx │ ├── raycast.mdx │ └── vercel-ai-sdk.mdx │ ├── introduction.mdx │ ├── open-source │ ├── node-quickstart.mdx │ ├── overview.mdx │ └── python-quickstart.mdx │ └── quickstart.mdx ├── embedchain ├── CITATION.cff ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── configs │ ├── anthropic.yaml │ ├── aws_bedrock.yaml │ ├── azure_openai.yaml │ ├── chroma.yaml │ ├── chunker.yaml │ ├── clarifai.yaml │ ├── cohere.yaml │ ├── full-stack.yaml │ ├── google.yaml │ ├── gpt4.yaml │ ├── gpt4all.yaml │ ├── huggingface.yaml │ ├── jina.yaml │ ├── llama2.yaml │ ├── ollama.yaml │ ├── opensearch.yaml │ ├── opensource.yaml │ ├── pinecone.yaml │ ├── pipeline.yaml │ ├── together.yaml │ ├── vertexai.yaml │ ├── vllm.yaml │ └── weaviate.yaml ├── docs │ ├── Makefile │ ├── README.md │ ├── _snippets │ │ ├── get-help.mdx │ │ ├── missing-data-source-tip.mdx │ │ ├── missing-llm-tip.mdx │ │ └── missing-vector-db-tip.mdx │ ├── api-reference │ │ ├── advanced │ │ │ └── configuration.mdx │ │ ├── app │ │ │ ├── add.mdx │ │ │ ├── chat.mdx │ │ │ ├── delete.mdx │ │ │ ├── deploy.mdx │ │ │ ├── evaluate.mdx │ │ │ ├── get.mdx │ │ │ ├── overview.mdx │ │ │ ├── query.mdx │ │ │ ├── reset.mdx │ │ │ └── search.mdx │ │ ├── overview.mdx │ │ └── store │ │ │ ├── ai-assistants.mdx │ │ │ └── openai-assistant.mdx │ ├── community │ │ └── connect-with-us.mdx │ ├── components │ │ ├── data-sources │ │ │ ├── audio.mdx │ │ │ ├── beehiiv.mdx │ │ │ ├── csv.mdx │ │ │ ├── custom.mdx │ │ │ ├── data-type-handling.mdx │ │ │ ├── directory.mdx │ │ │ ├── discord.mdx │ │ │ ├── discourse.mdx │ │ │ ├── docs-site.mdx │ │ │ ├── docx.mdx │ │ │ ├── dropbox.mdx │ │ │ ├── excel-file.mdx │ │ │ ├── github.mdx │ │ │ ├── gmail.mdx │ │ │ ├── google-drive.mdx │ │ │ ├── image.mdx │ │ │ ├── json.mdx │ │ │ ├── mdx.mdx │ │ │ ├── mysql.mdx │ │ │ ├── notion.mdx │ │ │ ├── openapi.mdx │ │ │ ├── overview.mdx │ │ │ ├── pdf-file.mdx │ │ │ ├── postgres.mdx │ │ │ ├── qna.mdx │ │ │ ├── sitemap.mdx │ │ │ ├── slack.mdx │ │ │ ├── substack.mdx │ │ │ ├── text-file.mdx │ │ │ ├── text.mdx │ │ │ ├── web-page.mdx │ │ │ ├── xml.mdx │ │ │ ├── youtube-channel.mdx │ │ │ └── youtube-video.mdx │ │ ├── embedding-models.mdx │ │ ├── evaluation.mdx │ │ ├── introduction.mdx │ │ ├── llms.mdx │ │ ├── retrieval-methods.mdx │ │ ├── vector-databases.mdx │ │ └── vector-databases │ │ │ ├── chromadb.mdx │ │ │ ├── elasticsearch.mdx │ │ │ ├── lancedb.mdx │ │ │ ├── opensearch.mdx │ │ │ ├── pinecone.mdx │ │ │ ├── qdrant.mdx │ │ │ ├── weaviate.mdx │ │ │ └── zilliz.mdx │ ├── contribution │ │ ├── dev.mdx │ │ ├── docs.mdx │ │ ├── guidelines.mdx │ │ └── python.mdx │ ├── deployment │ │ ├── fly_io.mdx │ │ ├── gradio_app.mdx │ │ ├── huggingface_spaces.mdx │ │ ├── modal_com.mdx │ │ ├── railway.mdx │ │ ├── render_com.mdx │ │ └── streamlit_io.mdx │ ├── development.mdx │ ├── examples │ │ ├── chat-with-PDF.mdx │ │ ├── community │ │ │ └── showcase.mdx │ │ ├── discord_bot.mdx │ │ ├── full_stack.mdx │ │ ├── nextjs-assistant.mdx │ │ ├── notebooks-and-replits.mdx │ │ ├── openai-assistant.mdx │ │ ├── opensource-assistant.mdx │ │ ├── poe_bot.mdx │ │ ├── rest-api │ │ │ ├── add-data.mdx │ │ │ ├── chat.mdx │ │ │ ├── check-status.mdx │ │ │ ├── create.mdx │ │ │ ├── delete.mdx │ │ │ ├── deploy.mdx │ │ │ ├── get-all-apps.mdx │ │ │ ├── get-data.mdx │ │ │ ├── getting-started.mdx │ │ │ └── query.mdx │ │ ├── showcase.mdx │ │ ├── slack-AI.mdx │ │ ├── slack_bot.mdx │ │ ├── telegram_bot.mdx │ │ └── whatsapp_bot.mdx │ ├── favicon.png │ ├── get-started │ │ ├── deployment.mdx │ │ ├── faq.mdx │ │ ├── full-stack.mdx │ │ ├── integrations.mdx │ │ ├── introduction.mdx │ │ └── quickstart.mdx │ ├── images │ │ ├── checks-passed.png │ │ ├── cover.gif │ │ ├── fly_io.png │ │ ├── fullstack-api-server.png │ │ ├── fullstack-chunks.png │ │ ├── fullstack.png │ │ ├── gradio_app.png │ │ ├── helicone-embedchain.png │ │ ├── langsmith.png │ │ ├── og.png │ │ ├── slack-ai.png │ │ └── whatsapp.jpg │ ├── integration │ │ ├── chainlit.mdx │ │ ├── helicone.mdx │ │ ├── langsmith.mdx │ │ ├── openlit.mdx │ │ └── streamlit-mistral.mdx │ ├── logo │ │ ├── dark-rt.svg │ │ ├── dark.svg │ │ ├── light-rt.svg │ │ └── light.svg │ ├── mint.json │ ├── product │ │ └── release-notes.mdx │ ├── rest-api.json │ ├── support │ │ └── get-help.mdx │ └── use-cases │ │ ├── chatbots.mdx │ │ ├── introduction.mdx │ │ ├── question-answering.mdx │ │ └── semantic-search.mdx ├── embedchain │ ├── __init__.py │ ├── alembic.ini │ ├── app.py │ ├── bots │ │ ├── __init__.py │ │ ├── base.py │ │ ├── discord.py │ │ ├── poe.py │ │ ├── slack.py │ │ └── whatsapp.py │ ├── cache.py │ ├── chunkers │ │ ├── __init__.py │ │ ├── audio.py │ │ ├── base_chunker.py │ │ ├── beehiiv.py │ │ ├── common_chunker.py │ │ ├── discourse.py │ │ ├── docs_site.py │ │ ├── docx_file.py │ │ ├── excel_file.py │ │ ├── gmail.py │ │ ├── google_drive.py │ │ ├── image.py │ │ ├── json.py │ │ ├── mdx.py │ │ ├── mysql.py │ │ ├── notion.py │ │ ├── openapi.py │ │ ├── pdf_file.py │ │ ├── postgres.py │ │ ├── qna_pair.py │ │ ├── rss_feed.py │ │ ├── sitemap.py │ │ ├── slack.py │ │ ├── substack.py │ │ ├── table.py │ │ ├── text.py │ │ ├── unstructured_file.py │ │ ├── web_page.py │ │ ├── xml.py │ │ └── youtube_video.py │ ├── cli.py │ ├── client.py │ ├── config │ │ ├── __init__.py │ │ ├── add_config.py │ │ ├── app_config.py │ │ ├── base_app_config.py │ │ ├── base_config.py │ │ ├── cache_config.py │ │ ├── embedder │ │ │ ├── __init__.py │ │ │ ├── aws_bedrock.py │ │ │ ├── base.py │ │ │ ├── google.py │ │ │ └── ollama.py │ │ ├── evaluation │ │ │ ├── __init__.py │ │ │ └── base.py │ │ ├── llm │ │ │ ├── __init__.py │ │ │ └── base.py │ │ ├── mem0_config.py │ │ ├── model_prices_and_context_window.json │ │ ├── vector_db │ │ │ ├── base.py │ │ │ ├── chroma.py │ │ │ ├── elasticsearch.py │ │ │ ├── lancedb.py │ │ │ ├── opensearch.py │ │ │ ├── pinecone.py │ │ │ ├── qdrant.py │ │ │ ├── weaviate.py │ │ │ └── zilliz.py │ │ └── vectordb │ │ │ └── __init__.py │ ├── constants.py │ ├── core │ │ ├── __init__.py │ │ └── db │ │ │ ├── __init__.py │ │ │ ├── database.py │ │ │ └── models.py │ ├── data_formatter │ │ ├── __init__.py │ │ └── data_formatter.py │ ├── deployment │ │ ├── fly.io │ │ │ ├── .dockerignore │ │ │ ├── .env.example │ │ │ ├── Dockerfile │ │ │ ├── app.py │ │ │ └── requirements.txt │ │ ├── gradio.app │ │ │ ├── app.py │ │ │ └── requirements.txt │ │ ├── modal.com │ │ │ ├── .env.example │ │ │ ├── .gitignore │ │ │ ├── app.py │ │ │ └── requirements.txt │ │ ├── render.com │ │ │ ├── .env.example │ │ │ ├── .gitignore │ │ │ ├── app.py │ │ │ ├── render.yaml │ │ │ └── requirements.txt │ │ └── streamlit.io │ │ │ ├── .streamlit │ │ │ └── secrets.toml │ │ │ ├── app.py │ │ │ └── requirements.txt │ ├── embedchain.py │ ├── embedder │ │ ├── __init__.py │ │ ├── aws_bedrock.py │ │ ├── azure_openai.py │ │ ├── base.py │ │ ├── clarifai.py │ │ ├── cohere.py │ │ ├── google.py │ │ ├── gpt4all.py │ │ ├── huggingface.py │ │ ├── mistralai.py │ │ ├── nvidia.py │ │ ├── ollama.py │ │ ├── openai.py │ │ └── vertexai.py │ ├── evaluation │ │ ├── __init__.py │ │ ├── base.py │ │ └── metrics │ │ │ ├── __init__.py │ │ │ ├── answer_relevancy.py │ │ │ ├── context_relevancy.py │ │ │ └── groundedness.py │ ├── factory.py │ ├── helpers │ │ ├── __init__.py │ │ ├── callbacks.py │ │ └── json_serializable.py │ ├── llm │ │ ├── __init__.py │ │ ├── anthropic.py │ │ ├── aws_bedrock.py │ │ ├── azure_openai.py │ │ ├── base.py │ │ ├── clarifai.py │ │ ├── cohere.py │ │ ├── google.py │ │ ├── gpt4all.py │ │ ├── groq.py │ │ ├── huggingface.py │ │ ├── jina.py │ │ ├── llama2.py │ │ ├── mistralai.py │ │ ├── nvidia.py │ │ ├── ollama.py │ │ ├── openai.py │ │ ├── together.py │ │ ├── vertex_ai.py │ │ └── vllm.py │ ├── loaders │ │ ├── __init__.py │ │ ├── audio.py │ │ ├── base_loader.py │ │ ├── beehiiv.py │ │ ├── csv.py │ │ ├── directory_loader.py │ │ ├── discord.py │ │ ├── discourse.py │ │ ├── docs_site_loader.py │ │ ├── docx_file.py │ │ ├── dropbox.py │ │ ├── excel_file.py │ │ ├── github.py │ │ ├── gmail.py │ │ ├── google_drive.py │ │ ├── image.py │ │ ├── json.py │ │ ├── local_qna_pair.py │ │ ├── local_text.py │ │ ├── mdx.py │ │ ├── mysql.py │ │ ├── notion.py │ │ ├── openapi.py │ │ ├── pdf_file.py │ │ ├── postgres.py │ │ ├── rss_feed.py │ │ ├── sitemap.py │ │ ├── slack.py │ │ ├── substack.py │ │ ├── text_file.py │ │ ├── unstructured_file.py │ │ ├── web_page.py │ │ ├── xml.py │ │ ├── youtube_channel.py │ │ └── youtube_video.py │ ├── memory │ │ ├── __init__.py │ │ ├── base.py │ │ ├── message.py │ │ └── utils.py │ ├── migrations │ │ ├── env.py │ │ ├── script.py.mako │ │ └── versions │ │ │ └── 40a327b3debd_create_initial_migrations.py │ ├── models │ │ ├── __init__.py │ │ ├── data_type.py │ │ ├── embedding_functions.py │ │ ├── providers.py │ │ └── vector_dimensions.py │ ├── pipeline.py │ ├── store │ │ ├── __init__.py │ │ └── assistants.py │ ├── telemetry │ │ ├── __init__.py │ │ └── posthog.py │ ├── utils │ │ ├── __init__.py │ │ ├── cli.py │ │ ├── evaluation.py │ │ └── misc.py │ └── vectordb │ │ ├── __init__.py │ │ ├── base.py │ │ ├── chroma.py │ │ ├── elasticsearch.py │ │ ├── lancedb.py │ │ ├── opensearch.py │ │ ├── pinecone.py │ │ ├── qdrant.py │ │ ├── weaviate.py │ │ └── zilliz.py ├── examples │ ├── api_server │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── api_server.py │ │ ├── docker-compose.yml │ │ ├── requirements.txt │ │ └── variables.env │ ├── chainlit │ │ ├── .gitignore │ │ ├── README.md │ │ ├── app.py │ │ ├── chainlit.md │ │ └── requirements.txt │ ├── chat-pdf │ │ ├── README.md │ │ ├── app.py │ │ ├── embedchain.json │ │ └── requirements.txt │ ├── discord_bot │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── discord_bot.py │ │ ├── docker-compose.yml │ │ ├── requirements.txt │ │ └── variables.env │ ├── full_stack │ │ ├── .dockerignore │ │ ├── README.md │ │ ├── backend │ │ │ ├── .dockerignore │ │ │ ├── .gitignore │ │ │ ├── Dockerfile │ │ │ ├── models.py │ │ │ ├── paths.py │ │ │ ├── requirements.txt │ │ │ ├── routes │ │ │ │ ├── chat_response.py │ │ │ │ ├── dashboard.py │ │ │ │ └── sources.py │ │ │ └── server.py │ │ ├── docker-compose.yml │ │ └── frontend │ │ │ ├── .dockerignore │ │ │ ├── .eslintrc.json │ │ │ ├── .gitignore │ │ │ ├── Dockerfile │ │ │ ├── jsconfig.json │ │ │ ├── next.config.js │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── postcss.config.js │ │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── icons │ │ │ │ ├── bot.svg │ │ │ │ ├── close.svg │ │ │ │ ├── cross.svg │ │ │ │ ├── dashboard.svg │ │ │ │ ├── doc.svg │ │ │ │ ├── drawer.svg │ │ │ │ ├── dropdown.svg │ │ │ │ ├── dropup.svg │ │ │ │ ├── github.svg │ │ │ │ ├── linkedin.svg │ │ │ │ ├── pdf.svg │ │ │ │ ├── plus.svg │ │ │ │ ├── settings.svg │ │ │ │ ├── sitemap.svg │ │ │ │ ├── text.svg │ │ │ │ ├── twitter.svg │ │ │ │ ├── web.svg │ │ │ │ └── youtube.svg │ │ │ └── images │ │ │ │ └── embedchain.png │ │ │ ├── src │ │ │ ├── components │ │ │ │ ├── PageWrapper.js │ │ │ │ ├── chat │ │ │ │ │ ├── BotWrapper.js │ │ │ │ │ └── HumanWrapper.js │ │ │ │ └── dashboard │ │ │ │ │ ├── CreateBot.js │ │ │ │ │ ├── DeleteBot.js │ │ │ │ │ ├── PurgeChats.js │ │ │ │ │ └── SetOpenAIKey.js │ │ │ ├── containers │ │ │ │ ├── ChatWindow.js │ │ │ │ ├── SetSources.js │ │ │ │ └── Sidebar.js │ │ │ ├── pages │ │ │ │ ├── [bot_slug] │ │ │ │ │ └── app.js │ │ │ │ ├── _app.js │ │ │ │ ├── _document.js │ │ │ │ └── index.js │ │ │ └── styles │ │ │ │ └── globals.css │ │ │ └── tailwind.config.js │ ├── mistral-streamlit │ │ ├── README.md │ │ ├── app.py │ │ ├── config.yaml │ │ └── requirements.txt │ ├── nextjs │ │ ├── README.md │ │ ├── ec_app │ │ │ ├── .dockerignore │ │ │ ├── .env.example │ │ │ ├── Dockerfile │ │ │ ├── app.py │ │ │ ├── embedchain.json │ │ │ ├── fly.toml │ │ │ └── requirements.txt │ │ ├── nextjs_discord │ │ │ ├── .dockerignore │ │ │ ├── .env.example │ │ │ ├── Dockerfile │ │ │ ├── app.py │ │ │ ├── embedchain.json │ │ │ ├── fly.toml │ │ │ └── requirements.txt │ │ ├── nextjs_slack │ │ │ ├── .dockerignore │ │ │ ├── .env.example │ │ │ ├── Dockerfile │ │ │ ├── app.py │ │ │ ├── embedchain.json │ │ │ ├── fly.toml │ │ │ └── requirements.txt │ │ └── requirements.txt │ ├── private-ai │ │ ├── README.md │ │ ├── config.yaml │ │ ├── privateai.py │ │ └── requirements.txt │ ├── rest-api │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── __init__.py │ │ ├── bruno │ │ │ └── ec-rest-api │ │ │ │ ├── bruno.json │ │ │ │ ├── default_add.bru │ │ │ │ ├── default_chat.bru │ │ │ │ ├── default_query.bru │ │ │ │ └── ping.bru │ │ ├── configs │ │ │ └── README.md │ │ ├── database.py │ │ ├── default.yaml │ │ ├── main.py │ │ ├── models.py │ │ ├── requirements.txt │ │ ├── sample-config.yaml │ │ ├── services.py │ │ └── utils.py │ ├── sadhguru-ai │ │ ├── README.md │ │ ├── app.py │ │ └── requirements.txt │ ├── slack_bot │ │ ├── Dockerfile │ │ └── requirements.txt │ ├── telegram_bot │ │ ├── .env.example │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── requirements.txt │ │ └── telegram_bot.py │ ├── unacademy-ai │ │ ├── README.md │ │ ├── app.py │ │ └── requirements.txt │ └── whatsapp_bot │ │ ├── .env.example │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── requirements.txt │ │ ├── run.py │ │ └── whatsapp_bot.py ├── notebooks │ ├── anthropic.ipynb │ ├── aws-bedrock.ipynb │ ├── azure-openai.ipynb │ ├── azure_openai.yaml │ ├── chromadb.ipynb │ ├── clarifai.ipynb │ ├── cohere.ipynb │ ├── elasticsearch.ipynb │ ├── embedchain-chromadb-server.ipynb │ ├── embedchain-docs-site-example.ipynb │ ├── gpt4all.ipynb │ ├── hugging_face_hub.ipynb │ ├── jina.ipynb │ ├── lancedb.ipynb │ ├── llama2.ipynb │ ├── ollama.ipynb │ ├── openai.ipynb │ ├── openai_azure.yaml │ ├── opensearch.ipynb │ ├── pinecone.ipynb │ ├── together.ipynb │ └── vertex_ai.ipynb ├── poetry.lock ├── poetry.toml ├── pyproject.toml └── tests │ ├── __init__.py │ ├── chunkers │ ├── test_base_chunker.py │ ├── test_chunkers.py │ └── test_text.py │ ├── conftest.py │ ├── embedchain │ ├── test_add.py │ ├── test_embedchain.py │ └── test_utils.py │ ├── embedder │ ├── test_aws_bedrock_embedder.py │ ├── test_azure_openai_embedder.py │ ├── test_embedder.py │ └── test_huggingface_embedder.py │ ├── evaluation │ ├── test_answer_relevancy_metric.py │ ├── test_context_relevancy_metric.py │ └── test_groundedness_metric.py │ ├── helper_classes │ └── test_json_serializable.py │ ├── llm │ ├── conftest.py │ ├── test_anthrophic.py │ ├── test_aws_bedrock.py │ ├── test_azure_openai.py │ ├── test_base_llm.py │ ├── test_chat.py │ ├── test_clarifai.py │ ├── test_cohere.py │ ├── test_generate_prompt.py │ ├── test_google.py │ ├── test_gpt4all.py │ ├── test_huggingface.py │ ├── test_jina.py │ ├── test_llama2.py │ ├── test_mistralai.py │ ├── test_ollama.py │ ├── test_openai.py │ ├── test_query.py │ ├── test_together.py │ └── test_vertex_ai.py │ ├── loaders │ ├── test_audio.py │ ├── test_csv.py │ ├── test_discourse.py │ ├── test_docs_site.py │ ├── test_docs_site_loader.py │ ├── test_docx_file.py │ ├── test_dropbox.py │ ├── test_excel_file.py │ ├── test_github.py │ ├── test_gmail.py │ ├── test_google_drive.py │ ├── test_json.py │ ├── test_local_qna_pair.py │ ├── test_local_text.py │ ├── test_mdx.py │ ├── test_mysql.py │ ├── test_notion.py │ ├── test_openapi.py │ ├── test_pdf_file.py │ ├── test_postgres.py │ ├── test_slack.py │ ├── test_web_page.py │ ├── test_xml.py │ └── test_youtube_video.py │ ├── memory │ ├── test_chat_memory.py │ └── test_memory_messages.py │ ├── models │ └── test_data_type.py │ ├── telemetry │ └── test_posthog.py │ ├── test_app.py │ ├── test_client.py │ ├── test_factory.py │ ├── test_utils.py │ └── vectordb │ ├── test_chroma_db.py │ ├── test_elasticsearch_db.py │ ├── test_lancedb.py │ ├── test_pinecone.py │ ├── test_qdrant.py │ ├── test_weaviate.py │ └── test_zilliz_db.py ├── evaluation ├── Makefile ├── README.md ├── evals.py ├── generate_scores.py ├── metrics │ ├── llm_judge.py │ └── utils.py ├── prompts.py ├── run_experiments.py └── src │ ├── langmem.py │ ├── memzero │ ├── add.py │ └── search.py │ ├── openai │ └── predict.py │ ├── rag.py │ ├── utils.py │ └── zep │ ├── add.py │ └── search.py ├── examples ├── graph-db-demo │ ├── alice-memories.png │ ├── kuzu-example.ipynb │ ├── memgraph-example.ipynb │ ├── neo4j-example.ipynb │ ├── neptune-db-example.ipynb │ ├── neptune-example-visualization-1.png │ ├── neptune-example-visualization-2.png │ ├── neptune-example-visualization-3.png │ ├── neptune-example-visualization-4.png │ └── neptune-example.ipynb ├── mem0-demo │ ├── .env.example │ ├── .gitignore │ ├── app │ │ ├── api │ │ │ └── chat │ │ │ │ └── route.ts │ │ ├── assistant.tsx │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── components.json │ ├── components │ │ ├── assistant-ui │ │ │ ├── markdown-text.tsx │ │ │ ├── memory-indicator.tsx │ │ │ ├── memory-ui.tsx │ │ │ ├── theme-aware-logo.tsx │ │ │ ├── thread-list.tsx │ │ │ ├── thread.tsx │ │ │ └── tooltip-icon-button.tsx │ │ ├── mem0 │ │ │ ├── github-button.tsx │ │ │ ├── markdown.css │ │ │ ├── markdown.tsx │ │ │ └── theme-aware-logo.tsx │ │ └── ui │ │ │ ├── alert-dialog.tsx │ │ │ ├── avatar.tsx │ │ │ ├── badge.tsx │ │ │ ├── button.tsx │ │ │ ├── popover.tsx │ │ │ ├── scroll-area.tsx │ │ │ └── tooltip.tsx │ ├── eslint.config.mjs │ ├── images │ │ ├── assistant-ui-dark.svg │ │ ├── assistant-ui.svg │ │ ├── dark.svg │ │ └── light.svg │ ├── lib │ │ └── utils.ts │ ├── next-env.d.ts │ ├── next.config.ts │ ├── package.json │ ├── postcss.config.mjs │ ├── public │ │ ├── file.svg │ │ ├── globe.svg │ │ ├── next.svg │ │ ├── vercel.svg │ │ └── window.svg │ ├── tailwind.config.ts │ └── tsconfig.json ├── misc │ ├── diet_assistant_voice_cartesia.py │ ├── fitness_checker.py │ ├── healthcare_assistant_google_adk.py │ ├── movie_recommendation_grok3.py │ ├── multillm_memory.py │ ├── personal_assistant_agno.py │ ├── personalized_search.py │ ├── strands_agent_aws_elasticache_neptune.py │ ├── study_buddy.py │ ├── test.py │ ├── vllm_example.py │ └── voice_assistant_elevenlabs.py ├── multiagents │ └── llamaindex_learning_system.py ├── multimodal-demo │ ├── .gitattributes │ ├── .gitignore │ ├── components.json │ ├── eslint.config.js │ ├── index.html │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ └── mem0_logo.jpeg │ ├── src │ │ ├── App.tsx │ │ ├── assets │ │ │ ├── mem0_logo.jpeg │ │ │ ├── react.svg │ │ │ └── user.jpg │ │ ├── components │ │ │ ├── api-settings-popup.tsx │ │ │ ├── chevron-toggle.tsx │ │ │ ├── header.tsx │ │ │ ├── input-area.tsx │ │ │ ├── memories.tsx │ │ │ ├── messages.tsx │ │ │ └── ui │ │ │ │ ├── avatar.tsx │ │ │ │ ├── badge.tsx │ │ │ │ ├── button.tsx │ │ │ │ ├── card.tsx │ │ │ │ ├── dialog.tsx │ │ │ │ ├── input.tsx │ │ │ │ ├── label.tsx │ │ │ │ ├── scroll-area.tsx │ │ │ │ └── select.tsx │ │ ├── constants │ │ │ └── messages.ts │ │ ├── contexts │ │ │ └── GlobalContext.tsx │ │ ├── hooks │ │ │ ├── useAuth.ts │ │ │ ├── useChat.ts │ │ │ └── useFileHandler.ts │ │ ├── index.css │ │ ├── libs │ │ │ └── utils.ts │ │ ├── main.tsx │ │ ├── page.tsx │ │ ├── pages │ │ │ └── home.tsx │ │ ├── types.ts │ │ ├── utils │ │ │ └── fileUtils.ts │ │ └── vite-env.d.ts │ ├── tailwind.config.js │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.node.json │ ├── useChat.ts │ └── vite.config.ts ├── openai-inbuilt-tools │ ├── index.js │ └── package.json ├── vercel-ai-sdk-chat-app │ ├── .gitattributes │ ├── .gitignore │ ├── components.json │ ├── eslint.config.js │ ├── index.html │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ └── mem0_logo.jpeg │ ├── src │ │ ├── App.tsx │ │ ├── assets │ │ │ ├── mem0_logo.jpeg │ │ │ ├── react.svg │ │ │ └── user.jpg │ │ ├── components │ │ │ ├── api-settings-popup.tsx │ │ │ ├── chevron-toggle.tsx │ │ │ ├── header.tsx │ │ │ ├── input-area.tsx │ │ │ ├── memories.tsx │ │ │ ├── messages.tsx │ │ │ └── ui │ │ │ │ ├── avatar.tsx │ │ │ │ ├── badge.tsx │ │ │ │ ├── button.tsx │ │ │ │ ├── card.tsx │ │ │ │ ├── dialog.tsx │ │ │ │ ├── input.tsx │ │ │ │ ├── label.tsx │ │ │ │ ├── scroll-area.tsx │ │ │ │ └── select.tsx │ │ ├── constants │ │ │ └── messages.ts │ │ ├── contexts │ │ │ └── GlobalContext.tsx │ │ ├── hooks │ │ │ ├── useAuth.ts │ │ │ ├── useChat.ts │ │ │ └── useFileHandler.ts │ │ ├── index.css │ │ ├── libs │ │ │ └── utils.ts │ │ ├── main.tsx │ │ ├── page.tsx │ │ ├── pages │ │ │ └── home.tsx │ │ ├── types.ts │ │ ├── utils │ │ │ └── fileUtils.ts │ │ └── vite-env.d.ts │ ├── tailwind.config.js │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts └── yt-assistant-chrome │ ├── .gitignore │ ├── README.md │ ├── assets │ └── dark.svg │ ├── manifest.json │ ├── package.json │ ├── public │ ├── options.html │ └── popup.html │ ├── src │ ├── background.js │ ├── content.js │ ├── options.js │ └── popup.js │ ├── styles │ ├── content.css │ ├── options.css │ └── popup.css │ └── webpack.config.js ├── mem0-ts ├── README.md ├── jest.config.js ├── package.json ├── pnpm-lock.yaml ├── src │ ├── client │ │ ├── index.ts │ │ ├── mem0.ts │ │ ├── mem0.types.ts │ │ ├── telemetry.ts │ │ ├── telemetry.types.ts │ │ └── tests │ │ │ └── memoryClient.test.ts │ ├── community │ │ ├── .prettierignore │ │ ├── package.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── integrations │ │ │ │ └── langchain │ │ │ │ ├── index.ts │ │ │ │ └── mem0.ts │ │ └── tsconfig.json │ └── oss │ │ ├── .env.example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── examples │ │ ├── basic.ts │ │ ├── llms │ │ │ └── mistral-example.ts │ │ ├── local-llms.ts │ │ ├── utils │ │ │ └── test-utils.ts │ │ └── vector-stores │ │ │ ├── azure-ai-search.ts │ │ │ ├── index.ts │ │ │ ├── memory.ts │ │ │ ├── pgvector.ts │ │ │ ├── qdrant.ts │ │ │ ├── redis.ts │ │ │ └── supabase.ts │ │ ├── package.json │ │ ├── src │ │ ├── config │ │ │ ├── defaults.ts │ │ │ └── manager.ts │ │ ├── embeddings │ │ │ ├── azure.ts │ │ │ ├── base.ts │ │ │ ├── google.ts │ │ │ ├── langchain.ts │ │ │ ├── ollama.ts │ │ │ └── openai.ts │ │ ├── graphs │ │ │ ├── configs.ts │ │ │ ├── tools.ts │ │ │ └── utils.ts │ │ ├── index.ts │ │ ├── llms │ │ │ ├── anthropic.ts │ │ │ ├── azure.ts │ │ │ ├── base.ts │ │ │ ├── google.ts │ │ │ ├── groq.ts │ │ │ ├── langchain.ts │ │ │ ├── mistral.ts │ │ │ ├── ollama.ts │ │ │ ├── openai.ts │ │ │ └── openai_structured.ts │ │ ├── memory │ │ │ ├── graph_memory.ts │ │ │ ├── index.ts │ │ │ └── memory.types.ts │ │ ├── prompts │ │ │ └── index.ts │ │ ├── storage │ │ │ ├── DummyHistoryManager.ts │ │ │ ├── MemoryHistoryManager.ts │ │ │ ├── SQLiteManager.ts │ │ │ ├── SupabaseHistoryManager.ts │ │ │ ├── base.ts │ │ │ └── index.ts │ │ ├── types │ │ │ └── index.ts │ │ ├── utils │ │ │ ├── bm25.ts │ │ │ ├── factory.ts │ │ │ ├── logger.ts │ │ │ ├── memory.ts │ │ │ ├── telemetry.ts │ │ │ └── telemetry.types.ts │ │ └── vector_stores │ │ │ ├── azure_ai_search.ts │ │ │ ├── base.ts │ │ │ ├── langchain.ts │ │ │ ├── memory.ts │ │ │ ├── pgvector.ts │ │ │ ├── qdrant.ts │ │ │ ├── redis.ts │ │ │ ├── supabase.ts │ │ │ └── vectorize.ts │ │ ├── tests │ │ ├── factory.test.ts │ │ └── memory.test.ts │ │ └── tsconfig.json ├── tests │ └── .gitkeep ├── tsconfig.json ├── tsconfig.test.json └── tsup.config.ts ├── mem0 ├── __init__.py ├── client │ ├── __init__.py │ ├── main.py │ ├── project.py │ └── utils.py ├── configs │ ├── __init__.py │ ├── base.py │ ├── embeddings │ │ ├── __init__.py │ │ └── base.py │ ├── enums.py │ ├── llms │ │ ├── __init__.py │ │ ├── anthropic.py │ │ ├── aws_bedrock.py │ │ ├── azure.py │ │ ├── base.py │ │ ├── deepseek.py │ │ ├── lmstudio.py │ │ ├── ollama.py │ │ ├── openai.py │ │ └── vllm.py │ ├── prompts.py │ ├── rerankers │ │ ├── __init__.py │ │ ├── base.py │ │ ├── cohere.py │ │ ├── config.py │ │ ├── huggingface.py │ │ ├── llm.py │ │ ├── sentence_transformer.py │ │ └── zero_entropy.py │ └── vector_stores │ │ ├── __init__.py │ │ ├── azure_ai_search.py │ │ ├── azure_mysql.py │ │ ├── baidu.py │ │ ├── cassandra.py │ │ ├── chroma.py │ │ ├── databricks.py │ │ ├── elasticsearch.py │ │ ├── faiss.py │ │ ├── langchain.py │ │ ├── milvus.py │ │ ├── mongodb.py │ │ ├── neptune.py │ │ ├── opensearch.py │ │ ├── pgvector.py │ │ ├── pinecone.py │ │ ├── qdrant.py │ │ ├── redis.py │ │ ├── s3_vectors.py │ │ ├── supabase.py │ │ ├── upstash_vector.py │ │ ├── valkey.py │ │ ├── vertex_ai_vector_search.py │ │ └── weaviate.py ├── embeddings │ ├── __init__.py │ ├── aws_bedrock.py │ ├── azure_openai.py │ ├── base.py │ ├── configs.py │ ├── fastembed.py │ ├── gemini.py │ ├── huggingface.py │ ├── langchain.py │ ├── lmstudio.py │ ├── mock.py │ ├── ollama.py │ ├── openai.py │ ├── together.py │ └── vertexai.py ├── exceptions.py ├── graphs │ ├── __init__.py │ ├── configs.py │ ├── neptune │ │ ├── __init__.py │ │ ├── base.py │ │ ├── neptunedb.py │ │ └── neptunegraph.py │ ├── tools.py │ └── utils.py ├── llms │ ├── __init__.py │ ├── anthropic.py │ ├── aws_bedrock.py │ ├── azure_openai.py │ ├── azure_openai_structured.py │ ├── base.py │ ├── configs.py │ ├── deepseek.py │ ├── gemini.py │ ├── groq.py │ ├── langchain.py │ ├── litellm.py │ ├── lmstudio.py │ ├── ollama.py │ ├── openai.py │ ├── openai_structured.py │ ├── sarvam.py │ ├── together.py │ ├── vllm.py │ └── xai.py ├── memory │ ├── __init__.py │ ├── base.py │ ├── graph_memory.py │ ├── kuzu_memory.py │ ├── main.py │ ├── memgraph_memory.py │ ├── setup.py │ ├── storage.py │ ├── telemetry.py │ └── utils.py ├── proxy │ ├── __init__.py │ └── main.py ├── reranker │ ├── __init__.py │ ├── base.py │ ├── cohere_reranker.py │ ├── huggingface_reranker.py │ ├── llm_reranker.py │ ├── sentence_transformer_reranker.py │ └── zero_entropy_reranker.py ├── utils │ ├── factory.py │ └── gcp_auth.py └── vector_stores │ ├── __init__.py │ ├── azure_ai_search.py │ ├── azure_mysql.py │ ├── baidu.py │ ├── base.py │ ├── cassandra.py │ ├── chroma.py │ ├── configs.py │ ├── databricks.py │ ├── elasticsearch.py │ ├── faiss.py │ ├── langchain.py │ ├── milvus.py │ ├── mongodb.py │ ├── neptune_analytics.py │ ├── opensearch.py │ ├── pgvector.py │ ├── pinecone.py │ ├── qdrant.py │ ├── redis.py │ ├── s3_vectors.py │ ├── supabase.py │ ├── upstash_vector.py │ ├── valkey.py │ ├── vertex_ai_vector_search.py │ └── weaviate.py ├── openmemory ├── .gitignore ├── CONTRIBUTING.md ├── Makefile ├── README.md ├── api │ ├── .dockerignore │ ├── .env.example │ ├── .python-version │ ├── Dockerfile │ ├── README.md │ ├── alembic.ini │ ├── alembic │ │ ├── README │ │ ├── env.py │ │ ├── script.py.mako │ │ └── versions │ │ │ ├── 0b53c747049a_initial_migration.py │ │ │ ├── add_config_table.py │ │ │ └── afd00efbd06b_add_unique_user_id_constraints.py │ ├── app │ │ ├── __init__.py │ │ ├── config.py │ │ ├── database.py │ │ ├── mcp_server.py │ │ ├── models.py │ │ ├── routers │ │ │ ├── __init__.py │ │ │ ├── apps.py │ │ │ ├── backup.py │ │ │ ├── config.py │ │ │ ├── memories.py │ │ │ └── stats.py │ │ ├── schemas.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── categorization.py │ │ │ ├── db.py │ │ │ ├── memory.py │ │ │ ├── permissions.py │ │ │ └── prompts.py │ ├── config.json │ ├── default_config.json │ ├── main.py │ └── requirements.txt ├── backup-scripts │ └── export_openmemory.sh ├── compose │ ├── chroma.yml │ ├── elasticsearch.yml │ ├── faiss.yml │ ├── milvus.yml │ ├── opensearch.yml │ ├── pgvector.yml │ ├── qdrant.yml │ ├── redis.yml │ └── weaviate.yml ├── docker-compose.yml ├── run.sh └── ui │ ├── .dockerignore │ ├── .env.example │ ├── Dockerfile │ ├── app │ ├── apps │ │ ├── [appId] │ │ │ ├── components │ │ │ │ ├── AppDetailCard.tsx │ │ │ │ └── MemoryCard.tsx │ │ │ └── page.tsx │ │ ├── components │ │ │ ├── AppCard.tsx │ │ │ ├── AppFilters.tsx │ │ │ └── AppGrid.tsx │ │ └── page.tsx │ ├── globals.css │ ├── layout.tsx │ ├── loading.tsx │ ├── memories │ │ ├── components │ │ │ ├── CreateMemoryDialog.tsx │ │ │ ├── FilterComponent.tsx │ │ │ ├── MemoriesSection.tsx │ │ │ ├── MemoryFilters.tsx │ │ │ ├── MemoryPagination.tsx │ │ │ ├── MemoryTable.tsx │ │ │ └── PageSizeSelector.tsx │ │ └── page.tsx │ ├── memory │ │ └── [id] │ │ │ ├── components │ │ │ ├── AccessLog.tsx │ │ │ ├── MemoryActions.tsx │ │ │ ├── MemoryDetails.tsx │ │ │ └── RelatedMemories.tsx │ │ │ └── page.tsx │ ├── not-found.tsx │ ├── page.tsx │ ├── providers.tsx │ └── settings │ │ └── page.tsx │ ├── components.json │ ├── components │ ├── Navbar.tsx │ ├── dashboard │ │ ├── Install.tsx │ │ └── Stats.tsx │ ├── form-view.tsx │ ├── json-editor.tsx │ ├── shared │ │ ├── categories.tsx │ │ ├── source-app.tsx │ │ └── update-memory.tsx │ ├── theme-provider.tsx │ ├── types.ts │ └── ui │ │ ├── accordion.tsx │ │ ├── alert-dialog.tsx │ │ ├── alert.tsx │ │ ├── aspect-ratio.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── breadcrumb.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── card.tsx │ │ ├── carousel.tsx │ │ ├── chart.tsx │ │ ├── checkbox.tsx │ │ ├── collapsible.tsx │ │ ├── command.tsx │ │ ├── context-menu.tsx │ │ ├── dialog.tsx │ │ ├── drawer.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── hover-card.tsx │ │ ├── input-otp.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── menubar.tsx │ │ ├── navigation-menu.tsx │ │ ├── pagination.tsx │ │ ├── popover.tsx │ │ ├── progress.tsx │ │ ├── radio-group.tsx │ │ ├── resizable.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── sidebar.tsx │ │ ├── skeleton.tsx │ │ ├── slider.tsx │ │ ├── sonner.tsx │ │ ├── switch.tsx │ │ ├── table.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ ├── toggle-group.tsx │ │ ├── toggle.tsx │ │ ├── tooltip.tsx │ │ ├── use-mobile.tsx │ │ └── use-toast.ts │ ├── entrypoint.sh │ ├── hooks │ ├── use-mobile.tsx │ ├── use-toast.ts │ ├── useAppsApi.ts │ ├── useConfig.ts │ ├── useFiltersApi.ts │ ├── useMemoriesApi.ts │ ├── useStats.ts │ └── useUI.ts │ ├── lib │ ├── helpers.ts │ └── utils.ts │ ├── next-env.d.ts │ ├── next.config.dev.mjs │ ├── next.config.mjs │ ├── package.json │ ├── pnpm-lock.yaml │ ├── postcss.config.mjs │ ├── public │ ├── images │ │ ├── augment.png │ │ ├── claude.webp │ │ ├── cline.png │ │ ├── cursor.png │ │ ├── default.png │ │ ├── enconvo.png │ │ ├── open-memory.svg │ │ ├── roocline.png │ │ ├── windsurf.png │ │ └── witsy.png │ ├── logo.svg │ ├── placeholder-logo.png │ ├── placeholder-logo.svg │ ├── placeholder-user.jpg │ ├── placeholder.jpg │ └── placeholder.svg │ ├── skeleton │ ├── AppCardSkeleton.tsx │ ├── AppDetailCardSkeleton.tsx │ ├── AppFiltersSkeleton.tsx │ ├── MemoryCardSkeleton.tsx │ ├── MemorySkeleton.tsx │ └── MemoryTableSkeleton.tsx │ ├── store │ ├── appsSlice.ts │ ├── configSlice.ts │ ├── filtersSlice.ts │ ├── memoriesSlice.ts │ ├── profileSlice.ts │ ├── store.ts │ └── uiSlice.ts │ ├── styles │ ├── animation.css │ ├── globals.css │ └── notfound.scss │ ├── tailwind.config.ts │ └── tsconfig.json ├── poetry.lock ├── pyproject.toml ├── server ├── .env.example ├── Dockerfile ├── Makefile ├── README.md ├── dev.Dockerfile ├── docker-compose.yaml ├── main.py └── requirements.txt ├── tests ├── __init__.py ├── configs │ └── test_prompts.py ├── embeddings │ ├── test_azure_openai_embeddings.py │ ├── test_fastembed_embeddings.py │ ├── test_gemini_emeddings.py │ ├── test_huggingface_embeddings.py │ ├── test_lm_studio_embeddings.py │ ├── test_ollama_embeddings.py │ ├── test_openai_embeddings.py │ └── test_vertexai_embeddings.py ├── llms │ ├── test_azure_openai.py │ ├── test_azure_openai_structured.py │ ├── test_deepseek.py │ ├── test_gemini.py │ ├── test_groq.py │ ├── test_langchain.py │ ├── test_litellm.py │ ├── test_lm_studio.py │ ├── test_ollama.py │ ├── test_openai.py │ ├── test_together.py │ └── test_vllm.py ├── memory │ ├── test_kuzu.py │ ├── test_main.py │ ├── test_neo4j_cypher_syntax.py │ ├── test_neptune_analytics_memory.py │ ├── test_neptune_memory.py │ └── test_storage.py ├── test_main.py ├── test_memory.py ├── test_memory_integration.py ├── test_proxy.py ├── test_telemetry.py └── vector_stores │ ├── test_azure_ai_search.py │ ├── test_azure_mysql.py │ ├── test_baidu.py │ ├── test_cassandra.py │ ├── test_chroma.py │ ├── test_databricks.py │ ├── test_elasticsearch.py │ ├── test_faiss.py │ ├── test_langchain_vector_store.py │ ├── test_milvus.py │ ├── test_mongodb.py │ ├── test_neptune_analytics.py │ ├── test_opensearch.py │ ├── test_pgvector.py │ ├── test_pinecone.py │ ├── test_qdrant.py │ ├── test_s3_vectors.py │ ├── test_supabase.py │ ├── test_upstash_vector.py │ ├── test_valkey.py │ ├── test_vertex_ai_vector_search.py │ └── test_weaviate.py └── vercel-ai-sdk ├── .gitattributes ├── .gitignore ├── README.md ├── config └── test-config.ts ├── jest.config.js ├── nodemon.json ├── package.json ├── pnpm-lock.yaml ├── src ├── index.ts ├── mem0-facade.ts ├── mem0-generic-language-model.ts ├── mem0-provider-selector.ts ├── mem0-provider.ts ├── mem0-types.ts ├── mem0-utils.ts ├── provider-response-provider.ts └── stream-utils.ts ├── teardown.ts ├── tests ├── generate-output.test.ts ├── mem0-provider-tests │ ├── mem0-cohere.test.ts │ ├── mem0-google.test.ts │ ├── mem0-groq.test.ts │ ├── mem0-openai-structured-ouput.test.ts │ ├── mem0-openai.test.ts │ └── mem0_anthropic.test.ts ├── mem0-toolcalls.test.ts ├── memory-core.test.ts ├── text-properties.test.ts └── utils-test │ ├── anthropic-integration.test.ts │ ├── cohere-integration.test.ts │ ├── google-integration.test.ts │ ├── groq-integration.test.ts │ └── openai-integration.test.ts ├── tsconfig.json └── tsup.config.ts /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/.github/workflows/cd.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/LICENSE -------------------------------------------------------------------------------- /LLM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/LLM.md -------------------------------------------------------------------------------- /MIGRATION_GUIDE_v1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/MIGRATION_GUIDE_v1.0.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/README.md -------------------------------------------------------------------------------- /cookbooks/customer-support-chatbot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/cookbooks/customer-support-chatbot.ipynb -------------------------------------------------------------------------------- /cookbooks/helper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cookbooks/helper/mem0_teachability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/cookbooks/helper/mem0_teachability.py -------------------------------------------------------------------------------- /cookbooks/mem0-autogen.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/cookbooks/mem0-autogen.ipynb -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_snippets/async-memory-add.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/_snippets/async-memory-add.mdx -------------------------------------------------------------------------------- /docs/_snippets/blank-notif.mdx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_snippets/get-help.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/_snippets/get-help.mdx -------------------------------------------------------------------------------- /docs/_snippets/paper-release.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/_snippets/paper-release.mdx -------------------------------------------------------------------------------- /docs/api-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/api-reference.mdx -------------------------------------------------------------------------------- /docs/api-reference/entities/get-users.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Get Users' 3 | openapi: get /v1/entities/ 4 | --- -------------------------------------------------------------------------------- /docs/api-reference/events/get-event.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/api-reference/events/get-event.mdx -------------------------------------------------------------------------------- /docs/api-reference/events/get-events.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/api-reference/events/get-events.mdx -------------------------------------------------------------------------------- /docs/api-reference/memory/batch-update.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Batch Update Memories' 3 | openapi: put /v1/batch/ 4 | --- -------------------------------------------------------------------------------- /docs/api-reference/memory/feedback.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/api-reference/memory/feedback.mdx -------------------------------------------------------------------------------- /docs/api-reference/memory/get-memory.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/api-reference/memory/get-memory.mdx -------------------------------------------------------------------------------- /docs/changelog.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/changelog.mdx -------------------------------------------------------------------------------- /docs/components/embedders/config.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/components/embedders/config.mdx -------------------------------------------------------------------------------- /docs/components/embedders/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/components/embedders/overview.mdx -------------------------------------------------------------------------------- /docs/components/llms/config.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/components/llms/config.mdx -------------------------------------------------------------------------------- /docs/components/llms/models/deepseek.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/components/llms/models/deepseek.mdx -------------------------------------------------------------------------------- /docs/components/llms/models/groq.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/components/llms/models/groq.mdx -------------------------------------------------------------------------------- /docs/components/llms/models/litellm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/components/llms/models/litellm.mdx -------------------------------------------------------------------------------- /docs/components/llms/models/lmstudio.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/components/llms/models/lmstudio.mdx -------------------------------------------------------------------------------- /docs/components/llms/models/ollama.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/components/llms/models/ollama.mdx -------------------------------------------------------------------------------- /docs/components/llms/models/openai.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/components/llms/models/openai.mdx -------------------------------------------------------------------------------- /docs/components/llms/models/sarvam.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/components/llms/models/sarvam.mdx -------------------------------------------------------------------------------- /docs/components/llms/models/together.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/components/llms/models/together.mdx -------------------------------------------------------------------------------- /docs/components/llms/models/vllm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/components/llms/models/vllm.mdx -------------------------------------------------------------------------------- /docs/components/llms/models/xAI.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/components/llms/models/xAI.mdx -------------------------------------------------------------------------------- /docs/components/llms/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/components/llms/overview.mdx -------------------------------------------------------------------------------- /docs/components/rerankers/config.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/components/rerankers/config.mdx -------------------------------------------------------------------------------- /docs/components/rerankers/models/llm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/components/rerankers/models/llm.mdx -------------------------------------------------------------------------------- /docs/components/rerankers/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/components/rerankers/overview.mdx -------------------------------------------------------------------------------- /docs/components/vectordbs/config.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/components/vectordbs/config.mdx -------------------------------------------------------------------------------- /docs/components/vectordbs/dbs/azure.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/components/vectordbs/dbs/azure.mdx -------------------------------------------------------------------------------- /docs/components/vectordbs/dbs/baidu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/components/vectordbs/dbs/baidu.mdx -------------------------------------------------------------------------------- /docs/components/vectordbs/dbs/chroma.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/components/vectordbs/dbs/chroma.mdx -------------------------------------------------------------------------------- /docs/components/vectordbs/dbs/faiss.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/components/vectordbs/dbs/faiss.mdx -------------------------------------------------------------------------------- /docs/components/vectordbs/dbs/milvus.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/components/vectordbs/dbs/milvus.mdx -------------------------------------------------------------------------------- /docs/components/vectordbs/dbs/qdrant.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/components/vectordbs/dbs/qdrant.mdx -------------------------------------------------------------------------------- /docs/components/vectordbs/dbs/redis.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/components/vectordbs/dbs/redis.mdx -------------------------------------------------------------------------------- /docs/components/vectordbs/dbs/valkey.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/components/vectordbs/dbs/valkey.mdx -------------------------------------------------------------------------------- /docs/components/vectordbs/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/components/vectordbs/overview.mdx -------------------------------------------------------------------------------- /docs/contributing/development.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/contributing/development.mdx -------------------------------------------------------------------------------- /docs/contributing/documentation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/contributing/documentation.mdx -------------------------------------------------------------------------------- /docs/cookbooks/companions/ai-tutor.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/cookbooks/companions/ai-tutor.mdx -------------------------------------------------------------------------------- /docs/cookbooks/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/cookbooks/overview.mdx -------------------------------------------------------------------------------- /docs/core-concepts/memory-types.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/core-concepts/memory-types.mdx -------------------------------------------------------------------------------- /docs/docs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/docs.json -------------------------------------------------------------------------------- /docs/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/favicon.svg -------------------------------------------------------------------------------- /docs/images/add_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/images/add_architecture.png -------------------------------------------------------------------------------- /docs/images/banner-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/images/banner-sm.png -------------------------------------------------------------------------------- /docs/images/dify-mem0-integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/images/dify-mem0-integration.png -------------------------------------------------------------------------------- /docs/images/docs thumbnails/API.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/images/docs thumbnails/API.png -------------------------------------------------------------------------------- /docs/images/graph-platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/images/graph-platform.png -------------------------------------------------------------------------------- /docs/images/hero-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/images/hero-dark.svg -------------------------------------------------------------------------------- /docs/images/hero-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/images/hero-light.svg -------------------------------------------------------------------------------- /docs/images/mem0-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/images/mem0-bg.png -------------------------------------------------------------------------------- /docs/images/memory-agent-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/images/memory-agent-stack.png -------------------------------------------------------------------------------- /docs/images/platform/activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/images/platform/activity.png -------------------------------------------------------------------------------- /docs/images/platform/api-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/images/platform/api-key.png -------------------------------------------------------------------------------- /docs/images/playground/pg-add-memory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/images/playground/pg-add-memory.png -------------------------------------------------------------------------------- /docs/images/rest-api-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/images/rest-api-server.png -------------------------------------------------------------------------------- /docs/images/search_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/images/search_architecture.png -------------------------------------------------------------------------------- /docs/integrations.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/integrations.mdx -------------------------------------------------------------------------------- /docs/integrations/agentops.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/integrations/agentops.mdx -------------------------------------------------------------------------------- /docs/integrations/agno.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/integrations/agno.mdx -------------------------------------------------------------------------------- /docs/integrations/autogen.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/integrations/autogen.mdx -------------------------------------------------------------------------------- /docs/integrations/aws-bedrock.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/integrations/aws-bedrock.mdx -------------------------------------------------------------------------------- /docs/integrations/crewai.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/integrations/crewai.mdx -------------------------------------------------------------------------------- /docs/integrations/dify.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/integrations/dify.mdx -------------------------------------------------------------------------------- /docs/integrations/elevenlabs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/integrations/elevenlabs.mdx -------------------------------------------------------------------------------- /docs/integrations/flowise.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/integrations/flowise.mdx -------------------------------------------------------------------------------- /docs/integrations/google-ai-adk.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/integrations/google-ai-adk.mdx -------------------------------------------------------------------------------- /docs/integrations/keywords.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/integrations/keywords.mdx -------------------------------------------------------------------------------- /docs/integrations/langchain-tools.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/integrations/langchain-tools.mdx -------------------------------------------------------------------------------- /docs/integrations/langchain.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/integrations/langchain.mdx -------------------------------------------------------------------------------- /docs/integrations/langgraph.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/integrations/langgraph.mdx -------------------------------------------------------------------------------- /docs/integrations/livekit.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/integrations/livekit.mdx -------------------------------------------------------------------------------- /docs/integrations/llama-index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/integrations/llama-index.mdx -------------------------------------------------------------------------------- /docs/integrations/mastra.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/integrations/mastra.mdx -------------------------------------------------------------------------------- /docs/integrations/openai-agents-sdk.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/integrations/openai-agents-sdk.mdx -------------------------------------------------------------------------------- /docs/integrations/pipecat.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/integrations/pipecat.mdx -------------------------------------------------------------------------------- /docs/integrations/raycast.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/integrations/raycast.mdx -------------------------------------------------------------------------------- /docs/integrations/vercel-ai-sdk.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/integrations/vercel-ai-sdk.mdx -------------------------------------------------------------------------------- /docs/introduction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/introduction.mdx -------------------------------------------------------------------------------- /docs/llms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/llms.txt -------------------------------------------------------------------------------- /docs/logo/Favicon copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/logo/Favicon copy.png -------------------------------------------------------------------------------- /docs/logo/dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/logo/dark.svg -------------------------------------------------------------------------------- /docs/logo/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/logo/favicon.png -------------------------------------------------------------------------------- /docs/logo/favicon_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/logo/favicon_old.png -------------------------------------------------------------------------------- /docs/logo/light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/logo/light.svg -------------------------------------------------------------------------------- /docs/logo/mem0 logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/logo/mem0 logo.svg -------------------------------------------------------------------------------- /docs/logo/openmemory-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/logo/openmemory-icon.svg -------------------------------------------------------------------------------- /docs/migration/api-changes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/migration/api-changes.mdx -------------------------------------------------------------------------------- /docs/migration/breaking-changes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/migration/breaking-changes.mdx -------------------------------------------------------------------------------- /docs/migration/oss-to-platform.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/migration/oss-to-platform.mdx -------------------------------------------------------------------------------- /docs/migration/v0-to-v1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/migration/v0-to-v1.mdx -------------------------------------------------------------------------------- /docs/open-source/configuration.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/open-source/configuration.mdx -------------------------------------------------------------------------------- /docs/open-source/features/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/open-source/features/overview.mdx -------------------------------------------------------------------------------- /docs/open-source/features/reranking.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/open-source/features/reranking.mdx -------------------------------------------------------------------------------- /docs/open-source/features/rest-api.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/open-source/features/rest-api.mdx -------------------------------------------------------------------------------- /docs/open-source/multimodal-support.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/open-source/multimodal-support.mdx -------------------------------------------------------------------------------- /docs/open-source/node-quickstart.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/open-source/node-quickstart.mdx -------------------------------------------------------------------------------- /docs/open-source/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/open-source/overview.mdx -------------------------------------------------------------------------------- /docs/open-source/python-quickstart.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/open-source/python-quickstart.mdx -------------------------------------------------------------------------------- /docs/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/openapi.json -------------------------------------------------------------------------------- /docs/openmemory/integrations.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/openmemory/integrations.mdx -------------------------------------------------------------------------------- /docs/openmemory/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/openmemory/overview.mdx -------------------------------------------------------------------------------- /docs/openmemory/quickstart.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/openmemory/quickstart.mdx -------------------------------------------------------------------------------- /docs/platform/contribute.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/platform/contribute.mdx -------------------------------------------------------------------------------- /docs/platform/faqs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/platform/faqs.mdx -------------------------------------------------------------------------------- /docs/platform/features/async-client.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/platform/features/async-client.mdx -------------------------------------------------------------------------------- /docs/platform/features/direct-import.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/platform/features/direct-import.mdx -------------------------------------------------------------------------------- /docs/platform/features/graph-memory.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/platform/features/graph-memory.mdx -------------------------------------------------------------------------------- /docs/platform/features/group-chat.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/platform/features/group-chat.mdx -------------------------------------------------------------------------------- /docs/platform/features/memory-export.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/platform/features/memory-export.mdx -------------------------------------------------------------------------------- /docs/platform/features/timestamp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/platform/features/timestamp.mdx -------------------------------------------------------------------------------- /docs/platform/features/webhooks.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/platform/features/webhooks.mdx -------------------------------------------------------------------------------- /docs/platform/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/platform/overview.mdx -------------------------------------------------------------------------------- /docs/platform/platform-vs-oss.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/platform/platform-vs-oss.mdx -------------------------------------------------------------------------------- /docs/platform/quickstart.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/platform/quickstart.mdx -------------------------------------------------------------------------------- /docs/templates/cookbook_template.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/templates/cookbook_template.mdx -------------------------------------------------------------------------------- /docs/templates/quickstart_template.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/templates/quickstart_template.mdx -------------------------------------------------------------------------------- /docs/v0x/components/embedders/config.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/components/embedders/config.mdx -------------------------------------------------------------------------------- /docs/v0x/components/llms/config.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/components/llms/config.mdx -------------------------------------------------------------------------------- /docs/v0x/components/llms/models/groq.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/components/llms/models/groq.mdx -------------------------------------------------------------------------------- /docs/v0x/components/llms/models/vllm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/components/llms/models/vllm.mdx -------------------------------------------------------------------------------- /docs/v0x/components/llms/models/xAI.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/components/llms/models/xAI.mdx -------------------------------------------------------------------------------- /docs/v0x/components/llms/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/components/llms/overview.mdx -------------------------------------------------------------------------------- /docs/v0x/components/vectordbs/config.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/components/vectordbs/config.mdx -------------------------------------------------------------------------------- /docs/v0x/core-concepts/memory-types.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/core-concepts/memory-types.mdx -------------------------------------------------------------------------------- /docs/v0x/examples/ai_companion_js.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/examples/ai_companion_js.mdx -------------------------------------------------------------------------------- /docs/v0x/examples/aws_example.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/examples/aws_example.mdx -------------------------------------------------------------------------------- /docs/v0x/examples/chrome-extension.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/examples/chrome-extension.mdx -------------------------------------------------------------------------------- /docs/v0x/examples/eliza_os.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/examples/eliza_os.mdx -------------------------------------------------------------------------------- /docs/v0x/examples/email_processing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/examples/email_processing.mdx -------------------------------------------------------------------------------- /docs/v0x/examples/llama-index-mem0.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/examples/llama-index-mem0.mdx -------------------------------------------------------------------------------- /docs/v0x/examples/mem0-agentic-tool.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/examples/mem0-agentic-tool.mdx -------------------------------------------------------------------------------- /docs/v0x/examples/mem0-demo.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/examples/mem0-demo.mdx -------------------------------------------------------------------------------- /docs/v0x/examples/mem0-mastra.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/examples/mem0-mastra.mdx -------------------------------------------------------------------------------- /docs/v0x/examples/mem0-with-ollama.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/examples/mem0-with-ollama.mdx -------------------------------------------------------------------------------- /docs/v0x/examples/multimodal-demo.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/examples/multimodal-demo.mdx -------------------------------------------------------------------------------- /docs/v0x/examples/personal-ai-tutor.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/examples/personal-ai-tutor.mdx -------------------------------------------------------------------------------- /docs/v0x/examples/youtube-assistant.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/examples/youtube-assistant.mdx -------------------------------------------------------------------------------- /docs/v0x/faqs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/faqs.mdx -------------------------------------------------------------------------------- /docs/v0x/images/add_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/images/add_architecture.png -------------------------------------------------------------------------------- /docs/v0x/images/search_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/images/search_architecture.png -------------------------------------------------------------------------------- /docs/v0x/integrations/agentops.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/integrations/agentops.mdx -------------------------------------------------------------------------------- /docs/v0x/integrations/agno.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/integrations/agno.mdx -------------------------------------------------------------------------------- /docs/v0x/integrations/autogen.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/integrations/autogen.mdx -------------------------------------------------------------------------------- /docs/v0x/integrations/aws-bedrock.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/integrations/aws-bedrock.mdx -------------------------------------------------------------------------------- /docs/v0x/integrations/crewai.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/integrations/crewai.mdx -------------------------------------------------------------------------------- /docs/v0x/integrations/dify.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/integrations/dify.mdx -------------------------------------------------------------------------------- /docs/v0x/integrations/elevenlabs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/integrations/elevenlabs.mdx -------------------------------------------------------------------------------- /docs/v0x/integrations/flowise.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/integrations/flowise.mdx -------------------------------------------------------------------------------- /docs/v0x/integrations/google-ai-adk.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/integrations/google-ai-adk.mdx -------------------------------------------------------------------------------- /docs/v0x/integrations/keywords.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/integrations/keywords.mdx -------------------------------------------------------------------------------- /docs/v0x/integrations/langchain.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/integrations/langchain.mdx -------------------------------------------------------------------------------- /docs/v0x/integrations/langgraph.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/integrations/langgraph.mdx -------------------------------------------------------------------------------- /docs/v0x/integrations/livekit.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/integrations/livekit.mdx -------------------------------------------------------------------------------- /docs/v0x/integrations/llama-index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/integrations/llama-index.mdx -------------------------------------------------------------------------------- /docs/v0x/integrations/mastra.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/integrations/mastra.mdx -------------------------------------------------------------------------------- /docs/v0x/integrations/pipecat.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/integrations/pipecat.mdx -------------------------------------------------------------------------------- /docs/v0x/integrations/raycast.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/integrations/raycast.mdx -------------------------------------------------------------------------------- /docs/v0x/integrations/vercel-ai-sdk.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/integrations/vercel-ai-sdk.mdx -------------------------------------------------------------------------------- /docs/v0x/introduction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/introduction.mdx -------------------------------------------------------------------------------- /docs/v0x/open-source/node-quickstart.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/open-source/node-quickstart.mdx -------------------------------------------------------------------------------- /docs/v0x/open-source/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/open-source/overview.mdx -------------------------------------------------------------------------------- /docs/v0x/quickstart.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/docs/v0x/quickstart.mdx -------------------------------------------------------------------------------- /embedchain/CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/CITATION.cff -------------------------------------------------------------------------------- /embedchain/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/CONTRIBUTING.md -------------------------------------------------------------------------------- /embedchain/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/LICENSE -------------------------------------------------------------------------------- /embedchain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/Makefile -------------------------------------------------------------------------------- /embedchain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/README.md -------------------------------------------------------------------------------- /embedchain/configs/anthropic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/configs/anthropic.yaml -------------------------------------------------------------------------------- /embedchain/configs/aws_bedrock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/configs/aws_bedrock.yaml -------------------------------------------------------------------------------- /embedchain/configs/azure_openai.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/configs/azure_openai.yaml -------------------------------------------------------------------------------- /embedchain/configs/chroma.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/configs/chroma.yaml -------------------------------------------------------------------------------- /embedchain/configs/chunker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/configs/chunker.yaml -------------------------------------------------------------------------------- /embedchain/configs/clarifai.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/configs/clarifai.yaml -------------------------------------------------------------------------------- /embedchain/configs/cohere.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/configs/cohere.yaml -------------------------------------------------------------------------------- /embedchain/configs/full-stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/configs/full-stack.yaml -------------------------------------------------------------------------------- /embedchain/configs/google.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/configs/google.yaml -------------------------------------------------------------------------------- /embedchain/configs/gpt4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/configs/gpt4.yaml -------------------------------------------------------------------------------- /embedchain/configs/gpt4all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/configs/gpt4all.yaml -------------------------------------------------------------------------------- /embedchain/configs/huggingface.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/configs/huggingface.yaml -------------------------------------------------------------------------------- /embedchain/configs/jina.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/configs/jina.yaml -------------------------------------------------------------------------------- /embedchain/configs/llama2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/configs/llama2.yaml -------------------------------------------------------------------------------- /embedchain/configs/ollama.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/configs/ollama.yaml -------------------------------------------------------------------------------- /embedchain/configs/opensearch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/configs/opensearch.yaml -------------------------------------------------------------------------------- /embedchain/configs/opensource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/configs/opensource.yaml -------------------------------------------------------------------------------- /embedchain/configs/pinecone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/configs/pinecone.yaml -------------------------------------------------------------------------------- /embedchain/configs/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/configs/pipeline.yaml -------------------------------------------------------------------------------- /embedchain/configs/together.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/configs/together.yaml -------------------------------------------------------------------------------- /embedchain/configs/vertexai.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/configs/vertexai.yaml -------------------------------------------------------------------------------- /embedchain/configs/vllm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/configs/vllm.yaml -------------------------------------------------------------------------------- /embedchain/configs/weaviate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/configs/weaviate.yaml -------------------------------------------------------------------------------- /embedchain/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/Makefile -------------------------------------------------------------------------------- /embedchain/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/README.md -------------------------------------------------------------------------------- /embedchain/docs/_snippets/get-help.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/_snippets/get-help.mdx -------------------------------------------------------------------------------- /embedchain/docs/api-reference/overview.mdx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embedchain/docs/components/llms.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/components/llms.mdx -------------------------------------------------------------------------------- /embedchain/docs/components/retrieval-methods.mdx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embedchain/docs/contribution/dev.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/contribution/dev.mdx -------------------------------------------------------------------------------- /embedchain/docs/contribution/docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/contribution/docs.mdx -------------------------------------------------------------------------------- /embedchain/docs/contribution/python.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/contribution/python.mdx -------------------------------------------------------------------------------- /embedchain/docs/deployment/fly_io.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/deployment/fly_io.mdx -------------------------------------------------------------------------------- /embedchain/docs/deployment/modal_com.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/deployment/modal_com.mdx -------------------------------------------------------------------------------- /embedchain/docs/deployment/railway.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/deployment/railway.mdx -------------------------------------------------------------------------------- /embedchain/docs/development.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/development.mdx -------------------------------------------------------------------------------- /embedchain/docs/examples/discord_bot.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/examples/discord_bot.mdx -------------------------------------------------------------------------------- /embedchain/docs/examples/full_stack.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/examples/full_stack.mdx -------------------------------------------------------------------------------- /embedchain/docs/examples/poe_bot.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/examples/poe_bot.mdx -------------------------------------------------------------------------------- /embedchain/docs/examples/rest-api/chat.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | openapi: post /{app_id}/chat 3 | --- -------------------------------------------------------------------------------- /embedchain/docs/examples/showcase.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/examples/showcase.mdx -------------------------------------------------------------------------------- /embedchain/docs/examples/slack-AI.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/examples/slack-AI.mdx -------------------------------------------------------------------------------- /embedchain/docs/examples/slack_bot.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/examples/slack_bot.mdx -------------------------------------------------------------------------------- /embedchain/docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/favicon.png -------------------------------------------------------------------------------- /embedchain/docs/get-started/faq.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/get-started/faq.mdx -------------------------------------------------------------------------------- /embedchain/docs/get-started/integrations.mdx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embedchain/docs/images/checks-passed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/images/checks-passed.png -------------------------------------------------------------------------------- /embedchain/docs/images/cover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/images/cover.gif -------------------------------------------------------------------------------- /embedchain/docs/images/fly_io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/images/fly_io.png -------------------------------------------------------------------------------- /embedchain/docs/images/fullstack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/images/fullstack.png -------------------------------------------------------------------------------- /embedchain/docs/images/gradio_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/images/gradio_app.png -------------------------------------------------------------------------------- /embedchain/docs/images/langsmith.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/images/langsmith.png -------------------------------------------------------------------------------- /embedchain/docs/images/og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/images/og.png -------------------------------------------------------------------------------- /embedchain/docs/images/slack-ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/images/slack-ai.png -------------------------------------------------------------------------------- /embedchain/docs/images/whatsapp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/images/whatsapp.jpg -------------------------------------------------------------------------------- /embedchain/docs/integration/chainlit.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/integration/chainlit.mdx -------------------------------------------------------------------------------- /embedchain/docs/integration/helicone.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/integration/helicone.mdx -------------------------------------------------------------------------------- /embedchain/docs/integration/openlit.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/integration/openlit.mdx -------------------------------------------------------------------------------- /embedchain/docs/logo/dark-rt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/logo/dark-rt.svg -------------------------------------------------------------------------------- /embedchain/docs/logo/dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/logo/dark.svg -------------------------------------------------------------------------------- /embedchain/docs/logo/light-rt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/logo/light-rt.svg -------------------------------------------------------------------------------- /embedchain/docs/logo/light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/logo/light.svg -------------------------------------------------------------------------------- /embedchain/docs/mint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/mint.json -------------------------------------------------------------------------------- /embedchain/docs/rest-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/rest-api.json -------------------------------------------------------------------------------- /embedchain/docs/support/get-help.mdx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embedchain/docs/use-cases/chatbots.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/docs/use-cases/chatbots.mdx -------------------------------------------------------------------------------- /embedchain/embedchain/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/__init__.py -------------------------------------------------------------------------------- /embedchain/embedchain/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/alembic.ini -------------------------------------------------------------------------------- /embedchain/embedchain/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/app.py -------------------------------------------------------------------------------- /embedchain/embedchain/bots/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/bots/__init__.py -------------------------------------------------------------------------------- /embedchain/embedchain/bots/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/bots/base.py -------------------------------------------------------------------------------- /embedchain/embedchain/bots/discord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/bots/discord.py -------------------------------------------------------------------------------- /embedchain/embedchain/bots/poe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/bots/poe.py -------------------------------------------------------------------------------- /embedchain/embedchain/bots/slack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/bots/slack.py -------------------------------------------------------------------------------- /embedchain/embedchain/bots/whatsapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/bots/whatsapp.py -------------------------------------------------------------------------------- /embedchain/embedchain/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/cache.py -------------------------------------------------------------------------------- /embedchain/embedchain/chunkers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embedchain/embedchain/chunkers/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/chunkers/audio.py -------------------------------------------------------------------------------- /embedchain/embedchain/chunkers/gmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/chunkers/gmail.py -------------------------------------------------------------------------------- /embedchain/embedchain/chunkers/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/chunkers/image.py -------------------------------------------------------------------------------- /embedchain/embedchain/chunkers/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/chunkers/json.py -------------------------------------------------------------------------------- /embedchain/embedchain/chunkers/mdx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/chunkers/mdx.py -------------------------------------------------------------------------------- /embedchain/embedchain/chunkers/mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/chunkers/mysql.py -------------------------------------------------------------------------------- /embedchain/embedchain/chunkers/notion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/chunkers/notion.py -------------------------------------------------------------------------------- /embedchain/embedchain/chunkers/slack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/chunkers/slack.py -------------------------------------------------------------------------------- /embedchain/embedchain/chunkers/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/chunkers/table.py -------------------------------------------------------------------------------- /embedchain/embedchain/chunkers/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/chunkers/text.py -------------------------------------------------------------------------------- /embedchain/embedchain/chunkers/xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/chunkers/xml.py -------------------------------------------------------------------------------- /embedchain/embedchain/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/cli.py -------------------------------------------------------------------------------- /embedchain/embedchain/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/client.py -------------------------------------------------------------------------------- /embedchain/embedchain/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/config/__init__.py -------------------------------------------------------------------------------- /embedchain/embedchain/config/embedder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embedchain/embedchain/config/llm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embedchain/embedchain/config/llm/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/config/llm/base.py -------------------------------------------------------------------------------- /embedchain/embedchain/config/vectordb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embedchain/embedchain/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/constants.py -------------------------------------------------------------------------------- /embedchain/embedchain/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embedchain/embedchain/core/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embedchain/embedchain/core/db/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/core/db/models.py -------------------------------------------------------------------------------- /embedchain/embedchain/deployment/fly.io/.dockerignore: -------------------------------------------------------------------------------- 1 | db/ -------------------------------------------------------------------------------- /embedchain/embedchain/deployment/fly.io/.env.example: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY=sk-xxx -------------------------------------------------------------------------------- /embedchain/embedchain/deployment/fly.io/requirements.txt: -------------------------------------------------------------------------------- 1 | fastapi==0.104.0 2 | uvicorn==0.23.2 3 | embedchain 4 | beautifulsoup4 -------------------------------------------------------------------------------- /embedchain/embedchain/deployment/gradio.app/requirements.txt: -------------------------------------------------------------------------------- 1 | gradio==4.11.0 2 | embedchain 3 | -------------------------------------------------------------------------------- /embedchain/embedchain/deployment/modal.com/.env.example: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY=sk-xxx -------------------------------------------------------------------------------- /embedchain/embedchain/deployment/modal.com/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | -------------------------------------------------------------------------------- /embedchain/embedchain/deployment/render.com/.env.example: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY=sk-xxx -------------------------------------------------------------------------------- /embedchain/embedchain/deployment/render.com/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | -------------------------------------------------------------------------------- /embedchain/embedchain/deployment/streamlit.io/.streamlit/secrets.toml: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY="sk-xxx" 2 | -------------------------------------------------------------------------------- /embedchain/embedchain/deployment/streamlit.io/requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit==1.29.0 2 | embedchain 3 | -------------------------------------------------------------------------------- /embedchain/embedchain/embedchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/embedchain.py -------------------------------------------------------------------------------- /embedchain/embedchain/embedder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embedchain/embedchain/embedder/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/embedder/base.py -------------------------------------------------------------------------------- /embedchain/embedchain/embedder/cohere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/embedder/cohere.py -------------------------------------------------------------------------------- /embedchain/embedchain/embedder/google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/embedder/google.py -------------------------------------------------------------------------------- /embedchain/embedchain/embedder/nvidia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/embedder/nvidia.py -------------------------------------------------------------------------------- /embedchain/embedchain/embedder/ollama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/embedder/ollama.py -------------------------------------------------------------------------------- /embedchain/embedchain/embedder/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/embedder/openai.py -------------------------------------------------------------------------------- /embedchain/embedchain/evaluation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embedchain/embedchain/evaluation/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/evaluation/base.py -------------------------------------------------------------------------------- /embedchain/embedchain/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/factory.py -------------------------------------------------------------------------------- /embedchain/embedchain/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embedchain/embedchain/llm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embedchain/embedchain/llm/anthropic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/llm/anthropic.py -------------------------------------------------------------------------------- /embedchain/embedchain/llm/aws_bedrock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/llm/aws_bedrock.py -------------------------------------------------------------------------------- /embedchain/embedchain/llm/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/llm/base.py -------------------------------------------------------------------------------- /embedchain/embedchain/llm/clarifai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/llm/clarifai.py -------------------------------------------------------------------------------- /embedchain/embedchain/llm/cohere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/llm/cohere.py -------------------------------------------------------------------------------- /embedchain/embedchain/llm/google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/llm/google.py -------------------------------------------------------------------------------- /embedchain/embedchain/llm/gpt4all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/llm/gpt4all.py -------------------------------------------------------------------------------- /embedchain/embedchain/llm/groq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/llm/groq.py -------------------------------------------------------------------------------- /embedchain/embedchain/llm/huggingface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/llm/huggingface.py -------------------------------------------------------------------------------- /embedchain/embedchain/llm/jina.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/llm/jina.py -------------------------------------------------------------------------------- /embedchain/embedchain/llm/llama2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/llm/llama2.py -------------------------------------------------------------------------------- /embedchain/embedchain/llm/mistralai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/llm/mistralai.py -------------------------------------------------------------------------------- /embedchain/embedchain/llm/nvidia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/llm/nvidia.py -------------------------------------------------------------------------------- /embedchain/embedchain/llm/ollama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/llm/ollama.py -------------------------------------------------------------------------------- /embedchain/embedchain/llm/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/llm/openai.py -------------------------------------------------------------------------------- /embedchain/embedchain/llm/together.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/llm/together.py -------------------------------------------------------------------------------- /embedchain/embedchain/llm/vertex_ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/llm/vertex_ai.py -------------------------------------------------------------------------------- /embedchain/embedchain/llm/vllm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/llm/vllm.py -------------------------------------------------------------------------------- /embedchain/embedchain/loaders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embedchain/embedchain/loaders/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/loaders/audio.py -------------------------------------------------------------------------------- /embedchain/embedchain/loaders/beehiiv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/loaders/beehiiv.py -------------------------------------------------------------------------------- /embedchain/embedchain/loaders/csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/loaders/csv.py -------------------------------------------------------------------------------- /embedchain/embedchain/loaders/discord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/loaders/discord.py -------------------------------------------------------------------------------- /embedchain/embedchain/loaders/dropbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/loaders/dropbox.py -------------------------------------------------------------------------------- /embedchain/embedchain/loaders/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/loaders/github.py -------------------------------------------------------------------------------- /embedchain/embedchain/loaders/gmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/loaders/gmail.py -------------------------------------------------------------------------------- /embedchain/embedchain/loaders/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/loaders/image.py -------------------------------------------------------------------------------- /embedchain/embedchain/loaders/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/loaders/json.py -------------------------------------------------------------------------------- /embedchain/embedchain/loaders/mdx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/loaders/mdx.py -------------------------------------------------------------------------------- /embedchain/embedchain/loaders/mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/loaders/mysql.py -------------------------------------------------------------------------------- /embedchain/embedchain/loaders/notion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/loaders/notion.py -------------------------------------------------------------------------------- /embedchain/embedchain/loaders/openapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/loaders/openapi.py -------------------------------------------------------------------------------- /embedchain/embedchain/loaders/sitemap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/loaders/sitemap.py -------------------------------------------------------------------------------- /embedchain/embedchain/loaders/slack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/loaders/slack.py -------------------------------------------------------------------------------- /embedchain/embedchain/loaders/xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/loaders/xml.py -------------------------------------------------------------------------------- /embedchain/embedchain/memory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embedchain/embedchain/memory/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/memory/base.py -------------------------------------------------------------------------------- /embedchain/embedchain/memory/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/memory/message.py -------------------------------------------------------------------------------- /embedchain/embedchain/memory/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/memory/utils.py -------------------------------------------------------------------------------- /embedchain/embedchain/migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/migrations/env.py -------------------------------------------------------------------------------- /embedchain/embedchain/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/models/__init__.py -------------------------------------------------------------------------------- /embedchain/embedchain/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/pipeline.py -------------------------------------------------------------------------------- /embedchain/embedchain/store/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embedchain/embedchain/telemetry/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embedchain/embedchain/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embedchain/embedchain/utils/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/utils/cli.py -------------------------------------------------------------------------------- /embedchain/embedchain/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/utils/misc.py -------------------------------------------------------------------------------- /embedchain/embedchain/vectordb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embedchain/embedchain/vectordb/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/vectordb/base.py -------------------------------------------------------------------------------- /embedchain/embedchain/vectordb/chroma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/vectordb/chroma.py -------------------------------------------------------------------------------- /embedchain/embedchain/vectordb/qdrant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/vectordb/qdrant.py -------------------------------------------------------------------------------- /embedchain/embedchain/vectordb/zilliz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/embedchain/vectordb/zilliz.py -------------------------------------------------------------------------------- /embedchain/examples/api_server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/examples/api_server/README.md -------------------------------------------------------------------------------- /embedchain/examples/api_server/variables.env: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY="" -------------------------------------------------------------------------------- /embedchain/examples/chainlit/.gitignore: -------------------------------------------------------------------------------- 1 | .chainlit 2 | -------------------------------------------------------------------------------- /embedchain/examples/chainlit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/examples/chainlit/README.md -------------------------------------------------------------------------------- /embedchain/examples/chainlit/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/examples/chainlit/app.py -------------------------------------------------------------------------------- /embedchain/examples/chainlit/chainlit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/examples/chainlit/chainlit.md -------------------------------------------------------------------------------- /embedchain/examples/chat-pdf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/examples/chat-pdf/README.md -------------------------------------------------------------------------------- /embedchain/examples/chat-pdf/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/examples/chat-pdf/app.py -------------------------------------------------------------------------------- /embedchain/examples/chat-pdf/embedchain.json: -------------------------------------------------------------------------------- 1 | { 2 | "provider": "streamlit.io" 3 | } -------------------------------------------------------------------------------- /embedchain/examples/discord_bot/requirements.txt: -------------------------------------------------------------------------------- 1 | discord==2.3.1 2 | embedchain==0.0.58 3 | python-dotenv==1.0.0 -------------------------------------------------------------------------------- /embedchain/examples/discord_bot/variables.env: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY="" 2 | DISCORD_BOT_TOKEN="" -------------------------------------------------------------------------------- /embedchain/examples/full_stack/.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /embedchain/examples/full_stack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/examples/full_stack/README.md -------------------------------------------------------------------------------- /embedchain/examples/mistral-streamlit/requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit==1.29.0 2 | embedchain 3 | -------------------------------------------------------------------------------- /embedchain/examples/nextjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/examples/nextjs/README.md -------------------------------------------------------------------------------- /embedchain/examples/nextjs/ec_app/.dockerignore: -------------------------------------------------------------------------------- 1 | db/ -------------------------------------------------------------------------------- /embedchain/examples/nextjs/ec_app/.env.example: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY=sk-xxx -------------------------------------------------------------------------------- /embedchain/examples/nextjs/ec_app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/examples/nextjs/ec_app/app.py -------------------------------------------------------------------------------- /embedchain/examples/nextjs/ec_app/embedchain.json: -------------------------------------------------------------------------------- 1 | { 2 | "provider": "fly.io" 3 | } -------------------------------------------------------------------------------- /embedchain/examples/nextjs/ec_app/requirements.txt: -------------------------------------------------------------------------------- 1 | fastapi==0.104.0 2 | uvicorn==0.23.2 3 | embedchain 4 | beautifulsoup4 -------------------------------------------------------------------------------- /embedchain/examples/nextjs/nextjs_discord/.dockerignore: -------------------------------------------------------------------------------- 1 | db/ -------------------------------------------------------------------------------- /embedchain/examples/nextjs/nextjs_discord/embedchain.json: -------------------------------------------------------------------------------- 1 | { 2 | "provider": "fly.io" 3 | } -------------------------------------------------------------------------------- /embedchain/examples/nextjs/nextjs_discord/requirements.txt: -------------------------------------------------------------------------------- 1 | fastapi==0.104.0 2 | uvicorn==0.23.2 3 | embedchain 4 | beautifulsoup4 -------------------------------------------------------------------------------- /embedchain/examples/nextjs/nextjs_slack/.dockerignore: -------------------------------------------------------------------------------- 1 | db/ -------------------------------------------------------------------------------- /embedchain/examples/nextjs/nextjs_slack/embedchain.json: -------------------------------------------------------------------------------- 1 | { 2 | "provider": "fly.io" 3 | } -------------------------------------------------------------------------------- /embedchain/examples/private-ai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/examples/private-ai/README.md -------------------------------------------------------------------------------- /embedchain/examples/private-ai/requirements.txt: -------------------------------------------------------------------------------- 1 | "embedchain[opensource]" -------------------------------------------------------------------------------- /embedchain/examples/rest-api/.dockerignore: -------------------------------------------------------------------------------- 1 | .env 2 | app.db 3 | configs/**.yaml 4 | db -------------------------------------------------------------------------------- /embedchain/examples/rest-api/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | app.db 3 | configs/**.yaml 4 | db 5 | -------------------------------------------------------------------------------- /embedchain/examples/rest-api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/examples/rest-api/Dockerfile -------------------------------------------------------------------------------- /embedchain/examples/rest-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/examples/rest-api/README.md -------------------------------------------------------------------------------- /embedchain/examples/rest-api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embedchain/examples/rest-api/configs/README.md: -------------------------------------------------------------------------------- 1 | ### Config directory 2 | 3 | Here, all the YAML files will get stored. 4 | -------------------------------------------------------------------------------- /embedchain/examples/rest-api/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/examples/rest-api/database.py -------------------------------------------------------------------------------- /embedchain/examples/rest-api/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/examples/rest-api/main.py -------------------------------------------------------------------------------- /embedchain/examples/rest-api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/examples/rest-api/models.py -------------------------------------------------------------------------------- /embedchain/examples/rest-api/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/examples/rest-api/services.py -------------------------------------------------------------------------------- /embedchain/examples/rest-api/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/examples/rest-api/utils.py -------------------------------------------------------------------------------- /embedchain/examples/sadhguru-ai/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/examples/sadhguru-ai/app.py -------------------------------------------------------------------------------- /embedchain/examples/sadhguru-ai/requirements.txt: -------------------------------------------------------------------------------- 1 | embedchain 2 | streamlit 3 | pysqlite3-binary -------------------------------------------------------------------------------- /embedchain/examples/slack_bot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/examples/slack_bot/Dockerfile -------------------------------------------------------------------------------- /embedchain/examples/slack_bot/requirements.txt: -------------------------------------------------------------------------------- 1 | slack-sdk==3.21.3 2 | flask==2.3.3 3 | fastapi-poe==0.0.16 -------------------------------------------------------------------------------- /embedchain/examples/telegram_bot/.env.example: -------------------------------------------------------------------------------- 1 | TELEGRAM_BOT_TOKEN= 2 | OPENAI_API_KEY= 3 | -------------------------------------------------------------------------------- /embedchain/examples/unacademy-ai/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/examples/unacademy-ai/app.py -------------------------------------------------------------------------------- /embedchain/examples/unacademy-ai/requirements.txt: -------------------------------------------------------------------------------- 1 | embedchain 2 | streamlit 3 | pysqlite3-binary -------------------------------------------------------------------------------- /embedchain/examples/whatsapp_bot/.env.example: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY= 2 | -------------------------------------------------------------------------------- /embedchain/examples/whatsapp_bot/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==2.3.2 2 | twilio==8.5.0 3 | embedchain -------------------------------------------------------------------------------- /embedchain/examples/whatsapp_bot/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/examples/whatsapp_bot/run.py -------------------------------------------------------------------------------- /embedchain/notebooks/anthropic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/notebooks/anthropic.ipynb -------------------------------------------------------------------------------- /embedchain/notebooks/aws-bedrock.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/notebooks/aws-bedrock.ipynb -------------------------------------------------------------------------------- /embedchain/notebooks/azure-openai.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/notebooks/azure-openai.ipynb -------------------------------------------------------------------------------- /embedchain/notebooks/azure_openai.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/notebooks/azure_openai.yaml -------------------------------------------------------------------------------- /embedchain/notebooks/chromadb.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/notebooks/chromadb.ipynb -------------------------------------------------------------------------------- /embedchain/notebooks/clarifai.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/notebooks/clarifai.ipynb -------------------------------------------------------------------------------- /embedchain/notebooks/cohere.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/notebooks/cohere.ipynb -------------------------------------------------------------------------------- /embedchain/notebooks/elasticsearch.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/notebooks/elasticsearch.ipynb -------------------------------------------------------------------------------- /embedchain/notebooks/gpt4all.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/notebooks/gpt4all.ipynb -------------------------------------------------------------------------------- /embedchain/notebooks/jina.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/notebooks/jina.ipynb -------------------------------------------------------------------------------- /embedchain/notebooks/lancedb.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/notebooks/lancedb.ipynb -------------------------------------------------------------------------------- /embedchain/notebooks/llama2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/notebooks/llama2.ipynb -------------------------------------------------------------------------------- /embedchain/notebooks/ollama.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/notebooks/ollama.ipynb -------------------------------------------------------------------------------- /embedchain/notebooks/openai.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/notebooks/openai.ipynb -------------------------------------------------------------------------------- /embedchain/notebooks/openai_azure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/notebooks/openai_azure.yaml -------------------------------------------------------------------------------- /embedchain/notebooks/opensearch.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/notebooks/opensearch.ipynb -------------------------------------------------------------------------------- /embedchain/notebooks/pinecone.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/notebooks/pinecone.ipynb -------------------------------------------------------------------------------- /embedchain/notebooks/together.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/notebooks/together.ipynb -------------------------------------------------------------------------------- /embedchain/notebooks/vertex_ai.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/notebooks/vertex_ai.ipynb -------------------------------------------------------------------------------- /embedchain/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/poetry.lock -------------------------------------------------------------------------------- /embedchain/poetry.toml: -------------------------------------------------------------------------------- 1 | [virtualenvs] 2 | in-project = true 3 | path = "." -------------------------------------------------------------------------------- /embedchain/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/pyproject.toml -------------------------------------------------------------------------------- /embedchain/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embedchain/tests/chunkers/test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/tests/chunkers/test_text.py -------------------------------------------------------------------------------- /embedchain/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/tests/conftest.py -------------------------------------------------------------------------------- /embedchain/tests/embedchain/test_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/tests/embedchain/test_add.py -------------------------------------------------------------------------------- /embedchain/tests/llm/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/tests/llm/conftest.py -------------------------------------------------------------------------------- /embedchain/tests/llm/test_anthrophic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/tests/llm/test_anthrophic.py -------------------------------------------------------------------------------- /embedchain/tests/llm/test_aws_bedrock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/tests/llm/test_aws_bedrock.py -------------------------------------------------------------------------------- /embedchain/tests/llm/test_base_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/tests/llm/test_base_llm.py -------------------------------------------------------------------------------- /embedchain/tests/llm/test_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/tests/llm/test_chat.py -------------------------------------------------------------------------------- /embedchain/tests/llm/test_clarifai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/tests/llm/test_clarifai.py -------------------------------------------------------------------------------- /embedchain/tests/llm/test_cohere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/tests/llm/test_cohere.py -------------------------------------------------------------------------------- /embedchain/tests/llm/test_google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/tests/llm/test_google.py -------------------------------------------------------------------------------- /embedchain/tests/llm/test_gpt4all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/tests/llm/test_gpt4all.py -------------------------------------------------------------------------------- /embedchain/tests/llm/test_huggingface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/tests/llm/test_huggingface.py -------------------------------------------------------------------------------- /embedchain/tests/llm/test_jina.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/tests/llm/test_jina.py -------------------------------------------------------------------------------- /embedchain/tests/llm/test_llama2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/tests/llm/test_llama2.py -------------------------------------------------------------------------------- /embedchain/tests/llm/test_mistralai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/tests/llm/test_mistralai.py -------------------------------------------------------------------------------- /embedchain/tests/llm/test_ollama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/tests/llm/test_ollama.py -------------------------------------------------------------------------------- /embedchain/tests/llm/test_openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/tests/llm/test_openai.py -------------------------------------------------------------------------------- /embedchain/tests/llm/test_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/tests/llm/test_query.py -------------------------------------------------------------------------------- /embedchain/tests/llm/test_together.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/tests/llm/test_together.py -------------------------------------------------------------------------------- /embedchain/tests/llm/test_vertex_ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/tests/llm/test_vertex_ai.py -------------------------------------------------------------------------------- /embedchain/tests/loaders/test_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/tests/loaders/test_audio.py -------------------------------------------------------------------------------- /embedchain/tests/loaders/test_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/tests/loaders/test_csv.py -------------------------------------------------------------------------------- /embedchain/tests/loaders/test_dropbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/tests/loaders/test_dropbox.py -------------------------------------------------------------------------------- /embedchain/tests/loaders/test_github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/tests/loaders/test_github.py -------------------------------------------------------------------------------- /embedchain/tests/loaders/test_gmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/tests/loaders/test_gmail.py -------------------------------------------------------------------------------- /embedchain/tests/loaders/test_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/tests/loaders/test_json.py -------------------------------------------------------------------------------- /embedchain/tests/loaders/test_mdx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/tests/loaders/test_mdx.py -------------------------------------------------------------------------------- /embedchain/tests/loaders/test_mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/tests/loaders/test_mysql.py -------------------------------------------------------------------------------- /embedchain/tests/loaders/test_notion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/tests/loaders/test_notion.py -------------------------------------------------------------------------------- /embedchain/tests/loaders/test_slack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/tests/loaders/test_slack.py -------------------------------------------------------------------------------- /embedchain/tests/loaders/test_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/tests/loaders/test_xml.py -------------------------------------------------------------------------------- /embedchain/tests/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/tests/test_app.py -------------------------------------------------------------------------------- /embedchain/tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/tests/test_client.py -------------------------------------------------------------------------------- /embedchain/tests/test_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/tests/test_factory.py -------------------------------------------------------------------------------- /embedchain/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/embedchain/tests/test_utils.py -------------------------------------------------------------------------------- /evaluation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/evaluation/Makefile -------------------------------------------------------------------------------- /evaluation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/evaluation/README.md -------------------------------------------------------------------------------- /evaluation/evals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/evaluation/evals.py -------------------------------------------------------------------------------- /evaluation/generate_scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/evaluation/generate_scores.py -------------------------------------------------------------------------------- /evaluation/metrics/llm_judge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/evaluation/metrics/llm_judge.py -------------------------------------------------------------------------------- /evaluation/metrics/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/evaluation/metrics/utils.py -------------------------------------------------------------------------------- /evaluation/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/evaluation/prompts.py -------------------------------------------------------------------------------- /evaluation/run_experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/evaluation/run_experiments.py -------------------------------------------------------------------------------- /evaluation/src/langmem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/evaluation/src/langmem.py -------------------------------------------------------------------------------- /evaluation/src/memzero/add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/evaluation/src/memzero/add.py -------------------------------------------------------------------------------- /evaluation/src/memzero/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/evaluation/src/memzero/search.py -------------------------------------------------------------------------------- /evaluation/src/openai/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/evaluation/src/openai/predict.py -------------------------------------------------------------------------------- /evaluation/src/rag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/evaluation/src/rag.py -------------------------------------------------------------------------------- /evaluation/src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/evaluation/src/utils.py -------------------------------------------------------------------------------- /evaluation/src/zep/add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/evaluation/src/zep/add.py -------------------------------------------------------------------------------- /evaluation/src/zep/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/evaluation/src/zep/search.py -------------------------------------------------------------------------------- /examples/mem0-demo/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/mem0-demo/.env.example -------------------------------------------------------------------------------- /examples/mem0-demo/.gitignore: -------------------------------------------------------------------------------- 1 | !lib/ 2 | .next/ 3 | node_modules/ 4 | .env -------------------------------------------------------------------------------- /examples/mem0-demo/app/assistant.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/mem0-demo/app/assistant.tsx -------------------------------------------------------------------------------- /examples/mem0-demo/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/mem0-demo/app/favicon.ico -------------------------------------------------------------------------------- /examples/mem0-demo/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/mem0-demo/app/globals.css -------------------------------------------------------------------------------- /examples/mem0-demo/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/mem0-demo/app/layout.tsx -------------------------------------------------------------------------------- /examples/mem0-demo/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/mem0-demo/app/page.tsx -------------------------------------------------------------------------------- /examples/mem0-demo/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/mem0-demo/components.json -------------------------------------------------------------------------------- /examples/mem0-demo/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/mem0-demo/eslint.config.mjs -------------------------------------------------------------------------------- /examples/mem0-demo/images/dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/mem0-demo/images/dark.svg -------------------------------------------------------------------------------- /examples/mem0-demo/images/light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/mem0-demo/images/light.svg -------------------------------------------------------------------------------- /examples/mem0-demo/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/mem0-demo/lib/utils.ts -------------------------------------------------------------------------------- /examples/mem0-demo/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/mem0-demo/next-env.d.ts -------------------------------------------------------------------------------- /examples/mem0-demo/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/mem0-demo/next.config.ts -------------------------------------------------------------------------------- /examples/mem0-demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/mem0-demo/package.json -------------------------------------------------------------------------------- /examples/mem0-demo/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/mem0-demo/postcss.config.mjs -------------------------------------------------------------------------------- /examples/mem0-demo/public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/mem0-demo/public/file.svg -------------------------------------------------------------------------------- /examples/mem0-demo/public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/mem0-demo/public/globe.svg -------------------------------------------------------------------------------- /examples/mem0-demo/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/mem0-demo/public/next.svg -------------------------------------------------------------------------------- /examples/mem0-demo/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/mem0-demo/public/vercel.svg -------------------------------------------------------------------------------- /examples/mem0-demo/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/mem0-demo/public/window.svg -------------------------------------------------------------------------------- /examples/mem0-demo/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/mem0-demo/tailwind.config.ts -------------------------------------------------------------------------------- /examples/mem0-demo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/mem0-demo/tsconfig.json -------------------------------------------------------------------------------- /examples/misc/fitness_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/misc/fitness_checker.py -------------------------------------------------------------------------------- /examples/misc/multillm_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/misc/multillm_memory.py -------------------------------------------------------------------------------- /examples/misc/personalized_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/misc/personalized_search.py -------------------------------------------------------------------------------- /examples/misc/study_buddy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/misc/study_buddy.py -------------------------------------------------------------------------------- /examples/misc/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/misc/test.py -------------------------------------------------------------------------------- /examples/misc/vllm_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/misc/vllm_example.py -------------------------------------------------------------------------------- /examples/multimodal-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/multimodal-demo/.gitignore -------------------------------------------------------------------------------- /examples/multimodal-demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/multimodal-demo/index.html -------------------------------------------------------------------------------- /examples/multimodal-demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/multimodal-demo/package.json -------------------------------------------------------------------------------- /examples/multimodal-demo/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/multimodal-demo/src/App.tsx -------------------------------------------------------------------------------- /examples/multimodal-demo/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/multimodal-demo/src/index.css -------------------------------------------------------------------------------- /examples/multimodal-demo/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/multimodal-demo/src/main.tsx -------------------------------------------------------------------------------- /examples/multimodal-demo/src/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/multimodal-demo/src/page.tsx -------------------------------------------------------------------------------- /examples/multimodal-demo/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/multimodal-demo/src/types.ts -------------------------------------------------------------------------------- /examples/multimodal-demo/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/multimodal-demo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/multimodal-demo/tsconfig.json -------------------------------------------------------------------------------- /examples/multimodal-demo/useChat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/multimodal-demo/useChat.ts -------------------------------------------------------------------------------- /examples/openai-inbuilt-tools/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/openai-inbuilt-tools/index.js -------------------------------------------------------------------------------- /examples/vercel-ai-sdk-chat-app/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/yt-assistant-chrome/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env* 3 | dist 4 | package-lock.json -------------------------------------------------------------------------------- /examples/yt-assistant-chrome/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/examples/yt-assistant-chrome/README.md -------------------------------------------------------------------------------- /mem0-ts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/README.md -------------------------------------------------------------------------------- /mem0-ts/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/jest.config.js -------------------------------------------------------------------------------- /mem0-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/package.json -------------------------------------------------------------------------------- /mem0-ts/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/pnpm-lock.yaml -------------------------------------------------------------------------------- /mem0-ts/src/client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/client/index.ts -------------------------------------------------------------------------------- /mem0-ts/src/client/mem0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/client/mem0.ts -------------------------------------------------------------------------------- /mem0-ts/src/client/mem0.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/client/mem0.types.ts -------------------------------------------------------------------------------- /mem0-ts/src/client/telemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/client/telemetry.ts -------------------------------------------------------------------------------- /mem0-ts/src/client/telemetry.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/client/telemetry.types.ts -------------------------------------------------------------------------------- /mem0-ts/src/community/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/community/.prettierignore -------------------------------------------------------------------------------- /mem0-ts/src/community/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/community/package.json -------------------------------------------------------------------------------- /mem0-ts/src/community/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./integrations/langchain"; 2 | -------------------------------------------------------------------------------- /mem0-ts/src/community/src/integrations/langchain/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./mem0"; 2 | -------------------------------------------------------------------------------- /mem0-ts/src/community/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/community/tsconfig.json -------------------------------------------------------------------------------- /mem0-ts/src/oss/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/oss/.env.example -------------------------------------------------------------------------------- /mem0-ts/src/oss/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/oss/.gitignore -------------------------------------------------------------------------------- /mem0-ts/src/oss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/oss/README.md -------------------------------------------------------------------------------- /mem0-ts/src/oss/examples/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/oss/examples/basic.ts -------------------------------------------------------------------------------- /mem0-ts/src/oss/examples/local-llms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/oss/examples/local-llms.ts -------------------------------------------------------------------------------- /mem0-ts/src/oss/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/oss/package.json -------------------------------------------------------------------------------- /mem0-ts/src/oss/src/config/defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/oss/src/config/defaults.ts -------------------------------------------------------------------------------- /mem0-ts/src/oss/src/config/manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/oss/src/config/manager.ts -------------------------------------------------------------------------------- /mem0-ts/src/oss/src/embeddings/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/oss/src/embeddings/base.ts -------------------------------------------------------------------------------- /mem0-ts/src/oss/src/graphs/configs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/oss/src/graphs/configs.ts -------------------------------------------------------------------------------- /mem0-ts/src/oss/src/graphs/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/oss/src/graphs/tools.ts -------------------------------------------------------------------------------- /mem0-ts/src/oss/src/graphs/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/oss/src/graphs/utils.ts -------------------------------------------------------------------------------- /mem0-ts/src/oss/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/oss/src/index.ts -------------------------------------------------------------------------------- /mem0-ts/src/oss/src/llms/anthropic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/oss/src/llms/anthropic.ts -------------------------------------------------------------------------------- /mem0-ts/src/oss/src/llms/azure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/oss/src/llms/azure.ts -------------------------------------------------------------------------------- /mem0-ts/src/oss/src/llms/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/oss/src/llms/base.ts -------------------------------------------------------------------------------- /mem0-ts/src/oss/src/llms/google.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/oss/src/llms/google.ts -------------------------------------------------------------------------------- /mem0-ts/src/oss/src/llms/groq.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/oss/src/llms/groq.ts -------------------------------------------------------------------------------- /mem0-ts/src/oss/src/llms/langchain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/oss/src/llms/langchain.ts -------------------------------------------------------------------------------- /mem0-ts/src/oss/src/llms/mistral.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/oss/src/llms/mistral.ts -------------------------------------------------------------------------------- /mem0-ts/src/oss/src/llms/ollama.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/oss/src/llms/ollama.ts -------------------------------------------------------------------------------- /mem0-ts/src/oss/src/llms/openai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/oss/src/llms/openai.ts -------------------------------------------------------------------------------- /mem0-ts/src/oss/src/memory/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/oss/src/memory/index.ts -------------------------------------------------------------------------------- /mem0-ts/src/oss/src/prompts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/oss/src/prompts/index.ts -------------------------------------------------------------------------------- /mem0-ts/src/oss/src/storage/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/oss/src/storage/base.ts -------------------------------------------------------------------------------- /mem0-ts/src/oss/src/storage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/oss/src/storage/index.ts -------------------------------------------------------------------------------- /mem0-ts/src/oss/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/oss/src/types/index.ts -------------------------------------------------------------------------------- /mem0-ts/src/oss/src/utils/bm25.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/oss/src/utils/bm25.ts -------------------------------------------------------------------------------- /mem0-ts/src/oss/src/utils/factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/oss/src/utils/factory.ts -------------------------------------------------------------------------------- /mem0-ts/src/oss/src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/oss/src/utils/logger.ts -------------------------------------------------------------------------------- /mem0-ts/src/oss/src/utils/memory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/oss/src/utils/memory.ts -------------------------------------------------------------------------------- /mem0-ts/src/oss/src/utils/telemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/oss/src/utils/telemetry.ts -------------------------------------------------------------------------------- /mem0-ts/src/oss/tests/factory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/oss/tests/factory.test.ts -------------------------------------------------------------------------------- /mem0-ts/src/oss/tests/memory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/oss/tests/memory.test.ts -------------------------------------------------------------------------------- /mem0-ts/src/oss/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/src/oss/tsconfig.json -------------------------------------------------------------------------------- /mem0-ts/tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mem0-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/tsconfig.json -------------------------------------------------------------------------------- /mem0-ts/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/tsconfig.test.json -------------------------------------------------------------------------------- /mem0-ts/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0-ts/tsup.config.ts -------------------------------------------------------------------------------- /mem0/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/__init__.py -------------------------------------------------------------------------------- /mem0/client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mem0/client/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/client/main.py -------------------------------------------------------------------------------- /mem0/client/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/client/project.py -------------------------------------------------------------------------------- /mem0/client/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/client/utils.py -------------------------------------------------------------------------------- /mem0/configs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mem0/configs/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/configs/base.py -------------------------------------------------------------------------------- /mem0/configs/embeddings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mem0/configs/embeddings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/configs/embeddings/base.py -------------------------------------------------------------------------------- /mem0/configs/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/configs/enums.py -------------------------------------------------------------------------------- /mem0/configs/llms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mem0/configs/llms/anthropic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/configs/llms/anthropic.py -------------------------------------------------------------------------------- /mem0/configs/llms/aws_bedrock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/configs/llms/aws_bedrock.py -------------------------------------------------------------------------------- /mem0/configs/llms/azure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/configs/llms/azure.py -------------------------------------------------------------------------------- /mem0/configs/llms/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/configs/llms/base.py -------------------------------------------------------------------------------- /mem0/configs/llms/deepseek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/configs/llms/deepseek.py -------------------------------------------------------------------------------- /mem0/configs/llms/lmstudio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/configs/llms/lmstudio.py -------------------------------------------------------------------------------- /mem0/configs/llms/ollama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/configs/llms/ollama.py -------------------------------------------------------------------------------- /mem0/configs/llms/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/configs/llms/openai.py -------------------------------------------------------------------------------- /mem0/configs/llms/vllm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/configs/llms/vllm.py -------------------------------------------------------------------------------- /mem0/configs/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/configs/prompts.py -------------------------------------------------------------------------------- /mem0/configs/rerankers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mem0/configs/rerankers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/configs/rerankers/base.py -------------------------------------------------------------------------------- /mem0/configs/rerankers/cohere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/configs/rerankers/cohere.py -------------------------------------------------------------------------------- /mem0/configs/rerankers/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/configs/rerankers/config.py -------------------------------------------------------------------------------- /mem0/configs/rerankers/huggingface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/configs/rerankers/huggingface.py -------------------------------------------------------------------------------- /mem0/configs/rerankers/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/configs/rerankers/llm.py -------------------------------------------------------------------------------- /mem0/configs/rerankers/zero_entropy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/configs/rerankers/zero_entropy.py -------------------------------------------------------------------------------- /mem0/configs/vector_stores/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mem0/configs/vector_stores/baidu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/configs/vector_stores/baidu.py -------------------------------------------------------------------------------- /mem0/configs/vector_stores/chroma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/configs/vector_stores/chroma.py -------------------------------------------------------------------------------- /mem0/configs/vector_stores/faiss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/configs/vector_stores/faiss.py -------------------------------------------------------------------------------- /mem0/configs/vector_stores/milvus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/configs/vector_stores/milvus.py -------------------------------------------------------------------------------- /mem0/configs/vector_stores/mongodb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/configs/vector_stores/mongodb.py -------------------------------------------------------------------------------- /mem0/configs/vector_stores/neptune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/configs/vector_stores/neptune.py -------------------------------------------------------------------------------- /mem0/configs/vector_stores/pgvector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/configs/vector_stores/pgvector.py -------------------------------------------------------------------------------- /mem0/configs/vector_stores/pinecone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/configs/vector_stores/pinecone.py -------------------------------------------------------------------------------- /mem0/configs/vector_stores/qdrant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/configs/vector_stores/qdrant.py -------------------------------------------------------------------------------- /mem0/configs/vector_stores/redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/configs/vector_stores/redis.py -------------------------------------------------------------------------------- /mem0/configs/vector_stores/supabase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/configs/vector_stores/supabase.py -------------------------------------------------------------------------------- /mem0/configs/vector_stores/valkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/configs/vector_stores/valkey.py -------------------------------------------------------------------------------- /mem0/configs/vector_stores/weaviate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/configs/vector_stores/weaviate.py -------------------------------------------------------------------------------- /mem0/embeddings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mem0/embeddings/aws_bedrock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/embeddings/aws_bedrock.py -------------------------------------------------------------------------------- /mem0/embeddings/azure_openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/embeddings/azure_openai.py -------------------------------------------------------------------------------- /mem0/embeddings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/embeddings/base.py -------------------------------------------------------------------------------- /mem0/embeddings/configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/embeddings/configs.py -------------------------------------------------------------------------------- /mem0/embeddings/fastembed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/embeddings/fastembed.py -------------------------------------------------------------------------------- /mem0/embeddings/gemini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/embeddings/gemini.py -------------------------------------------------------------------------------- /mem0/embeddings/huggingface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/embeddings/huggingface.py -------------------------------------------------------------------------------- /mem0/embeddings/langchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/embeddings/langchain.py -------------------------------------------------------------------------------- /mem0/embeddings/lmstudio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/embeddings/lmstudio.py -------------------------------------------------------------------------------- /mem0/embeddings/mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/embeddings/mock.py -------------------------------------------------------------------------------- /mem0/embeddings/ollama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/embeddings/ollama.py -------------------------------------------------------------------------------- /mem0/embeddings/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/embeddings/openai.py -------------------------------------------------------------------------------- /mem0/embeddings/together.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/embeddings/together.py -------------------------------------------------------------------------------- /mem0/embeddings/vertexai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/embeddings/vertexai.py -------------------------------------------------------------------------------- /mem0/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/exceptions.py -------------------------------------------------------------------------------- /mem0/graphs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mem0/graphs/configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/graphs/configs.py -------------------------------------------------------------------------------- /mem0/graphs/neptune/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mem0/graphs/neptune/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/graphs/neptune/base.py -------------------------------------------------------------------------------- /mem0/graphs/neptune/neptunedb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/graphs/neptune/neptunedb.py -------------------------------------------------------------------------------- /mem0/graphs/neptune/neptunegraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/graphs/neptune/neptunegraph.py -------------------------------------------------------------------------------- /mem0/graphs/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/graphs/tools.py -------------------------------------------------------------------------------- /mem0/graphs/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/graphs/utils.py -------------------------------------------------------------------------------- /mem0/llms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mem0/llms/anthropic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/llms/anthropic.py -------------------------------------------------------------------------------- /mem0/llms/aws_bedrock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/llms/aws_bedrock.py -------------------------------------------------------------------------------- /mem0/llms/azure_openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/llms/azure_openai.py -------------------------------------------------------------------------------- /mem0/llms/azure_openai_structured.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/llms/azure_openai_structured.py -------------------------------------------------------------------------------- /mem0/llms/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/llms/base.py -------------------------------------------------------------------------------- /mem0/llms/configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/llms/configs.py -------------------------------------------------------------------------------- /mem0/llms/deepseek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/llms/deepseek.py -------------------------------------------------------------------------------- /mem0/llms/gemini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/llms/gemini.py -------------------------------------------------------------------------------- /mem0/llms/groq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/llms/groq.py -------------------------------------------------------------------------------- /mem0/llms/langchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/llms/langchain.py -------------------------------------------------------------------------------- /mem0/llms/litellm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/llms/litellm.py -------------------------------------------------------------------------------- /mem0/llms/lmstudio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/llms/lmstudio.py -------------------------------------------------------------------------------- /mem0/llms/ollama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/llms/ollama.py -------------------------------------------------------------------------------- /mem0/llms/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/llms/openai.py -------------------------------------------------------------------------------- /mem0/llms/openai_structured.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/llms/openai_structured.py -------------------------------------------------------------------------------- /mem0/llms/sarvam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/llms/sarvam.py -------------------------------------------------------------------------------- /mem0/llms/together.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/llms/together.py -------------------------------------------------------------------------------- /mem0/llms/vllm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/llms/vllm.py -------------------------------------------------------------------------------- /mem0/llms/xai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/llms/xai.py -------------------------------------------------------------------------------- /mem0/memory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mem0/memory/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/memory/base.py -------------------------------------------------------------------------------- /mem0/memory/graph_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/memory/graph_memory.py -------------------------------------------------------------------------------- /mem0/memory/kuzu_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/memory/kuzu_memory.py -------------------------------------------------------------------------------- /mem0/memory/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/memory/main.py -------------------------------------------------------------------------------- /mem0/memory/memgraph_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/memory/memgraph_memory.py -------------------------------------------------------------------------------- /mem0/memory/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/memory/setup.py -------------------------------------------------------------------------------- /mem0/memory/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/memory/storage.py -------------------------------------------------------------------------------- /mem0/memory/telemetry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/memory/telemetry.py -------------------------------------------------------------------------------- /mem0/memory/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/memory/utils.py -------------------------------------------------------------------------------- /mem0/proxy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mem0/proxy/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/proxy/main.py -------------------------------------------------------------------------------- /mem0/reranker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/reranker/__init__.py -------------------------------------------------------------------------------- /mem0/reranker/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/reranker/base.py -------------------------------------------------------------------------------- /mem0/reranker/cohere_reranker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/reranker/cohere_reranker.py -------------------------------------------------------------------------------- /mem0/reranker/huggingface_reranker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/reranker/huggingface_reranker.py -------------------------------------------------------------------------------- /mem0/reranker/llm_reranker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/reranker/llm_reranker.py -------------------------------------------------------------------------------- /mem0/reranker/zero_entropy_reranker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/reranker/zero_entropy_reranker.py -------------------------------------------------------------------------------- /mem0/utils/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/utils/factory.py -------------------------------------------------------------------------------- /mem0/utils/gcp_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/utils/gcp_auth.py -------------------------------------------------------------------------------- /mem0/vector_stores/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mem0/vector_stores/azure_ai_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/vector_stores/azure_ai_search.py -------------------------------------------------------------------------------- /mem0/vector_stores/azure_mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/vector_stores/azure_mysql.py -------------------------------------------------------------------------------- /mem0/vector_stores/baidu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/vector_stores/baidu.py -------------------------------------------------------------------------------- /mem0/vector_stores/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/vector_stores/base.py -------------------------------------------------------------------------------- /mem0/vector_stores/cassandra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/vector_stores/cassandra.py -------------------------------------------------------------------------------- /mem0/vector_stores/chroma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/vector_stores/chroma.py -------------------------------------------------------------------------------- /mem0/vector_stores/configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/vector_stores/configs.py -------------------------------------------------------------------------------- /mem0/vector_stores/databricks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/vector_stores/databricks.py -------------------------------------------------------------------------------- /mem0/vector_stores/elasticsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/vector_stores/elasticsearch.py -------------------------------------------------------------------------------- /mem0/vector_stores/faiss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/vector_stores/faiss.py -------------------------------------------------------------------------------- /mem0/vector_stores/langchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/vector_stores/langchain.py -------------------------------------------------------------------------------- /mem0/vector_stores/milvus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/vector_stores/milvus.py -------------------------------------------------------------------------------- /mem0/vector_stores/mongodb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/vector_stores/mongodb.py -------------------------------------------------------------------------------- /mem0/vector_stores/opensearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/vector_stores/opensearch.py -------------------------------------------------------------------------------- /mem0/vector_stores/pgvector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/vector_stores/pgvector.py -------------------------------------------------------------------------------- /mem0/vector_stores/pinecone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/vector_stores/pinecone.py -------------------------------------------------------------------------------- /mem0/vector_stores/qdrant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/vector_stores/qdrant.py -------------------------------------------------------------------------------- /mem0/vector_stores/redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/vector_stores/redis.py -------------------------------------------------------------------------------- /mem0/vector_stores/s3_vectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/vector_stores/s3_vectors.py -------------------------------------------------------------------------------- /mem0/vector_stores/supabase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/vector_stores/supabase.py -------------------------------------------------------------------------------- /mem0/vector_stores/upstash_vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/vector_stores/upstash_vector.py -------------------------------------------------------------------------------- /mem0/vector_stores/valkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/vector_stores/valkey.py -------------------------------------------------------------------------------- /mem0/vector_stores/weaviate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/mem0/vector_stores/weaviate.py -------------------------------------------------------------------------------- /openmemory/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/.gitignore -------------------------------------------------------------------------------- /openmemory/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/CONTRIBUTING.md -------------------------------------------------------------------------------- /openmemory/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/Makefile -------------------------------------------------------------------------------- /openmemory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/README.md -------------------------------------------------------------------------------- /openmemory/api/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/api/.dockerignore -------------------------------------------------------------------------------- /openmemory/api/.env.example: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY=sk-xxx 2 | USER=user -------------------------------------------------------------------------------- /openmemory/api/.python-version: -------------------------------------------------------------------------------- 1 | 3.12 -------------------------------------------------------------------------------- /openmemory/api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/api/Dockerfile -------------------------------------------------------------------------------- /openmemory/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/api/README.md -------------------------------------------------------------------------------- /openmemory/api/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/api/alembic.ini -------------------------------------------------------------------------------- /openmemory/api/alembic/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /openmemory/api/alembic/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/api/alembic/env.py -------------------------------------------------------------------------------- /openmemory/api/alembic/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/api/alembic/script.py.mako -------------------------------------------------------------------------------- /openmemory/api/app/__init__.py: -------------------------------------------------------------------------------- 1 | # This file makes the app directory a Python package -------------------------------------------------------------------------------- /openmemory/api/app/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/api/app/config.py -------------------------------------------------------------------------------- /openmemory/api/app/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/api/app/database.py -------------------------------------------------------------------------------- /openmemory/api/app/mcp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/api/app/mcp_server.py -------------------------------------------------------------------------------- /openmemory/api/app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/api/app/models.py -------------------------------------------------------------------------------- /openmemory/api/app/routers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/api/app/routers/__init__.py -------------------------------------------------------------------------------- /openmemory/api/app/routers/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/api/app/routers/apps.py -------------------------------------------------------------------------------- /openmemory/api/app/routers/backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/api/app/routers/backup.py -------------------------------------------------------------------------------- /openmemory/api/app/routers/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/api/app/routers/config.py -------------------------------------------------------------------------------- /openmemory/api/app/routers/memories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/api/app/routers/memories.py -------------------------------------------------------------------------------- /openmemory/api/app/routers/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/api/app/routers/stats.py -------------------------------------------------------------------------------- /openmemory/api/app/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/api/app/schemas.py -------------------------------------------------------------------------------- /openmemory/api/app/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openmemory/api/app/utils/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/api/app/utils/db.py -------------------------------------------------------------------------------- /openmemory/api/app/utils/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/api/app/utils/memory.py -------------------------------------------------------------------------------- /openmemory/api/app/utils/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/api/app/utils/prompts.py -------------------------------------------------------------------------------- /openmemory/api/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/api/config.json -------------------------------------------------------------------------------- /openmemory/api/default_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/api/default_config.json -------------------------------------------------------------------------------- /openmemory/api/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/api/main.py -------------------------------------------------------------------------------- /openmemory/api/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/api/requirements.txt -------------------------------------------------------------------------------- /openmemory/compose/chroma.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/compose/chroma.yml -------------------------------------------------------------------------------- /openmemory/compose/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/compose/elasticsearch.yml -------------------------------------------------------------------------------- /openmemory/compose/faiss.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/compose/faiss.yml -------------------------------------------------------------------------------- /openmemory/compose/milvus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/compose/milvus.yml -------------------------------------------------------------------------------- /openmemory/compose/opensearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/compose/opensearch.yml -------------------------------------------------------------------------------- /openmemory/compose/pgvector.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/compose/pgvector.yml -------------------------------------------------------------------------------- /openmemory/compose/qdrant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/compose/qdrant.yml -------------------------------------------------------------------------------- /openmemory/compose/redis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/compose/redis.yml -------------------------------------------------------------------------------- /openmemory/compose/weaviate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/compose/weaviate.yml -------------------------------------------------------------------------------- /openmemory/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/docker-compose.yml -------------------------------------------------------------------------------- /openmemory/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/run.sh -------------------------------------------------------------------------------- /openmemory/ui/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/.dockerignore -------------------------------------------------------------------------------- /openmemory/ui/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/.env.example -------------------------------------------------------------------------------- /openmemory/ui/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/Dockerfile -------------------------------------------------------------------------------- /openmemory/ui/app/apps/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/app/apps/page.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/app/globals.css -------------------------------------------------------------------------------- /openmemory/ui/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/app/layout.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/loading.tsx: -------------------------------------------------------------------------------- 1 | export default function Loading() { 2 | return null; 3 | } 4 | -------------------------------------------------------------------------------- /openmemory/ui/app/memories/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/app/memories/page.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/memory/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/app/memory/[id]/page.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/app/not-found.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/app/page.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/app/providers.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/app/settings/page.tsx -------------------------------------------------------------------------------- /openmemory/ui/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/components.json -------------------------------------------------------------------------------- /openmemory/ui/components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/components/Navbar.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/form-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/components/form-view.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/components/types.ts -------------------------------------------------------------------------------- /openmemory/ui/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/components/ui/alert.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/components/ui/avatar.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/components/ui/badge.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/components/ui/button.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/components/ui/card.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/components/ui/chart.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/components/ui/dialog.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/components/ui/drawer.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/components/ui/form.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/components/ui/input.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/components/ui/label.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/components/ui/select.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/components/ui/sheet.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/components/ui/slider.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/components/ui/sonner.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/components/ui/switch.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/components/ui/table.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/components/ui/tabs.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/components/ui/toast.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/components/ui/toggle.tsx -------------------------------------------------------------------------------- /openmemory/ui/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/entrypoint.sh -------------------------------------------------------------------------------- /openmemory/ui/hooks/use-mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/hooks/use-mobile.tsx -------------------------------------------------------------------------------- /openmemory/ui/hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/hooks/use-toast.ts -------------------------------------------------------------------------------- /openmemory/ui/hooks/useAppsApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/hooks/useAppsApi.ts -------------------------------------------------------------------------------- /openmemory/ui/hooks/useConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/hooks/useConfig.ts -------------------------------------------------------------------------------- /openmemory/ui/hooks/useFiltersApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/hooks/useFiltersApi.ts -------------------------------------------------------------------------------- /openmemory/ui/hooks/useMemoriesApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/hooks/useMemoriesApi.ts -------------------------------------------------------------------------------- /openmemory/ui/hooks/useStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/hooks/useStats.ts -------------------------------------------------------------------------------- /openmemory/ui/hooks/useUI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/hooks/useUI.ts -------------------------------------------------------------------------------- /openmemory/ui/lib/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/lib/helpers.ts -------------------------------------------------------------------------------- /openmemory/ui/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/lib/utils.ts -------------------------------------------------------------------------------- /openmemory/ui/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/next-env.d.ts -------------------------------------------------------------------------------- /openmemory/ui/next.config.dev.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/next.config.dev.mjs -------------------------------------------------------------------------------- /openmemory/ui/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/next.config.mjs -------------------------------------------------------------------------------- /openmemory/ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/package.json -------------------------------------------------------------------------------- /openmemory/ui/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/pnpm-lock.yaml -------------------------------------------------------------------------------- /openmemory/ui/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/postcss.config.mjs -------------------------------------------------------------------------------- /openmemory/ui/public/images/cline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/public/images/cline.png -------------------------------------------------------------------------------- /openmemory/ui/public/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/public/images/cursor.png -------------------------------------------------------------------------------- /openmemory/ui/public/images/witsy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/public/images/witsy.png -------------------------------------------------------------------------------- /openmemory/ui/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/public/logo.svg -------------------------------------------------------------------------------- /openmemory/ui/public/placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/public/placeholder.jpg -------------------------------------------------------------------------------- /openmemory/ui/public/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/public/placeholder.svg -------------------------------------------------------------------------------- /openmemory/ui/store/appsSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/store/appsSlice.ts -------------------------------------------------------------------------------- /openmemory/ui/store/configSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/store/configSlice.ts -------------------------------------------------------------------------------- /openmemory/ui/store/filtersSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/store/filtersSlice.ts -------------------------------------------------------------------------------- /openmemory/ui/store/memoriesSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/store/memoriesSlice.ts -------------------------------------------------------------------------------- /openmemory/ui/store/profileSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/store/profileSlice.ts -------------------------------------------------------------------------------- /openmemory/ui/store/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/store/store.ts -------------------------------------------------------------------------------- /openmemory/ui/store/uiSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/store/uiSlice.ts -------------------------------------------------------------------------------- /openmemory/ui/styles/animation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/styles/animation.css -------------------------------------------------------------------------------- /openmemory/ui/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/styles/globals.css -------------------------------------------------------------------------------- /openmemory/ui/styles/notfound.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/styles/notfound.scss -------------------------------------------------------------------------------- /openmemory/ui/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/tailwind.config.ts -------------------------------------------------------------------------------- /openmemory/ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/openmemory/ui/tsconfig.json -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/pyproject.toml -------------------------------------------------------------------------------- /server/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/server/.env.example -------------------------------------------------------------------------------- /server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/server/Dockerfile -------------------------------------------------------------------------------- /server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/server/Makefile -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/server/README.md -------------------------------------------------------------------------------- /server/dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/server/dev.Dockerfile -------------------------------------------------------------------------------- /server/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/server/docker-compose.yaml -------------------------------------------------------------------------------- /server/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/server/main.py -------------------------------------------------------------------------------- /server/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/server/requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/configs/test_prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/tests/configs/test_prompts.py -------------------------------------------------------------------------------- /tests/llms/test_azure_openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/tests/llms/test_azure_openai.py -------------------------------------------------------------------------------- /tests/llms/test_deepseek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/tests/llms/test_deepseek.py -------------------------------------------------------------------------------- /tests/llms/test_gemini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/tests/llms/test_gemini.py -------------------------------------------------------------------------------- /tests/llms/test_groq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/tests/llms/test_groq.py -------------------------------------------------------------------------------- /tests/llms/test_langchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/tests/llms/test_langchain.py -------------------------------------------------------------------------------- /tests/llms/test_litellm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/tests/llms/test_litellm.py -------------------------------------------------------------------------------- /tests/llms/test_lm_studio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/tests/llms/test_lm_studio.py -------------------------------------------------------------------------------- /tests/llms/test_ollama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/tests/llms/test_ollama.py -------------------------------------------------------------------------------- /tests/llms/test_openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/tests/llms/test_openai.py -------------------------------------------------------------------------------- /tests/llms/test_together.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/tests/llms/test_together.py -------------------------------------------------------------------------------- /tests/llms/test_vllm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/tests/llms/test_vllm.py -------------------------------------------------------------------------------- /tests/memory/test_kuzu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/tests/memory/test_kuzu.py -------------------------------------------------------------------------------- /tests/memory/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/tests/memory/test_main.py -------------------------------------------------------------------------------- /tests/memory/test_neptune_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/tests/memory/test_neptune_memory.py -------------------------------------------------------------------------------- /tests/memory/test_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/tests/memory/test_storage.py -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/tests/test_main.py -------------------------------------------------------------------------------- /tests/test_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/tests/test_memory.py -------------------------------------------------------------------------------- /tests/test_memory_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/tests/test_memory_integration.py -------------------------------------------------------------------------------- /tests/test_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/tests/test_proxy.py -------------------------------------------------------------------------------- /tests/test_telemetry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/tests/test_telemetry.py -------------------------------------------------------------------------------- /tests/vector_stores/test_baidu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/tests/vector_stores/test_baidu.py -------------------------------------------------------------------------------- /tests/vector_stores/test_cassandra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/tests/vector_stores/test_cassandra.py -------------------------------------------------------------------------------- /tests/vector_stores/test_chroma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/tests/vector_stores/test_chroma.py -------------------------------------------------------------------------------- /tests/vector_stores/test_databricks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/tests/vector_stores/test_databricks.py -------------------------------------------------------------------------------- /tests/vector_stores/test_faiss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/tests/vector_stores/test_faiss.py -------------------------------------------------------------------------------- /tests/vector_stores/test_milvus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/tests/vector_stores/test_milvus.py -------------------------------------------------------------------------------- /tests/vector_stores/test_mongodb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/tests/vector_stores/test_mongodb.py -------------------------------------------------------------------------------- /tests/vector_stores/test_opensearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/tests/vector_stores/test_opensearch.py -------------------------------------------------------------------------------- /tests/vector_stores/test_pgvector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/tests/vector_stores/test_pgvector.py -------------------------------------------------------------------------------- /tests/vector_stores/test_pinecone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/tests/vector_stores/test_pinecone.py -------------------------------------------------------------------------------- /tests/vector_stores/test_qdrant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/tests/vector_stores/test_qdrant.py -------------------------------------------------------------------------------- /tests/vector_stores/test_s3_vectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/tests/vector_stores/test_s3_vectors.py -------------------------------------------------------------------------------- /tests/vector_stores/test_supabase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/tests/vector_stores/test_supabase.py -------------------------------------------------------------------------------- /tests/vector_stores/test_valkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/tests/vector_stores/test_valkey.py -------------------------------------------------------------------------------- /tests/vector_stores/test_weaviate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/tests/vector_stores/test_weaviate.py -------------------------------------------------------------------------------- /vercel-ai-sdk/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/vercel-ai-sdk/.gitattributes -------------------------------------------------------------------------------- /vercel-ai-sdk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/vercel-ai-sdk/.gitignore -------------------------------------------------------------------------------- /vercel-ai-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/vercel-ai-sdk/README.md -------------------------------------------------------------------------------- /vercel-ai-sdk/config/test-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/vercel-ai-sdk/config/test-config.ts -------------------------------------------------------------------------------- /vercel-ai-sdk/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/vercel-ai-sdk/jest.config.js -------------------------------------------------------------------------------- /vercel-ai-sdk/nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/vercel-ai-sdk/nodemon.json -------------------------------------------------------------------------------- /vercel-ai-sdk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/vercel-ai-sdk/package.json -------------------------------------------------------------------------------- /vercel-ai-sdk/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/vercel-ai-sdk/pnpm-lock.yaml -------------------------------------------------------------------------------- /vercel-ai-sdk/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/vercel-ai-sdk/src/index.ts -------------------------------------------------------------------------------- /vercel-ai-sdk/src/mem0-facade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/vercel-ai-sdk/src/mem0-facade.ts -------------------------------------------------------------------------------- /vercel-ai-sdk/src/mem0-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/vercel-ai-sdk/src/mem0-provider.ts -------------------------------------------------------------------------------- /vercel-ai-sdk/src/mem0-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/vercel-ai-sdk/src/mem0-types.ts -------------------------------------------------------------------------------- /vercel-ai-sdk/src/mem0-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/vercel-ai-sdk/src/mem0-utils.ts -------------------------------------------------------------------------------- /vercel-ai-sdk/src/stream-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/vercel-ai-sdk/src/stream-utils.ts -------------------------------------------------------------------------------- /vercel-ai-sdk/teardown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/vercel-ai-sdk/teardown.ts -------------------------------------------------------------------------------- /vercel-ai-sdk/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/vercel-ai-sdk/tsconfig.json -------------------------------------------------------------------------------- /vercel-ai-sdk/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mem0ai/mem0/HEAD/vercel-ai-sdk/tsup.config.ts --------------------------------------------------------------------------------