microsoft-agents-storage-cosmos 0.3.0.dev0__tar.gz → 0.3.1__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.
- {microsoft_agents_storage_cosmos-0.3.0.dev0 → microsoft_agents_storage_cosmos-0.3.1}/PKG-INFO +2 -2
- {microsoft_agents_storage_cosmos-0.3.0.dev0/microsoft/agents → microsoft_agents_storage_cosmos-0.3.1/microsoft_agents}/storage/cosmos/cosmos_db_storage.py +3 -3
- {microsoft_agents_storage_cosmos-0.3.0.dev0 → microsoft_agents_storage_cosmos-0.3.1}/microsoft_agents_storage_cosmos.egg-info/PKG-INFO +2 -2
- {microsoft_agents_storage_cosmos-0.3.0.dev0 → microsoft_agents_storage_cosmos-0.3.1}/microsoft_agents_storage_cosmos.egg-info/SOURCES.txt +4 -4
- microsoft_agents_storage_cosmos-0.3.1/microsoft_agents_storage_cosmos.egg-info/requires.txt +3 -0
- microsoft_agents_storage_cosmos-0.3.1/microsoft_agents_storage_cosmos.egg-info/top_level.txt +1 -0
- {microsoft_agents_storage_cosmos-0.3.0.dev0 → microsoft_agents_storage_cosmos-0.3.1}/tests/test_cosmos_db_config.py +1 -1
- {microsoft_agents_storage_cosmos-0.3.0.dev0 → microsoft_agents_storage_cosmos-0.3.1}/tests/test_cosmos_db_storage.py +3 -3
- {microsoft_agents_storage_cosmos-0.3.0.dev0 → microsoft_agents_storage_cosmos-0.3.1}/tests/test_key_ops.py +1 -1
- microsoft_agents_storage_cosmos-0.3.0.dev0/microsoft_agents_storage_cosmos.egg-info/requires.txt +0 -3
- microsoft_agents_storage_cosmos-0.3.0.dev0/microsoft_agents_storage_cosmos.egg-info/top_level.txt +0 -1
- {microsoft_agents_storage_cosmos-0.3.0.dev0/microsoft/agents → microsoft_agents_storage_cosmos-0.3.1/microsoft_agents}/storage/cosmos/__init__.py +0 -0
- {microsoft_agents_storage_cosmos-0.3.0.dev0/microsoft/agents → microsoft_agents_storage_cosmos-0.3.1/microsoft_agents}/storage/cosmos/cosmos_db_storage_config.py +0 -0
- {microsoft_agents_storage_cosmos-0.3.0.dev0/microsoft/agents → microsoft_agents_storage_cosmos-0.3.1/microsoft_agents}/storage/cosmos/key_ops.py +0 -0
- {microsoft_agents_storage_cosmos-0.3.0.dev0 → microsoft_agents_storage_cosmos-0.3.1}/microsoft_agents_storage_cosmos.egg-info/dependency_links.txt +0 -0
- {microsoft_agents_storage_cosmos-0.3.0.dev0 → microsoft_agents_storage_cosmos-0.3.1}/pyproject.toml +0 -0
- {microsoft_agents_storage_cosmos-0.3.0.dev0 → microsoft_agents_storage_cosmos-0.3.1}/setup.cfg +0 -0
- {microsoft_agents_storage_cosmos-0.3.0.dev0 → microsoft_agents_storage_cosmos-0.3.1}/setup.py +0 -0
{microsoft_agents_storage_cosmos-0.3.0.dev0 → microsoft_agents_storage_cosmos-0.3.1}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: microsoft-agents-storage-cosmos
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.1
|
|
4
4
|
Summary: A Cosmos DB storage library for Microsoft Agents
|
|
5
5
|
Author: Microsoft Corporation
|
|
6
6
|
Project-URL: Homepage, https://github.com/microsoft/Agents
|
|
@@ -8,7 +8,7 @@ Classifier: Programming Language :: Python :: 3
|
|
|
8
8
|
Classifier: License :: OSI Approved :: MIT License
|
|
9
9
|
Classifier: Operating System :: OS Independent
|
|
10
10
|
Requires-Python: >=3.9
|
|
11
|
-
Requires-Dist: microsoft-agents-hosting-core==0.3.
|
|
11
|
+
Requires-Dist: microsoft-agents-hosting-core==0.3.1
|
|
12
12
|
Requires-Dist: azure-core
|
|
13
13
|
Requires-Dist: azure-cosmos
|
|
14
14
|
Dynamic: requires-dist
|
|
@@ -17,9 +17,9 @@ from azure.cosmos.aio import (
|
|
|
17
17
|
import azure.cosmos.exceptions as cosmos_exceptions
|
|
18
18
|
from azure.cosmos.partition_key import NonePartitionKeyValue
|
|
19
19
|
|
|
20
|
-
from
|
|
21
|
-
from
|
|
22
|
-
from
|
|
20
|
+
from microsoft_agents.hosting.core.storage import AsyncStorageBase, StoreItem
|
|
21
|
+
from microsoft_agents.hosting.core.storage._type_aliases import JSON
|
|
22
|
+
from microsoft_agents.hosting.core.storage.error_handling import ignore_error
|
|
23
23
|
|
|
24
24
|
from .cosmos_db_storage_config import CosmosDBStorageConfig
|
|
25
25
|
from .key_ops import sanitize_key
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: microsoft-agents-storage-cosmos
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.1
|
|
4
4
|
Summary: A Cosmos DB storage library for Microsoft Agents
|
|
5
5
|
Author: Microsoft Corporation
|
|
6
6
|
Project-URL: Homepage, https://github.com/microsoft/Agents
|
|
@@ -8,7 +8,7 @@ Classifier: Programming Language :: Python :: 3
|
|
|
8
8
|
Classifier: License :: OSI Approved :: MIT License
|
|
9
9
|
Classifier: Operating System :: OS Independent
|
|
10
10
|
Requires-Python: >=3.9
|
|
11
|
-
Requires-Dist: microsoft-agents-hosting-core==0.3.
|
|
11
|
+
Requires-Dist: microsoft-agents-hosting-core==0.3.1
|
|
12
12
|
Requires-Dist: azure-core
|
|
13
13
|
Requires-Dist: azure-cosmos
|
|
14
14
|
Dynamic: requires-dist
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
pyproject.toml
|
|
2
2
|
setup.py
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
microsoft_agents/storage/cosmos/__init__.py
|
|
4
|
+
microsoft_agents/storage/cosmos/cosmos_db_storage.py
|
|
5
|
+
microsoft_agents/storage/cosmos/cosmos_db_storage_config.py
|
|
6
|
+
microsoft_agents/storage/cosmos/key_ops.py
|
|
7
7
|
microsoft_agents_storage_cosmos.egg-info/PKG-INFO
|
|
8
8
|
microsoft_agents_storage_cosmos.egg-info/SOURCES.txt
|
|
9
9
|
microsoft_agents_storage_cosmos.egg-info/dependency_links.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
microsoft_agents
|
|
@@ -10,10 +10,10 @@ from azure.cosmos import documents
|
|
|
10
10
|
from azure.cosmos.aio import CosmosClient
|
|
11
11
|
from azure.cosmos.exceptions import CosmosResourceNotFoundError
|
|
12
12
|
|
|
13
|
-
from
|
|
14
|
-
from
|
|
13
|
+
from microsoft_agents.storage.cosmos import CosmosDBStorage, CosmosDBStorageConfig
|
|
14
|
+
from microsoft_agents.storage.cosmos.key_ops import sanitize_key
|
|
15
15
|
|
|
16
|
-
from
|
|
16
|
+
from microsoft_agents.hosting.core.storage.storage_test_utils import (
|
|
17
17
|
QuickCRUDStorageTests,
|
|
18
18
|
MockStoreItem,
|
|
19
19
|
MockStoreItemB,
|
microsoft_agents_storage_cosmos-0.3.0.dev0/microsoft_agents_storage_cosmos.egg-info/top_level.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
microsoft
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{microsoft_agents_storage_cosmos-0.3.0.dev0 → microsoft_agents_storage_cosmos-0.3.1}/pyproject.toml
RENAMED
|
File without changes
|
{microsoft_agents_storage_cosmos-0.3.0.dev0 → microsoft_agents_storage_cosmos-0.3.1}/setup.cfg
RENAMED
|
File without changes
|
{microsoft_agents_storage_cosmos-0.3.0.dev0 → microsoft_agents_storage_cosmos-0.3.1}/setup.py
RENAMED
|
File without changes
|