ChIrish06 commited on
Commit
963ee42
·
verified ·
1 Parent(s): 751d16f

Update app.py

Browse files

Trying to include the import statement in the app.py code

Files changed (1) hide show
  1. app.py +3 -0
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