mem0ai-azure-mysql 0.1.115__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (116) hide show
  1. mem0/__init__.py +6 -0
  2. mem0/client/__init__.py +0 -0
  3. mem0/client/main.py +1535 -0
  4. mem0/client/project.py +860 -0
  5. mem0/client/utils.py +29 -0
  6. mem0/configs/__init__.py +0 -0
  7. mem0/configs/base.py +90 -0
  8. mem0/configs/dbs/__init__.py +4 -0
  9. mem0/configs/dbs/base.py +41 -0
  10. mem0/configs/dbs/mysql.py +25 -0
  11. mem0/configs/embeddings/__init__.py +0 -0
  12. mem0/configs/embeddings/base.py +108 -0
  13. mem0/configs/enums.py +7 -0
  14. mem0/configs/llms/__init__.py +0 -0
  15. mem0/configs/llms/base.py +152 -0
  16. mem0/configs/prompts.py +333 -0
  17. mem0/configs/vector_stores/__init__.py +0 -0
  18. mem0/configs/vector_stores/azure_ai_search.py +59 -0
  19. mem0/configs/vector_stores/baidu.py +29 -0
  20. mem0/configs/vector_stores/chroma.py +40 -0
  21. mem0/configs/vector_stores/elasticsearch.py +47 -0
  22. mem0/configs/vector_stores/faiss.py +39 -0
  23. mem0/configs/vector_stores/langchain.py +32 -0
  24. mem0/configs/vector_stores/milvus.py +43 -0
  25. mem0/configs/vector_stores/mongodb.py +25 -0
  26. mem0/configs/vector_stores/opensearch.py +41 -0
  27. mem0/configs/vector_stores/pgvector.py +37 -0
  28. mem0/configs/vector_stores/pinecone.py +56 -0
  29. mem0/configs/vector_stores/qdrant.py +49 -0
  30. mem0/configs/vector_stores/redis.py +26 -0
  31. mem0/configs/vector_stores/supabase.py +44 -0
  32. mem0/configs/vector_stores/upstash_vector.py +36 -0
  33. mem0/configs/vector_stores/vertex_ai_vector_search.py +27 -0
  34. mem0/configs/vector_stores/weaviate.py +43 -0
  35. mem0/dbs/__init__.py +4 -0
  36. mem0/dbs/base.py +68 -0
  37. mem0/dbs/configs.py +21 -0
  38. mem0/dbs/mysql.py +321 -0
  39. mem0/embeddings/__init__.py +0 -0
  40. mem0/embeddings/aws_bedrock.py +100 -0
  41. mem0/embeddings/azure_openai.py +43 -0
  42. mem0/embeddings/base.py +31 -0
  43. mem0/embeddings/configs.py +30 -0
  44. mem0/embeddings/gemini.py +39 -0
  45. mem0/embeddings/huggingface.py +41 -0
  46. mem0/embeddings/langchain.py +35 -0
  47. mem0/embeddings/lmstudio.py +29 -0
  48. mem0/embeddings/mock.py +11 -0
  49. mem0/embeddings/ollama.py +53 -0
  50. mem0/embeddings/openai.py +49 -0
  51. mem0/embeddings/together.py +31 -0
  52. mem0/embeddings/vertexai.py +54 -0
  53. mem0/graphs/__init__.py +0 -0
  54. mem0/graphs/configs.py +96 -0
  55. mem0/graphs/neptune/__init__.py +0 -0
  56. mem0/graphs/neptune/base.py +410 -0
  57. mem0/graphs/neptune/main.py +372 -0
  58. mem0/graphs/tools.py +371 -0
  59. mem0/graphs/utils.py +97 -0
  60. mem0/llms/__init__.py +0 -0
  61. mem0/llms/anthropic.py +64 -0
  62. mem0/llms/aws_bedrock.py +270 -0
  63. mem0/llms/azure_openai.py +114 -0
  64. mem0/llms/azure_openai_structured.py +76 -0
  65. mem0/llms/base.py +32 -0
  66. mem0/llms/configs.py +34 -0
  67. mem0/llms/deepseek.py +85 -0
  68. mem0/llms/gemini.py +201 -0
  69. mem0/llms/groq.py +88 -0
  70. mem0/llms/langchain.py +65 -0
  71. mem0/llms/litellm.py +87 -0
  72. mem0/llms/lmstudio.py +53 -0
  73. mem0/llms/ollama.py +94 -0
  74. mem0/llms/openai.py +124 -0
  75. mem0/llms/openai_structured.py +52 -0
  76. mem0/llms/sarvam.py +89 -0
  77. mem0/llms/together.py +88 -0
  78. mem0/llms/vllm.py +89 -0
  79. mem0/llms/xai.py +52 -0
  80. mem0/memory/__init__.py +0 -0
  81. mem0/memory/base.py +63 -0
  82. mem0/memory/graph_memory.py +632 -0
  83. mem0/memory/main.py +1843 -0
  84. mem0/memory/memgraph_memory.py +630 -0
  85. mem0/memory/setup.py +56 -0
  86. mem0/memory/storage.py +218 -0
  87. mem0/memory/telemetry.py +90 -0
  88. mem0/memory/utils.py +133 -0
  89. mem0/proxy/__init__.py +0 -0
  90. mem0/proxy/main.py +194 -0
  91. mem0/utils/factory.py +132 -0
  92. mem0/vector_stores/__init__.py +0 -0
  93. mem0/vector_stores/azure_ai_search.py +383 -0
  94. mem0/vector_stores/baidu.py +368 -0
  95. mem0/vector_stores/base.py +58 -0
  96. mem0/vector_stores/chroma.py +229 -0
  97. mem0/vector_stores/configs.py +60 -0
  98. mem0/vector_stores/elasticsearch.py +235 -0
  99. mem0/vector_stores/faiss.py +473 -0
  100. mem0/vector_stores/langchain.py +179 -0
  101. mem0/vector_stores/milvus.py +245 -0
  102. mem0/vector_stores/mongodb.py +293 -0
  103. mem0/vector_stores/opensearch.py +281 -0
  104. mem0/vector_stores/pgvector.py +294 -0
  105. mem0/vector_stores/pinecone.py +373 -0
  106. mem0/vector_stores/qdrant.py +240 -0
  107. mem0/vector_stores/redis.py +295 -0
  108. mem0/vector_stores/supabase.py +237 -0
  109. mem0/vector_stores/upstash_vector.py +293 -0
  110. mem0/vector_stores/vertex_ai_vector_search.py +629 -0
  111. mem0/vector_stores/weaviate.py +316 -0
  112. mem0ai_azure_mysql-0.1.115.data/data/README.md +169 -0
  113. mem0ai_azure_mysql-0.1.115.dist-info/METADATA +224 -0
  114. mem0ai_azure_mysql-0.1.115.dist-info/RECORD +116 -0
  115. mem0ai_azure_mysql-0.1.115.dist-info/WHEEL +4 -0
  116. mem0ai_azure_mysql-0.1.115.dist-info/licenses/LICENSE +201 -0
@@ -0,0 +1,224 @@
1
+ Metadata-Version: 2.4
2
+ Name: mem0ai-azure-mysql
3
+ Version: 0.1.115
4
+ Summary: Long-term memory for AI Agents with Azure DefaultAzureCredential authentication and MySQL history database support
5
+ License-File: LICENSE
6
+ Requires-Python: <4.0,>=3.9
7
+ Requires-Dist: azure-identity>=1.23.1
8
+ Requires-Dist: azure-search-documents>=11.5.3
9
+ Requires-Dist: openai>=1.33.0
10
+ Requires-Dist: posthog>=3.5.0
11
+ Requires-Dist: pydantic>=2.7.3
12
+ Requires-Dist: pymysql
13
+ Requires-Dist: pytz>=2024.1
14
+ Requires-Dist: qdrant-client>=1.9.1
15
+ Requires-Dist: sqlalchemy>=2.0.31
16
+ Provides-Extra: dev
17
+ Requires-Dist: isort>=5.13.2; extra == 'dev'
18
+ Requires-Dist: pytest>=8.2.2; extra == 'dev'
19
+ Requires-Dist: ruff>=0.6.5; extra == 'dev'
20
+ Provides-Extra: extras
21
+ Requires-Dist: boto3>=1.34.0; extra == 'extras'
22
+ Requires-Dist: elasticsearch>=8.0.0; extra == 'extras'
23
+ Requires-Dist: langchain-community>=0.0.0; extra == 'extras'
24
+ Requires-Dist: langchain-memgraph>=0.1.0; extra == 'extras'
25
+ Requires-Dist: opensearch-py>=2.0.0; extra == 'extras'
26
+ Requires-Dist: sentence-transformers>=5.0.0; extra == 'extras'
27
+ Provides-Extra: graph
28
+ Requires-Dist: langchain-aws>=0.2.23; extra == 'graph'
29
+ Requires-Dist: langchain-neo4j>=0.4.0; extra == 'graph'
30
+ Requires-Dist: neo4j>=5.23.1; extra == 'graph'
31
+ Requires-Dist: rank-bm25>=0.2.2; extra == 'graph'
32
+ Provides-Extra: llms
33
+ Requires-Dist: google-genai>=1.0.0; extra == 'llms'
34
+ Requires-Dist: google-generativeai>=0.3.0; extra == 'llms'
35
+ Requires-Dist: groq>=0.3.0; extra == 'llms'
36
+ Requires-Dist: litellm>=0.1.0; extra == 'llms'
37
+ Requires-Dist: ollama>=0.1.0; extra == 'llms'
38
+ Requires-Dist: together>=0.2.10; extra == 'llms'
39
+ Requires-Dist: vertexai>=0.1.0; extra == 'llms'
40
+ Provides-Extra: test
41
+ Requires-Dist: pytest-asyncio>=0.23.7; extra == 'test'
42
+ Requires-Dist: pytest-mock>=3.14.0; extra == 'test'
43
+ Requires-Dist: pytest>=8.2.2; extra == 'test'
44
+ Provides-Extra: vector-stores
45
+ Requires-Dist: chromadb>=0.4.24; extra == 'vector-stores'
46
+ Requires-Dist: faiss-cpu>=1.7.4; extra == 'vector-stores'
47
+ Requires-Dist: pinecone-text>=0.10.0; extra == 'vector-stores'
48
+ Requires-Dist: pinecone<=7.3.0; extra == 'vector-stores'
49
+ Requires-Dist: pymochow>=2.2.9; extra == 'vector-stores'
50
+ Requires-Dist: pymongo>=4.13.2; extra == 'vector-stores'
51
+ Requires-Dist: upstash-vector>=0.1.0; extra == 'vector-stores'
52
+ Requires-Dist: vecs>=0.4.0; extra == 'vector-stores'
53
+ Requires-Dist: weaviate-client>=4.4.0; extra == 'vector-stores'
54
+ Description-Content-Type: text/markdown
55
+
56
+ <p align="center">
57
+ <a href="https://github.com/mem0ai/mem0">
58
+ <img src="docs/images/banner-sm.png" width="800px" alt="Mem0 - The Memory Layer for Personalized AI">
59
+ </a>
60
+ </p>
61
+ <p align="center" style="display: flex; justify-content: center; gap: 20px; align-items: center;">
62
+ <a href="https://trendshift.io/repositories/11194" target="blank">
63
+ <img src="https://trendshift.io/api/badge/repositories/11194" alt="mem0ai%2Fmem0 | Trendshift" width="250" height="55"/>
64
+ </a>
65
+ </p>
66
+
67
+ <p align="center">
68
+ <a href="https://mem0.ai">Learn more</a>
69
+ ·
70
+ <a href="https://mem0.dev/DiG">Join Discord</a>
71
+ ·
72
+ <a href="https://mem0.dev/demo">Demo</a>
73
+ ·
74
+ <a href="https://mem0.dev/openmemory">OpenMemory</a>
75
+ </p>
76
+
77
+ <p align="center">
78
+ <a href="https://mem0.dev/DiG">
79
+ <img src="https://dcbadge.vercel.app/api/server/6PzXDgEjG5?style=flat" alt="Mem0 Discord">
80
+ </a>
81
+ <a href="https://pepy.tech/project/mem0ai">
82
+ <img src="https://img.shields.io/pypi/dm/mem0ai" alt="Mem0 PyPI - Downloads">
83
+ </a>
84
+ <a href="https://github.com/mem0ai/mem0">
85
+ <img src="https://img.shields.io/github/commit-activity/m/mem0ai/mem0?style=flat-square" alt="GitHub commit activity">
86
+ </a>
87
+ <a href="https://pypi.org/project/mem0ai" target="blank">
88
+ <img src="https://img.shields.io/pypi/v/mem0ai?color=%2334D058&label=pypi%20package" alt="Package version">
89
+ </a>
90
+ <a href="https://www.npmjs.com/package/mem0ai" target="blank">
91
+ <img src="https://img.shields.io/npm/v/mem0ai" alt="Npm package">
92
+ </a>
93
+ <a href="https://www.ycombinator.com/companies/mem0">
94
+ <img src="https://img.shields.io/badge/Y%20Combinator-S24-orange?style=flat-square" alt="Y Combinator S24">
95
+ </a>
96
+ </p>
97
+
98
+ <p align="center">
99
+ <a href="https://mem0.ai/research"><strong>📄 Building Production-Ready AI Agents with Scalable Long-Term Memory →</strong></a>
100
+ </p>
101
+ <p align="center">
102
+ <strong>⚡ +26% Accuracy vs. OpenAI Memory • 🚀 91% Faster • 💰 90% Fewer Tokens</strong>
103
+ </p>
104
+
105
+ ## 🔥 Research Highlights
106
+ - **+26% Accuracy** over OpenAI Memory on the LOCOMO benchmark
107
+ - **91% Faster Responses** than full-context, ensuring low-latency at scale
108
+ - **90% Lower Token Usage** than full-context, cutting costs without compromise
109
+ - [Read the full paper](https://mem0.ai/research)
110
+
111
+ # Introduction
112
+
113
+ [Mem0](https://mem0.ai) ("mem-zero") enhances AI assistants and agents with an intelligent memory layer, enabling personalized AI interactions. It remembers user preferences, adapts to individual needs, and continuously learns over time—ideal for customer support chatbots, AI assistants, and autonomous systems.
114
+
115
+ ### Key Features & Use Cases
116
+
117
+ **Core Capabilities:**
118
+ - **Multi-Level Memory**: Seamlessly retains User, Session, and Agent state with adaptive personalization
119
+ - **Developer-Friendly**: Intuitive API, cross-platform SDKs, and a fully managed service option
120
+
121
+ **Applications:**
122
+ - **AI Assistants**: Consistent, context-rich conversations
123
+ - **Customer Support**: Recall past tickets and user history for tailored help
124
+ - **Healthcare**: Track patient preferences and history for personalized care
125
+ - **Productivity & Gaming**: Adaptive workflows and environments based on user behavior
126
+
127
+ ## 🚀 Quickstart Guide <a name="quickstart"></a>
128
+
129
+ Choose between our hosted platform or self-hosted package:
130
+
131
+ ### Hosted Platform
132
+
133
+ Get up and running in minutes with automatic updates, analytics, and enterprise security.
134
+
135
+ 1. Sign up on [Mem0 Platform](https://app.mem0.ai)
136
+ 2. Embed the memory layer via SDK or API keys
137
+
138
+ ### Self-Hosted (Open Source)
139
+
140
+ Install the sdk via pip:
141
+
142
+ ```bash
143
+ pip install mem0ai
144
+ ```
145
+
146
+ Install sdk via npm:
147
+ ```bash
148
+ npm install mem0ai
149
+ ```
150
+
151
+ ### Basic Usage
152
+
153
+ Mem0 requires an LLM to function, with `gpt-4o-mini` from OpenAI as the default. However, it supports a variety of LLMs; for details, refer to our [Supported LLMs documentation](https://docs.mem0.ai/components/llms/overview).
154
+
155
+ First step is to instantiate the memory:
156
+
157
+ ```python
158
+ from openai import OpenAI
159
+ from mem0 import Memory
160
+
161
+ openai_client = OpenAI()
162
+ memory = Memory()
163
+
164
+ def chat_with_memories(message: str, user_id: str = "default_user") -> str:
165
+ # Retrieve relevant memories
166
+ relevant_memories = memory.search(query=message, user_id=user_id, limit=3)
167
+ memories_str = "\n".join(f"- {entry['memory']}" for entry in relevant_memories["results"])
168
+
169
+ # Generate Assistant response
170
+ system_prompt = f"You are a helpful AI. Answer the question based on query and memories.\nUser Memories:\n{memories_str}"
171
+ messages = [{"role": "system", "content": system_prompt}, {"role": "user", "content": message}]
172
+ response = openai_client.chat.completions.create(model="gpt-4o-mini", messages=messages)
173
+ assistant_response = response.choices[0].message.content
174
+
175
+ # Create new memories from the conversation
176
+ messages.append({"role": "assistant", "content": assistant_response})
177
+ memory.add(messages, user_id=user_id)
178
+
179
+ return assistant_response
180
+
181
+ def main():
182
+ print("Chat with AI (type 'exit' to quit)")
183
+ while True:
184
+ user_input = input("You: ").strip()
185
+ if user_input.lower() == 'exit':
186
+ print("Goodbye!")
187
+ break
188
+ print(f"AI: {chat_with_memories(user_input)}")
189
+
190
+ if __name__ == "__main__":
191
+ main()
192
+ ```
193
+
194
+ For detailed integration steps, see the [Quickstart](https://docs.mem0.ai/quickstart) and [API Reference](https://docs.mem0.ai/api-reference).
195
+
196
+ ## 🔗 Integrations & Demos
197
+
198
+ - **ChatGPT with Memory**: Personalized chat powered by Mem0 ([Live Demo](https://mem0.dev/demo))
199
+ - **Browser Extension**: Store memories across ChatGPT, Perplexity, and Claude ([Chrome Extension](https://chromewebstore.google.com/detail/onihkkbipkfeijkadecaafbgagkhglop?utm_source=item-share-cb))
200
+ - **Langgraph Support**: Build a customer bot with Langgraph + Mem0 ([Guide](https://docs.mem0.ai/integrations/langgraph))
201
+ - **CrewAI Integration**: Tailor CrewAI outputs with Mem0 ([Example](https://docs.mem0.ai/integrations/crewai))
202
+
203
+ ## 📚 Documentation & Support
204
+
205
+ - Full docs: https://docs.mem0.ai
206
+ - Community: [Discord](https://mem0.dev/DiG) · [Twitter](https://x.com/mem0ai)
207
+ - Contact: founders@mem0.ai
208
+
209
+ ## Citation
210
+
211
+ We now have a paper you can cite:
212
+
213
+ ```bibtex
214
+ @article{mem0,
215
+ title={Mem0: Building Production-Ready AI Agents with Scalable Long-Term Memory},
216
+ author={Chhikara, Prateek and Khant, Dev and Aryan, Saket and Singh, Taranjeet and Yadav, Deshraj},
217
+ journal={arXiv preprint arXiv:2504.19413},
218
+ year={2025}
219
+ }
220
+ ```
221
+
222
+ ## ⚖️ License
223
+
224
+ Apache 2.0 — see the [LICENSE](LICENSE) file for details.
@@ -0,0 +1,116 @@
1
+ mem0/__init__.py,sha256=vhKLt8JUYBpJH14nVhrTGNz00sOalX5qnx-INBEV35Y,217
2
+ mem0/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ mem0/client/main.py,sha256=MtYDxoP9Gauv3dblAozoDmDX0uNqOUG8BhN51nzOIrY,55178
4
+ mem0/client/project.py,sha256=6nrOQbAY-7fIEGgh6kXI90AltvFaI-TnwnTEY_8K8h0,26577
5
+ mem0/client/utils.py,sha256=YRS-qpofVngRbu9CqGuHMgkt6edCLGWSLWe67sSBKGQ,719
6
+ mem0/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ mem0/configs/base.py,sha256=ux9CeExSJ1SfyDElGNLSq9777ar7_NCjG9ahaCEdM0g,3588
8
+ mem0/configs/enums.py,sha256=5qj-Ptly_-5_hnrQd5ViBR2wgQEVlendYiMCrA_EK9E,151
9
+ mem0/configs/prompts.py,sha256=FApgNZPdonc16NBPBjvjhWjQQcV_qU0f4UaqSauh1sY,16373
10
+ mem0/configs/dbs/__init__.py,sha256=hcfsoti8rHf5KukRSahiz3jzWhXCcoYmy_4Uv__yy24,136
11
+ mem0/configs/dbs/base.py,sha256=mcCkMCXFoMLIsqwuJAG1kinKi45ddkg5vsjWodNcJkw,1286
12
+ mem0/configs/dbs/mysql.py,sha256=YlftRfRB22evkkhgGGPnUF1biKXD8qJYTeP6or6cFkQ,665
13
+ mem0/configs/embeddings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
+ mem0/configs/embeddings/base.py,sha256=4oJi2QCy7i4yUKQh2_9OCSA2zUe4SidE3i_p7-n0Bho,4981
15
+ mem0/configs/llms/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
+ mem0/configs/llms/base.py,sha256=vI7BQelHRrRDlWsdBf1lutZ8jiXfbQ-2kGmfDvvOnXg,6646
17
+ mem0/configs/vector_stores/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
+ mem0/configs/vector_stores/azure_ai_search.py,sha256=0c5oZr3gwJH19MbU3UhLqfPQ29kgThYUMFvkdftiZ7k,2545
19
+ mem0/configs/vector_stores/baidu.py,sha256=YauoQZ2BgqzJg8hRAP8Ub5ntzYxhMuthX8dOvBCjS2I,1267
20
+ mem0/configs/vector_stores/chroma.py,sha256=5mEJaNr8-rpwUd_Rx1t7mbaIFwMKezt0Yy72Pfn50Fc,1706
21
+ mem0/configs/vector_stores/elasticsearch.py,sha256=IuAxw-wsV4f5pYfEQfRlMt5yVi1Qjdf8vhS0MuL3gxI,2364
22
+ mem0/configs/vector_stores/faiss.py,sha256=NDTT1B7XkE0rSbU1y2mdx6CAdqjcXQHQb801zAltBSg,1705
23
+ mem0/configs/vector_stores/langchain.py,sha256=gjSDFotx6IeXL8XnFW6m_qdnvrbpgXCichIug7VSKRU,1177
24
+ mem0/configs/vector_stores/milvus.py,sha256=j8KtwSrMjB7OT_v9uaeE1va17UkU8nbg8039joW5xsg,1430
25
+ mem0/configs/vector_stores/mongodb.py,sha256=sS6vgIUKdtuQbrLdawHWBmzkXxhXtCMjcii-bqOtkH8,1111
26
+ mem0/configs/vector_stores/opensearch.py,sha256=Z5mpMrzqZ2E8eho6fXhAe0kebSbdvxHMgvcAI_Wh3i4,2022
27
+ mem0/configs/vector_stores/pgvector.py,sha256=MZe0H2lh9W1ljMIXi6L-g-Nmi88dZfxrfcgjheXt5pg,1878
28
+ mem0/configs/vector_stores/pinecone.py,sha256=YcTowUPqcvTSnIPTKWbPi1VwO_X9ypxLHzAfHTIAU_M,2711
29
+ mem0/configs/vector_stores/qdrant.py,sha256=JBOeVkOK3zkkqnKaYNLKgZ0wvThXqpKuvfEO72eClzU,2139
30
+ mem0/configs/vector_stores/redis.py,sha256=OKZWvMrGkAOgisV_U05hvReh0Rzc-hrx029WYFPfi4w,958
31
+ mem0/configs/vector_stores/supabase.py,sha256=GBQX2vBj6BSVymHz7ARwuUL0FNHj9s81pfYhIUFGkSM,1706
32
+ mem0/configs/vector_stores/upstash_vector.py,sha256=j17pRtSDut2HjQS-lSkirfDT9QsDLe2tCd-FG7cN3p8,1430
33
+ mem0/configs/vector_stores/vertex_ai_vector_search.py,sha256=f6tUun9hhgRQTrrwdxWrpcCaZz71Ew85eRG1M9AB5wI,1258
34
+ mem0/configs/vector_stores/weaviate.py,sha256=LAIDcMTlRL58elbX_DdOAZNOIFAL-7VTMrSqQJIJWAs,1584
35
+ mem0/dbs/__init__.py,sha256=C-DP0m7sIQ0Qx9Nb7rK5XuS_7GivGn36XF3d6oKAUSE,110
36
+ mem0/dbs/base.py,sha256=sN07vhMI8y07SBaqHrft3eEylq8Q1yS29VYBZR_93Cc,2067
37
+ mem0/dbs/configs.py,sha256=EoWnTNM_YPR39VgDDv8wS0KfA1nJ8Q0bpGtJdx1wu84,624
38
+ mem0/dbs/mysql.py,sha256=AdrJQPrzqAN1cDjYgT-tA5n7CLPjJwR8LPlBhIJbT80,12731
39
+ mem0/embeddings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
40
+ mem0/embeddings/aws_bedrock.py,sha256=MvlmXfUxua2sIEoxzJKN9RPA5Xk9pN9peeDr3QBjuGw,3531
41
+ mem0/embeddings/azure_openai.py,sha256=WU65mN6VQPROwmBguVwF8o8ydLFktZEjLmy9m6dQ660,1843
42
+ mem0/embeddings/base.py,sha256=O-oFuizpx9tyL8qjhRu0l42GDkjgORy_UMtMCkRfc4k,973
43
+ mem0/embeddings/configs.py,sha256=ucqSXa_Wiiy_LQJRpulD_-VFQQc2tWOOzEV3pLrHMow,881
44
+ mem0/embeddings/gemini.py,sha256=6WPlY1GRYSfX2aD0ywou3uM4XenEQm6oB1c7x7R5oOk,1509
45
+ mem0/embeddings/huggingface.py,sha256=JBUIY1fnzMJ7gHqE_qg3wiOBnGzBBc7_UMuyqwn5puE,1656
46
+ mem0/embeddings/langchain.py,sha256=_lwpRMpqNrhKTiHThfWy3WyW91nfX7Aj3WKGQhxkn00,1237
47
+ mem0/embeddings/lmstudio.py,sha256=1_I0F2KtqOy7-PJAan5gr2IkqP9EE7B37Tap_C80YQA,1239
48
+ mem0/embeddings/mock.py,sha256=cOn7lfrQbX8of6KZRR9rj27NpKueyHmPaTtkSbc72B4,365
49
+ mem0/embeddings/ollama.py,sha256=jMqRRs7_14qV_R-aTGnudiHBa7x3o1mBaSEUDk1CltU,2005
50
+ mem0/embeddings/openai.py,sha256=KiRvMwOjXLtc1njU9sAc6xszE7A5cDieIiGH6YIsd-s,1771
51
+ mem0/embeddings/together.py,sha256=MTPo_KZvFfRnz89oJ66q2mp34lTg4a1r4M8UbnQlVqg,1181
52
+ mem0/embeddings/vertexai.py,sha256=TChf2sG8xNk4riyXr_iRps6KsTy-Nby6mNpSbdp_ccY,2284
53
+ mem0/graphs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
+ mem0/graphs/configs.py,sha256=I7ZyDqz2lBBLCknOfgQHaR8mv2y7L5R4bW5gvKgn5cE,4082
55
+ mem0/graphs/tools.py,sha256=HmycfHomS1PSS8y5KT_YA3_d49hdSvlx5oChuc3d4HA,15917
56
+ mem0/graphs/utils.py,sha256=LikAEXPWhV6ak-9Mx-vG6THoQ0SazyKadOQ4k1c6lhY,5750
57
+ mem0/graphs/neptune/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
58
+ mem0/graphs/neptune/base.py,sha256=lqCX-hQNObDJ63BXn77-CW5UNwv_JVndxClOnBOV4NA,15149
59
+ mem0/graphs/neptune/main.py,sha256=JoyMpFqRe9RNLnh4f_HyfUaxwHtaDC6ZCdr0hqR8Vcw,15419
60
+ mem0/llms/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
61
+ mem0/llms/anthropic.py,sha256=LtKWVTAQxQnpiMrB0jwihn4mOO9RBjUT_vEjeXPBYhE,2250
62
+ mem0/llms/aws_bedrock.py,sha256=awRKZvsYpab3jYFu0e3_gTRxAToF3-M1nm9Sbr1QwzA,10520
63
+ mem0/llms/azure_openai.py,sha256=6l-sTZ6RvFbMyLrxLdDJFoanaM0lsTQn4X9nvpcz5aI,4170
64
+ mem0/llms/azure_openai_structured.py,sha256=gWFt73wn7okFcJAI8_a7SSxcnoV8_Qrf9axiV5qKNf8,2722
65
+ mem0/llms/base.py,sha256=Uit80Gs0MNKKH2z9h0Fkmr-4u4QATCpKFlPXj_8DBuo,1061
66
+ mem0/llms/configs.py,sha256=yvtU5WDBsiygCiMHjhG9ZCb1NIAMv8uXYD_KL8_X54w,997
67
+ mem0/llms/deepseek.py,sha256=1LcmGtwZDHyI3C0LYsAsb6NyeAp80uXhzE2CADOdZDY,2899
68
+ mem0/llms/gemini.py,sha256=dWnoUSs5CIQImgy4KNyBuBYNXE08Hg_Az0wQ1EGY_FQ,7272
69
+ mem0/llms/groq.py,sha256=9uGdScZXGwlvdpVNCaCgPv-uzRr8qLNqUfMIs_ORllY,2964
70
+ mem0/llms/langchain.py,sha256=PHR3L9OfhQR6VdUwo99ofSppRbyuybGNq9S1txKXzhg,2376
71
+ mem0/llms/litellm.py,sha256=HKHfIgPY9EsgIyFc30Wh5eLIwSNBcgb6ONnrjo24oe4,3072
72
+ mem0/llms/lmstudio.py,sha256=LEf4ozZl6gxP3Ti-4EA_vtwFYFM404e_fi-iDwBgsh8,1959
73
+ mem0/llms/ollama.py,sha256=Lx08fOFfDDwH8FJTKa4OIH8BlUvIu0V4qpA5sfv8rUQ,3161
74
+ mem0/llms/openai.py,sha256=uQp9mil6YHJc0cBmVOGrlZhcAinKARmR3HUEvmMEmk0,4477
75
+ mem0/llms/openai_structured.py,sha256=fx5e1AE-8mTdmSWyBv5oPhswmQmU1IZPv8sQCdvJPog,1695
76
+ mem0/llms/sarvam.py,sha256=Rr7z_Bbgsqyr1nP5_u3rXgXBzRngVG_XQKn1tY84xEc,3381
77
+ mem0/llms/together.py,sha256=DT57Z-fyyKJXjufP6mM9h8CxKI4z6-nq63eVkvA-z9c,3091
78
+ mem0/llms/vllm.py,sha256=qQhg38uG00ILyrNg12FSjYPaITjJX4n9KAORSTUH5xQ,2989
79
+ mem0/llms/xai.py,sha256=pUdxDH0-p1fVct66IMMkMl3Rgcdm1d4ko2aOT6feYWU,1764
80
+ mem0/memory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
81
+ mem0/memory/base.py,sha256=f1vpM-m9ATdy5HI-jA3SGkFtdadyPetkrI6LV4pKjyQ,1274
82
+ mem0/memory/graph_memory.py,sha256=z5NGVoGJtqtuzDUG4cJJ8aIFHe3HZSQedKcl2_WSN90,27285
83
+ mem0/memory/main.py,sha256=qcA71_XtbA7FdlT0ljt7ZyU07L2iCv00W8dvw2rXBH4,75900
84
+ mem0/memory/memgraph_memory.py,sha256=eUN-aue_SRn9wqett56YqiEdnf_RbWOqK0pYD7sl5Lg,27302
85
+ mem0/memory/setup.py,sha256=nLRA8TW5Q_rGUEo0fj8A9rLMR87NC1-op2cXvRdtPWY,1680
86
+ mem0/memory/storage.py,sha256=fMVj0stj9WYszcT-S_hh590qyNuzys3QSZ37GPNcGJA,7675
87
+ mem0/memory/telemetry.py,sha256=vpP1BgV-obzi92i1fA8POEkaLGjUIqnJ103tWXUhM6M,3318
88
+ mem0/memory/utils.py,sha256=BpktwP7ocnbmtY2BvYfTkl_aXV4MXct_7L2DT1ac_-Y,4409
89
+ mem0/proxy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
90
+ mem0/proxy/main.py,sha256=DhGH9dvVd3GTS1yyZzTBpyYvgArDRcYIgKLBCcosCLE,7398
91
+ mem0/utils/factory.py,sha256=FZ-8qKK4K7unnEfcmcYAY77i2IVDK1nbcsB1WeGlR2I,5448
92
+ mem0/vector_stores/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
93
+ mem0/vector_stores/azure_ai_search.py,sha256=pnTzzYGfeU2Q_pm8D_o_uJu-uRDNMgoYERGu7HZZb6M,14804
94
+ mem0/vector_stores/baidu.py,sha256=Cp7TGtMnZRkuDAnRw0F0OjNg229dH31dXYZL1JmPQes,12683
95
+ mem0/vector_stores/base.py,sha256=yb9TCcxximzdJd8vfNJRROHBrUyYLbH26-E63fclcDo,1344
96
+ mem0/vector_stores/chroma.py,sha256=fHGbvecYPvlhHrS4lkSWt4S1EnxicEWuqG6qOqDleQA,7539
97
+ mem0/vector_stores/configs.py,sha256=vytOYMmnv1f8k-GXmuilMSZYjJYLHi2BbCyhipPiQSg,2199
98
+ mem0/vector_stores/elasticsearch.py,sha256=VZFed8lelZm6vQ_qjCuyMW8XlUmpwANv6K-qIwxf5uc,8697
99
+ mem0/vector_stores/faiss.py,sha256=Ainr_HTHHeAXpxdgXR4zyFJxlb2DRswecRItj2YTRCM,15105
100
+ mem0/vector_stores/langchain.py,sha256=Y_sQbmIZQNDrd56KJb4dovU3Vntu_JS_rTiyY8PJ3cw,6197
101
+ mem0/vector_stores/milvus.py,sha256=t6M4NoY8Hv0tk9C3AcR4R7JVKLxjy3UgvH5SPpSme9M,8411
102
+ mem0/vector_stores/mongodb.py,sha256=H622jWnf7jaAD9IHS337X7foderefNZOYYFFnwMqF7s,11419
103
+ mem0/vector_stores/opensearch.py,sha256=YPRjGk5lnmH6UgVTyWe_uyB-B-cUfnrd9pImJRSDnxI,10376
104
+ mem0/vector_stores/pgvector.py,sha256=SWPV8ogrFMJE207yVsMpYdgipye1uDQeL7Ebxvr-QA4,9497
105
+ mem0/vector_stores/pinecone.py,sha256=uTJrBtK7sdLHy2xKrsvdnXVVVs-Xp9PA33X-moC4YJ0,12621
106
+ mem0/vector_stores/qdrant.py,sha256=9Wf0_xvk6J-p2srvVHXayIMjJWO-jF2jDEr2z_Vvs64,8203
107
+ mem0/vector_stores/redis.py,sha256=NA9WfECK2l6SRwOvlgIaAFqb8mgSJcNxtXJOnj_gGTY,11228
108
+ mem0/vector_stores/supabase.py,sha256=RCegadYW4Q8CT_NSeCywUVW01TLJQT4mDzeStNHEJHw,8347
109
+ mem0/vector_stores/upstash_vector.py,sha256=dAIef-bIB6AE_dVR8UpVWZUPQs-wLhqfxEHyyXO5kQU,9073
110
+ mem0/vector_stores/vertex_ai_vector_search.py,sha256=RaaPLTTbTPftlg7nm9WTROOhurSxqnAyx-g3tYoxv0I,24659
111
+ mem0/vector_stores/weaviate.py,sha256=v91CA79Z_zJBohwaXlOW6jtudDlGq0kYKQFHMHGqUy4,11833
112
+ mem0ai_azure_mysql-0.1.115.data/data/README.md,sha256=HhoTn6hBxTIsFwbm5zHT7aNmQOa5yaTgwdRIF6V7hX4,6525
113
+ mem0ai_azure_mysql-0.1.115.dist-info/METADATA,sha256=BTfI2Osc41_2mBpXlJAynVJsWOtUvq1MbPMILl52D5M,8948
114
+ mem0ai_azure_mysql-0.1.115.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
115
+ mem0ai_azure_mysql-0.1.115.dist-info/licenses/LICENSE,sha256=C7y-kxw1MpOi-vzggyYYHf7qDlaMVmr9TOgzenD14hk,11349
116
+ mem0ai_azure_mysql-0.1.115.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.27.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [2023] [Taranjeet Singh]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.