ChIrish06 commited on
Commit
a1a9cfa
·
verified ·
1 Parent(s): 769a4cd

Update app.py

Browse files

Adding import for VisitWepageTool class

Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -11,6 +11,8 @@ import requests
11
  from bs4 import BeautifulSoup
12
  import json
13
 
 
 
14
  # Below is an example of a tool that does nothing. Amaze us with your creativity !
15
  @tool
16
  def my_custom_tool(arg1:str, arg2:int)-> str: #it's import to specify the return type
 
11
  from bs4 import BeautifulSoup
12
  import json
13
 
14
+ from visit_webpage import VisitWebpageTool
15
+
16
  # Below is an example of a tool that does nothing. Amaze us with your creativity !
17
  @tool
18
  def my_custom_tool(arg1:str, arg2:int)-> str: #it's import to specify the return type