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

Update app.py

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