sgur11 commited on
Commit
4d9596e
·
verified ·
1 Parent(s): 08d1415

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -16,7 +16,7 @@ def my_custom_tool(arg1:str, arg2:int)-> str: #it's import to specify the return
16
  arg1: Graduation course like B.C.A, B.Sc, B.B.A , M.B.B.S that students join after 12th
17
  arg2: State in India.
18
  """
19
- search = ("Find top 10 colleges offereing %s in %s" % arg1, arg2)
20
  content = DuckDuckGoSearchTool(search)
21
  return content
22
 
 
16
  arg1: Graduation course like B.C.A, B.Sc, B.B.A , M.B.B.S that students join after 12th
17
  arg2: State in India.
18
  """
19
+ search = ("Find top 10 colleges offereing %s in %s" % (arg1, arg2))
20
  content = DuckDuckGoSearchTool(search)
21
  return content
22