Spaces:
Sleeping
Sleeping
Commit ·
490ea78
1
Parent(s): c60061d
big text
Browse files
app.py
CHANGED
|
@@ -36,15 +36,16 @@ def scrape_and_summarize(prompt, source):
|
|
| 36 |
with open("file.txt", "w") as file:
|
| 37 |
file.write(html.unescape(source))
|
| 38 |
|
| 39 |
-
return {"prompt": prompt}, {"source": source}
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
|
|
|
| 48 |
|
| 49 |
|
| 50 |
# Gradio interface
|
|
|
|
| 36 |
with open("file.txt", "w") as file:
|
| 37 |
file.write(html.unescape(source))
|
| 38 |
|
| 39 |
+
# return {"prompt": prompt}, {"source": source}
|
| 40 |
+
smart_scraper_graph = SmartScraperGraph(
|
| 41 |
+
prompt=prompt,
|
| 42 |
+
source="file.txt",
|
| 43 |
+
# source=source,
|
| 44 |
+
config=graph_config
|
| 45 |
+
)
|
| 46 |
+
result = smart_scraper_graph.run()
|
| 47 |
+
exec_info = smart_scraper_graph.get_execution_info()
|
| 48 |
+
return result, prettify_exec_info(exec_info)
|
| 49 |
|
| 50 |
|
| 51 |
# Gradio interface
|
test.py
CHANGED
|
@@ -4,12 +4,11 @@ import html
|
|
| 4 |
with open("/home/sadid-dl/html.txt", "r") as file:
|
| 5 |
text = file.read()
|
| 6 |
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
text = html.escape(text)
|
| 15 |
|
|
|
|
| 4 |
with open("/home/sadid-dl/html.txt", "r") as file:
|
| 5 |
text = file.read()
|
| 6 |
|
| 7 |
+
client = Client("sadidul012/test-space")
|
| 8 |
+
result = client.predict(
|
| 9 |
+
prompt="List me all the press releases with their headlines and urls.",
|
| 10 |
+
source=html.escape(text),
|
| 11 |
+
api_name="/scrape_and_summarize"
|
| 12 |
+
)
|
| 13 |
+
print(result)
|
|
|
|
| 14 |
|