mem0ai-azure-mysql 0.2.0__tar.gz → 0.2.2__tar.gz
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.
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/PKG-INFO +4 -23
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/mem0/__init__.py +0 -1
- mem0ai_azure_mysql-0.2.2/pyproject.toml +62 -0
- mem0ai_azure_mysql-0.2.0/mem0/client/main.py +0 -1538
- mem0ai_azure_mysql-0.2.0/mem0/client/project.py +0 -860
- mem0ai_azure_mysql-0.2.0/mem0/client/utils.py +0 -29
- mem0ai_azure_mysql-0.2.0/mem0/vector_stores/__init__.py +0 -0
- mem0ai_azure_mysql-0.2.0/pyproject.toml +0 -136
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/.gitignore +0 -0
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/README.md +0 -0
- {mem0ai_azure_mysql-0.2.0/mem0/client → mem0ai_azure_mysql-0.2.2/mem0/configs}/__init__.py +0 -0
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/mem0/configs/base.py +0 -0
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/mem0/configs/dbs/__init__.py +0 -0
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/mem0/configs/dbs/base.py +0 -0
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/mem0/configs/dbs/mysql.py +0 -0
- {mem0ai_azure_mysql-0.2.0/mem0/configs → mem0ai_azure_mysql-0.2.2/mem0/configs/embeddings}/__init__.py +0 -0
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/mem0/configs/embeddings/base.py +0 -0
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/mem0/configs/enums.py +0 -0
- {mem0ai_azure_mysql-0.2.0/mem0/configs/embeddings → mem0ai_azure_mysql-0.2.2/mem0/configs/llms}/__init__.py +0 -0
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/mem0/configs/llms/azure.py +0 -0
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/mem0/configs/llms/base.py +0 -0
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/mem0/configs/prompts.py +0 -0
- {mem0ai_azure_mysql-0.2.0/mem0/configs/llms → mem0ai_azure_mysql-0.2.2/mem0/configs/vector_stores}/__init__.py +0 -0
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/mem0/configs/vector_stores/azure_ai_search.py +0 -0
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/mem0/dbs/__init__.py +0 -0
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/mem0/dbs/base.py +0 -0
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/mem0/dbs/configs.py +0 -0
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/mem0/dbs/mysql.py +0 -0
- {mem0ai_azure_mysql-0.2.0/mem0/configs/vector_stores → mem0ai_azure_mysql-0.2.2/mem0/embeddings}/__init__.py +0 -0
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/mem0/embeddings/azure_openai.py +0 -0
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/mem0/embeddings/base.py +0 -0
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/mem0/embeddings/configs.py +0 -0
- {mem0ai_azure_mysql-0.2.0/mem0/embeddings → mem0ai_azure_mysql-0.2.2/mem0/graphs}/__init__.py +0 -0
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/mem0/graphs/configs.py +0 -0
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/mem0/graphs/tools.py +0 -0
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/mem0/graphs/utils.py +0 -0
- {mem0ai_azure_mysql-0.2.0/mem0/graphs → mem0ai_azure_mysql-0.2.2/mem0/llms}/__init__.py +0 -0
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/mem0/llms/azure_openai.py +0 -0
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/mem0/llms/base.py +0 -0
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/mem0/llms/configs.py +0 -0
- {mem0ai_azure_mysql-0.2.0/mem0/llms → mem0ai_azure_mysql-0.2.2/mem0/memory}/__init__.py +0 -0
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/mem0/memory/base.py +0 -0
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/mem0/memory/graph_memory.py +0 -0
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/mem0/memory/main.py +0 -0
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/mem0/memory/setup.py +0 -0
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/mem0/memory/storage.py +0 -0
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/mem0/memory/telemetry.py +0 -0
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/mem0/memory/utils.py +0 -0
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/mem0/utils/factory.py +0 -0
- {mem0ai_azure_mysql-0.2.0/mem0/memory → mem0ai_azure_mysql-0.2.2/mem0/vector_stores}/__init__.py +0 -0
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/mem0/vector_stores/azure_ai_search.py +0 -0
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/mem0/vector_stores/base.py +0 -0
- {mem0ai_azure_mysql-0.2.0 → mem0ai_azure_mysql-0.2.2}/mem0/vector_stores/configs.py +0 -0
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mem0ai-azure-mysql
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: Long-term memory for AI Agents with Azure DefaultAzureCredential authentication and MySQL history database support. Async-only API.
|
|
5
5
|
Requires-Python: <4.0,>=3.10
|
|
6
|
-
Requires-Dist: azure-identity>=1.
|
|
6
|
+
Requires-Dist: azure-identity>=1.24.0
|
|
7
7
|
Requires-Dist: azure-search-documents>=11.5.3
|
|
8
|
+
Requires-Dist: boto3>=1.34.0
|
|
8
9
|
Requires-Dist: cohere>=5.17.0
|
|
9
10
|
Requires-Dist: langchain-neo4j==0.6.0
|
|
11
|
+
Requires-Dist: neo4j>=5.23.1
|
|
10
12
|
Requires-Dist: openai<1.100.0,>=1.90.0
|
|
11
13
|
Requires-Dist: posthog>=3.5.0
|
|
12
14
|
Requires-Dist: protobuf>=5.29.0
|
|
@@ -15,27 +17,6 @@ Requires-Dist: pymysql
|
|
|
15
17
|
Requires-Dist: pytz>=2024.1
|
|
16
18
|
Requires-Dist: rank-bm25>=0.2.2
|
|
17
19
|
Requires-Dist: sqlalchemy>=2.0.31
|
|
18
|
-
Provides-Extra: dev
|
|
19
|
-
Requires-Dist: azure-keyvault-secrets; extra == 'dev'
|
|
20
|
-
Requires-Dist: isort>=5.13.2; extra == 'dev'
|
|
21
|
-
Requires-Dist: pytest-asyncio>=0.23.7; extra == 'dev'
|
|
22
|
-
Requires-Dist: pytest>=8.2.2; extra == 'dev'
|
|
23
|
-
Requires-Dist: ruff>=0.6.5; extra == 'dev'
|
|
24
|
-
Provides-Extra: extras
|
|
25
|
-
Requires-Dist: boto3>=1.34.0; extra == 'extras'
|
|
26
|
-
Provides-Extra: graph
|
|
27
|
-
Requires-Dist: langchain-neo4j==0.6.0; extra == 'graph'
|
|
28
|
-
Requires-Dist: neo4j>=5.23.1; extra == 'graph'
|
|
29
|
-
Requires-Dist: rank-bm25>=0.2.2; extra == 'graph'
|
|
30
|
-
Provides-Extra: llms
|
|
31
|
-
Requires-Dist: openai<1.100.0,>=1.90.0; extra == 'llms'
|
|
32
|
-
Provides-Extra: test
|
|
33
|
-
Requires-Dist: pytest-asyncio>=0.23.7; extra == 'test'
|
|
34
|
-
Requires-Dist: pytest-mock>=3.14.0; extra == 'test'
|
|
35
|
-
Requires-Dist: pytest>=8.2.2; extra == 'test'
|
|
36
|
-
Provides-Extra: vector-stores
|
|
37
|
-
Requires-Dist: azure-identity>=1.24.0; extra == 'vector-stores'
|
|
38
|
-
Requires-Dist: azure-search-documents>=11.4.0b8; extra == 'vector-stores'
|
|
39
20
|
Description-Content-Type: text/markdown
|
|
40
21
|
|
|
41
22
|
# Mem0 - Azure Enhanced Fork
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "mem0ai-azure-mysql"
|
|
7
|
+
version = "0.2.2"
|
|
8
|
+
description = "Long-term memory for AI Agents with Azure DefaultAzureCredential authentication and MySQL history database support. Async-only API."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10,<4.0"
|
|
11
|
+
dependencies = [
|
|
12
|
+
"pydantic>=2.7.3",
|
|
13
|
+
"openai>=1.90.0,<1.100.0",
|
|
14
|
+
"posthog>=3.5.0",
|
|
15
|
+
"pytz>=2024.1",
|
|
16
|
+
"sqlalchemy>=2.0.31",
|
|
17
|
+
"protobuf>=5.29.0",
|
|
18
|
+
"azure-identity>=1.24.0",
|
|
19
|
+
"azure-search-documents>=11.5.3",
|
|
20
|
+
"pymysql",
|
|
21
|
+
"langchain-neo4j==0.6.0",
|
|
22
|
+
"neo4j>=5.23.1",
|
|
23
|
+
"rank-bm25>=0.2.2",
|
|
24
|
+
"cohere>=5.17.0",
|
|
25
|
+
"boto3>=1.34.0",
|
|
26
|
+
]
|
|
27
|
+
|
|
28
|
+
[tool.pytest.ini_options]
|
|
29
|
+
pythonpath = ["."]
|
|
30
|
+
asyncio_mode = "auto"
|
|
31
|
+
|
|
32
|
+
[tool.hatch.build]
|
|
33
|
+
include = [
|
|
34
|
+
"mem0/**/*.py",
|
|
35
|
+
]
|
|
36
|
+
exclude = [
|
|
37
|
+
"**/*",
|
|
38
|
+
"!mem0/**/*.py",
|
|
39
|
+
]
|
|
40
|
+
|
|
41
|
+
[tool.hatch.build.targets.wheel]
|
|
42
|
+
packages = ["mem0"]
|
|
43
|
+
only-include = ["mem0"]
|
|
44
|
+
|
|
45
|
+
[tool.ruff]
|
|
46
|
+
line-length = 120
|
|
47
|
+
exclude = ["embedchain/", "openmemory/"]
|
|
48
|
+
|
|
49
|
+
[tool.ruff.lint]
|
|
50
|
+
select = ["I"]
|
|
51
|
+
|
|
52
|
+
[tool.ruff.lint.isort]
|
|
53
|
+
known-first-party = ["mem0"]
|
|
54
|
+
|
|
55
|
+
[dependency-groups]
|
|
56
|
+
dev = [
|
|
57
|
+
"ruff>=0.6.5",
|
|
58
|
+
"pytest>=8.2.2",
|
|
59
|
+
"pytest-mock>=3.14.0",
|
|
60
|
+
"pytest-asyncio>=0.23.7",
|
|
61
|
+
"azure-keyvault-secrets",
|
|
62
|
+
]
|