Spaces:
Sleeping
Sleeping
Update app.py
Browse filesTrying to include the import statement in the app.py code
app.py
CHANGED
|
@@ -13,6 +13,9 @@ import json
|
|
| 13 |
|
| 14 |
from tools.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
|
|
|
|
| 13 |
|
| 14 |
from tools.visit_webpage import VisitWebpageTool
|
| 15 |
|
| 16 |
+
# Trying to fix an error I was getting:
|
| 17 |
+
import re
|
| 18 |
+
|
| 19 |
# Below is an example of a tool that does nothing. Amaze us with your creativity !
|
| 20 |
@tool
|
| 21 |
def my_custom_tool(arg1:str, arg2:int)-> str: #it's import to specify the return type
|