File tree 3 files changed +34
-7
lines changed
3 files changed +34
-7
lines changed Original file line number Diff line number Diff line change @@ -193,11 +193,28 @@ def _register_tool(self,
193
193
Returns:
194
194
195
195
"""
196
- tool_name = tool
196
+ tool_name = None
197
197
tool_cfg = {}
198
+
199
+ # # Check if the tool is a dictionary and extract the tool name and configuration from it.
198
200
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
+
201
218
if tool_name not in TOOL_REGISTRY and not self .use_tool_api :
202
219
raise NotImplementedError
203
220
if tool_name not in self .function_list :
Original file line number Diff line number Diff line change @@ -335,6 +335,10 @@ def __init__(self,
335
335
self .tenant_id = tenant_id
336
336
self ._register_tool ()
337
337
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
+
338
342
max_retry = 10
339
343
while max_retry > 0 :
340
344
status = self ._check_tool_status ()
@@ -368,6 +372,11 @@ def parse_service_response(response):
368
372
369
373
def _register_tool (self ):
370
374
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
+
371
380
service_token = os .getenv ('TOOL_MANAGER_AUTH' , '' )
372
381
headers = {
373
382
'Content-Type' : 'application/json' ,
Original file line number Diff line number Diff line change @@ -189,13 +189,14 @@ def swagger_to_openapi(swagger_data):
189
189
190
190
def openapi_schema_convert (schema : dict , auth : dict = {}):
191
191
config_data = {}
192
- host = schema .get ('host' , '' )
192
+ host = schema .get ('host' , '' ) if schema else '' # Check if schema is None
193
+
193
194
if host :
194
- schema = swagger_to_openapi (schema )
195
+ schema = swagger_to_openapi (schema ) if schema else {} # Call only if schema is not None
195
196
196
- schema = jsonref .replace_refs (schema )
197
+ schema = jsonref .replace_refs (schema ) if schema else {} # Call only if schema is not None
197
198
198
- servers = schema .get ('servers' , [])
199
+ servers = schema .get ('servers' , []) if schema else [] # Check if schema is None
199
200
200
201
if servers :
201
202
servers_url = servers [0 ].get ('url' )
You can’t perform that action at this time.
0 commit comments