attp-client 0.0.4__tar.gz → 0.0.5__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.
- {attp_client-0.0.4 → attp_client-0.0.5}/PKG-INFO +1 -1
- {attp_client-0.0.4 → attp_client-0.0.5}/pyproject.toml +1 -1
- {attp_client-0.0.4 → attp_client-0.0.5}/src/attp_client/catalog.py +2 -2
- {attp_client-0.0.4 → attp_client-0.0.5}/README.md +0 -0
- {attp_client-0.0.4 → attp_client-0.0.5}/src/attp_client/__init__.py +0 -0
- {attp_client-0.0.4 → attp_client-0.0.5}/src/attp_client/client.py +0 -0
- {attp_client-0.0.4 → attp_client-0.0.5}/src/attp_client/consts.py +0 -0
- {attp_client-0.0.4 → attp_client-0.0.5}/src/attp_client/errors/attp_exception.py +0 -0
- {attp_client-0.0.4 → attp_client-0.0.5}/src/attp_client/errors/correlated_rpc_exception.py +0 -0
- {attp_client-0.0.4 → attp_client-0.0.5}/src/attp_client/errors/dead_session.py +0 -0
- {attp_client-0.0.4 → attp_client-0.0.5}/src/attp_client/errors/not_found.py +0 -0
- {attp_client-0.0.4 → attp_client-0.0.5}/src/attp_client/errors/serialization_error.py +0 -0
- {attp_client-0.0.4 → attp_client-0.0.5}/src/attp_client/errors/unauthenticated_error.py +0 -0
- {attp_client-0.0.4 → attp_client-0.0.5}/src/attp_client/inference.py +0 -0
- {attp_client-0.0.4 → attp_client-0.0.5}/src/attp_client/interfaces/catalogs/catalog.py +0 -0
- {attp_client-0.0.4 → attp_client-0.0.5}/src/attp_client/interfaces/catalogs/tools/envelope.py +0 -0
- {attp_client-0.0.4 → attp_client-0.0.5}/src/attp_client/interfaces/error.py +0 -0
- {attp_client-0.0.4 → attp_client-0.0.5}/src/attp_client/interfaces/handshake/auth.py +0 -0
- {attp_client-0.0.4 → attp_client-0.0.5}/src/attp_client/interfaces/handshake/hello.py +0 -0
- {attp_client-0.0.4 → attp_client-0.0.5}/src/attp_client/interfaces/handshake/ready.py +0 -0
- {attp_client-0.0.4 → attp_client-0.0.5}/src/attp_client/interfaces/inference/enums/message_data_type.py +0 -0
- {attp_client-0.0.4 → attp_client-0.0.5}/src/attp_client/interfaces/inference/enums/message_emergency_type.py +0 -0
- {attp_client-0.0.4 → attp_client-0.0.5}/src/attp_client/interfaces/inference/enums/message_type.py +0 -0
- {attp_client-0.0.4 → attp_client-0.0.5}/src/attp_client/interfaces/inference/message.py +0 -0
- {attp_client-0.0.4 → attp_client-0.0.5}/src/attp_client/interfaces/inference/tool.py +0 -0
- {attp_client-0.0.4 → attp_client-0.0.5}/src/attp_client/interfaces/route_mappings.py +0 -0
- {attp_client-0.0.4 → attp_client-0.0.5}/src/attp_client/misc/fixed_basemodel.py +0 -0
- {attp_client-0.0.4 → attp_client-0.0.5}/src/attp_client/misc/serializable.py +0 -0
- {attp_client-0.0.4 → attp_client-0.0.5}/src/attp_client/router.py +0 -0
- {attp_client-0.0.4 → attp_client-0.0.5}/src/attp_client/session.py +0 -0
- {attp_client-0.0.4 → attp_client-0.0.5}/src/attp_client/tools.py +0 -0
- {attp_client-0.0.4 → attp_client-0.0.5}/src/attp_client/types/route_mapping.py +0 -0
- {attp_client-0.0.4 → attp_client-0.0.5}/src/attp_client/utils/context_awaiter.py +0 -0
- {attp_client-0.0.4 → attp_client-0.0.5}/src/attp_client/utils/route_mapper.py +0 -0
- {attp_client-0.0.4 → attp_client-0.0.5}/src/attp_client/utils/serializer.py +0 -0
@@ -96,7 +96,7 @@ class AttpCatalog:
|
|
96
96
|
self.tool_name_to_id_symlink[name] = str(assigned_id)
|
97
97
|
return assigned_id
|
98
98
|
|
99
|
-
async def
|
99
|
+
async def detach_tool(
|
100
100
|
self,
|
101
101
|
name: str
|
102
102
|
):
|
@@ -108,7 +108,7 @@ class AttpCatalog:
|
|
108
108
|
await self.tool_manager.unregister(self.catalog_name, tool_id)
|
109
109
|
return tool_id
|
110
110
|
|
111
|
-
async def
|
111
|
+
async def detach_all_tools(self):
|
112
112
|
for tool_id in list(self.attached_tools.keys()):
|
113
113
|
await self.tool_manager.unregister(self.catalog_name, tool_id)
|
114
114
|
del self.attached_tools[tool_id]
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{attp_client-0.0.4 → attp_client-0.0.5}/src/attp_client/interfaces/catalogs/tools/envelope.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{attp_client-0.0.4 → attp_client-0.0.5}/src/attp_client/interfaces/inference/enums/message_type.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|