Spaces:
Running
Running
Update app.py
Browse filesHad nonsense value being returned from function, updated.
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
|
34 |
|
35 |
|
36 |
@tool
|
|
|
30 |
"""
|
31 |
response = requests.get(url)
|
32 |
html_content = response.text
|
33 |
+
return html_content
|
34 |
|
35 |
|
36 |
@tool
|