petkar commited on
Commit
320844b
·
verified ·
1 Parent(s): 7aabf2f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -32,6 +32,8 @@ def my_custom_tool(city1: str, city2: str) -> str:
32
  Returns:
33
  A string listing the top 5 sightseeing locations in each city.
34
  """
 
 
35
  # Search for top 5 sightseeing locations in city1
36
  results_city1 = search_model(f"top 5 sightseeing locations in {city1}").split("\n")
37
  # Search for top 5 sightseeing locations in city2
 
32
  Returns:
33
  A string listing the top 5 sightseeing locations in each city.
34
  """
35
+
36
+ print("1fff")
37
  # Search for top 5 sightseeing locations in city1
38
  results_city1 = search_model(f"top 5 sightseeing locations in {city1}").split("\n")
39
  # Search for top 5 sightseeing locations in city2