Skip to content

Commit 00ace00

Browse files
authoredNov 27, 2024··
Fix the issue with the tool being uncallable. (#606)
1 parent 72a8b12 commit 00ace00

File tree

3 files changed

+34
-7
lines changed

3 files changed

+34
-7
lines changed
 

‎modelscope_agent/agent.py

+20-3
Original file line numberDiff line numberDiff line change
@@ -193,11 +193,28 @@ def _register_tool(self,
193193
Returns:
194194
195195
"""
196-
tool_name = tool
196+
tool_name = None
197197
tool_cfg = {}
198+
199+
# # Check if the tool is a dictionary and extract the tool name and configuration from it.
198200
if isinstance(tool, dict):
199-
tool_name = next(iter(tool))
200-
tool_cfg = tool[tool_name]
201+
try:
202+
tool_name = next(iter(tool))
203+
tool_cfg = tool[tool_name]
204+
except StopIteration:
205+
# If the tool is an empty dictionary, proceed to register the next tool.
206+
print("Empty tool dictionary provided, skipping the registration of the current tool")
207+
return
208+
209+
# If the tool is a string, assign it directly to tool_name.
210+
elif isinstance(tool, str):
211+
tool_name = tool
212+
213+
# If the tool_name is empty, skip the registration of the current tool.
214+
if not tool_name:
215+
print("No tool name provided, skipping the registration of the current tool")
216+
return
217+
201218
if tool_name not in TOOL_REGISTRY and not self.use_tool_api:
202219
raise NotImplementedError
203220
if tool_name not in self.function_list:

‎modelscope_agent/tools/base.py

+9
Original file line numberDiff line numberDiff line change
@@ -335,6 +335,10 @@ def __init__(self,
335335
self.tenant_id = tenant_id
336336
self._register_tool()
337337

338+
if not self.tool_name:
339+
print("Skipping tool registration and status check because 'tool_name' is not defined or empty.")
340+
return # When tool_name is an empty string, skip registration and status check.
341+
338342
max_retry = 10
339343
while max_retry > 0:
340344
status = self._check_tool_status()
@@ -368,6 +372,11 @@ def parse_service_response(response):
368372

369373
def _register_tool(self):
370374
try:
375+
# Check if `tool_name` is defined and not empty.
376+
if not self.tool_name:
377+
print("Skipping tool registration because 'tool_name' is not defined or empty.")
378+
return # Return directly, skipping registration.
379+
371380
service_token = os.getenv('TOOL_MANAGER_AUTH', '')
372381
headers = {
373382
'Content-Type': 'application/json',

‎modelscope_agent/tools/utils/openapi_utils.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -189,13 +189,14 @@ def swagger_to_openapi(swagger_data):
189189

190190
def openapi_schema_convert(schema: dict, auth: dict = {}):
191191
config_data = {}
192-
host = schema.get('host', '')
192+
host = schema.get('host', '') if schema else '' # Check if schema is None
193+
193194
if host:
194-
schema = swagger_to_openapi(schema)
195+
schema = swagger_to_openapi(schema) if schema else {} # Call only if schema is not None
195196

196-
schema = jsonref.replace_refs(schema)
197+
schema = jsonref.replace_refs(schema) if schema else {} # Call only if schema is not None
197198

198-
servers = schema.get('servers', [])
199+
servers = schema.get('servers', []) if schema else [] # Check if schema is None
199200

200201
if servers:
201202
servers_url = servers[0].get('url')

0 commit comments

Comments
 (0)
Please sign in to comment.