APRG commited on
Commit
0a071b9
·
verified ·
1 Parent(s): ee6d9a4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -81,6 +81,7 @@ def interactive_tools_node(state: OrderState) -> OrderState:
81
  tool_args = tool_call["args"]
82
 
83
  if tool_name == "wikipedia_search":
 
84
  page = wikipedia.page(tool_args.get("title"))
85
  response = page.content[:300]
86
 
 
81
  tool_args = tool_call["args"]
82
 
83
  if tool_name == "wikipedia_search":
84
+ print(str(tool_args))
85
  page = wikipedia.page(tool_args.get("title"))
86
  response = page.content[:300]
87