Spaces:
Running
Running
Update app.py
Browse filesAdding import for VisitWepageTool class
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
|