Spaces:
Runtime error
Runtime error
File size: 529 Bytes
acd3ca5 8ac8a9e 630097d acd3ca5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
import requests
from bs4 import BeautifulSoup
from transformers.tools.base import Tool
TEXT_DOWNLOAD_DESCRIPTION = (
"This is a tool that downloads a file from a `url`. It takes the `url` as input, and returns the text"
" contained in the file."
)
class TextDownloadTool(Tool):
name = "text_downloader"
inputs= {"url": str}
output_type= str
description = TEXT_DOWNLOAD_DESCRIPTION
def __call__(self, url):
return BeautifulSoup(requests.get(url).text, features="html.parser").get_text()
|