ChIrish06 commited on
Commit
c9c9d5c
·
verified ·
1 Parent(s): 198a844

Update app.py

Browse files

Had nonsense value being returned from function, updated.

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -30,7 +30,7 @@ def webpage_contents_get(url:str)-> str: #it's import to specify the return type
30
  """
31
  response = requests.get(url)
32
  html_content = response.text
33
- return webpage_contents_get
34
 
35
 
36
  @tool
 
30
  """
31
  response = requests.get(url)
32
  html_content = response.text
33
+ return html_content
34
 
35
 
36
  @tool