microsoft-agents-storage-cosmos 0.4.0.dev1__tar.gz → 0.4.0.dev4__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.4.0.dev1 → microsoft_agents_storage_cosmos-0.4.0.dev4}/PKG-INFO +2 -2
- {microsoft_agents_storage_cosmos-0.4.0.dev1 → microsoft_agents_storage_cosmos-0.4.0.dev4}/microsoft_agents_storage_cosmos.egg-info/PKG-INFO +2 -2
- microsoft_agents_storage_cosmos-0.4.0.dev4/microsoft_agents_storage_cosmos.egg-info/requires.txt +3 -0
- {microsoft_agents_storage_cosmos-0.4.0.dev1 → microsoft_agents_storage_cosmos-0.4.0.dev4}/tests/test_cosmos_db_storage.py +1 -1
- microsoft_agents_storage_cosmos-0.4.0.dev1/microsoft_agents_storage_cosmos.egg-info/requires.txt +0 -3
- {microsoft_agents_storage_cosmos-0.4.0.dev1 → microsoft_agents_storage_cosmos-0.4.0.dev4}/microsoft_agents/storage/cosmos/__init__.py +0 -0
- {microsoft_agents_storage_cosmos-0.4.0.dev1 → microsoft_agents_storage_cosmos-0.4.0.dev4}/microsoft_agents/storage/cosmos/cosmos_db_storage.py +0 -0
- {microsoft_agents_storage_cosmos-0.4.0.dev1 → microsoft_agents_storage_cosmos-0.4.0.dev4}/microsoft_agents/storage/cosmos/cosmos_db_storage_config.py +0 -0
- {microsoft_agents_storage_cosmos-0.4.0.dev1 → microsoft_agents_storage_cosmos-0.4.0.dev4}/microsoft_agents/storage/cosmos/key_ops.py +0 -0
- {microsoft_agents_storage_cosmos-0.4.0.dev1 → microsoft_agents_storage_cosmos-0.4.0.dev4}/microsoft_agents_storage_cosmos.egg-info/SOURCES.txt +0 -0
- {microsoft_agents_storage_cosmos-0.4.0.dev1 → microsoft_agents_storage_cosmos-0.4.0.dev4}/microsoft_agents_storage_cosmos.egg-info/dependency_links.txt +0 -0
- {microsoft_agents_storage_cosmos-0.4.0.dev1 → microsoft_agents_storage_cosmos-0.4.0.dev4}/microsoft_agents_storage_cosmos.egg-info/top_level.txt +0 -0
- {microsoft_agents_storage_cosmos-0.4.0.dev1 → microsoft_agents_storage_cosmos-0.4.0.dev4}/pyproject.toml +0 -0
- {microsoft_agents_storage_cosmos-0.4.0.dev1 → microsoft_agents_storage_cosmos-0.4.0.dev4}/setup.cfg +0 -0
- {microsoft_agents_storage_cosmos-0.4.0.dev1 → microsoft_agents_storage_cosmos-0.4.0.dev4}/setup.py +0 -0
- {microsoft_agents_storage_cosmos-0.4.0.dev1 → microsoft_agents_storage_cosmos-0.4.0.dev4}/tests/test_cosmos_db_config.py +0 -0
- {microsoft_agents_storage_cosmos-0.4.0.dev1 → microsoft_agents_storage_cosmos-0.4.0.dev4}/tests/test_key_ops.py +0 -0
{microsoft_agents_storage_cosmos-0.4.0.dev1 → microsoft_agents_storage_cosmos-0.4.0.dev4}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: microsoft-agents-storage-cosmos
|
|
3
|
-
Version: 0.4.0.
|
|
3
|
+
Version: 0.4.0.dev4
|
|
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.4.0.
|
|
11
|
+
Requires-Dist: microsoft-agents-hosting-core==0.4.0.dev4
|
|
12
12
|
Requires-Dist: azure-core
|
|
13
13
|
Requires-Dist: azure-cosmos
|
|
14
14
|
Dynamic: requires-dist
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: microsoft-agents-storage-cosmos
|
|
3
|
-
Version: 0.4.0.
|
|
3
|
+
Version: 0.4.0.dev4
|
|
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.4.0.
|
|
11
|
+
Requires-Dist: microsoft-agents-hosting-core==0.4.0.dev4
|
|
12
12
|
Requires-Dist: azure-core
|
|
13
13
|
Requires-Dist: azure-cosmos
|
|
14
14
|
Dynamic: requires-dist
|
|
@@ -13,7 +13,7 @@ from azure.cosmos.exceptions import CosmosResourceNotFoundError
|
|
|
13
13
|
from microsoft_agents.storage.cosmos import CosmosDBStorage, CosmosDBStorageConfig
|
|
14
14
|
from microsoft_agents.storage.cosmos.key_ops import sanitize_key
|
|
15
15
|
|
|
16
|
-
from microsoft_agents.hosting.core.storage.
|
|
16
|
+
from microsoft_agents.hosting.core.storage._storage_test_utils import (
|
|
17
17
|
QuickCRUDStorageTests,
|
|
18
18
|
MockStoreItem,
|
|
19
19
|
MockStoreItemB,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{microsoft_agents_storage_cosmos-0.4.0.dev1 → microsoft_agents_storage_cosmos-0.4.0.dev4}/setup.cfg
RENAMED
|
File without changes
|
{microsoft_agents_storage_cosmos-0.4.0.dev1 → microsoft_agents_storage_cosmos-0.4.0.dev4}/setup.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|