AkseliManninen commited on
Commit
4571f6c
·
verified ·
1 Parent(s): e34cd3c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -16,8 +16,9 @@ def my_custom_tool(country: str)-> str: #it's import to specify the return type
16
  country (str): The country for which to search information.
17
  """
18
  search = DuckSearch()
19
-
20
  result = search_tool.run(f"What is the polulation of {country}?")
 
21
  return result
22
 
23
  @tool
 
16
  country (str): The country for which to search information.
17
  """
18
  search = DuckSearch()
19
+
20
  result = search_tool.run(f"What is the polulation of {country}?")
21
+ print(result)
22
  return result
23
 
24
  @tool