Salvatore Rossitto commited on
Commit
e98f9af
·
1 Parent(s): be2fbe5
Files changed (1) hide show
  1. RBotReloaded.py +12 -1
RBotReloaded.py CHANGED
@@ -313,8 +313,19 @@ AI:
313
  if f"{tool}:" in line.lower() or f"{tool}(" in line.lower():
314
  action_name = tool
315
  action_input = line[line.lower().find(tool)+len(tool):].strip().replace("query_params", "").strip().replace("()","")
316
- print(f"Matched unformatted action request. {action_name}:{action_input} from line: {line}")
 
 
 
317
  if (action_name and action_input): break
 
 
 
 
 
 
 
 
318
 
319
  # Call tool if found
320
  if action_name and action_input:
 
313
  if f"{tool}:" in line.lower() or f"{tool}(" in line.lower():
314
  action_name = tool
315
  action_input = line[line.lower().find(tool)+len(tool):].strip().replace("query_params", "").strip().replace("()","")
316
+ if (len(action_input) < 2):
317
+ action_input = None
318
+ else:
319
+ print(f"Matched unformatted action request. {action_name}:{action_input} from line: {line}")
320
  if (action_name and action_input): break
321
+ elif action_name and not action_input:
322
+ action_input = line[line.find(":") + 1:].replace("\"","")
323
+ if (len(action_input) < 2):
324
+ action_input = None
325
+ else:
326
+ print(f"Matched unformatted action request. {action_name}:{action_input} from line: {line}")
327
+ if (action_name and action_input): break
328
+
329
 
330
  # Call tool if found
331
  if action_name and action_input: