Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -4,9 +4,28 @@ import requests
|
|
4 |
import pytz
|
5 |
import yaml
|
6 |
from tools.final_answer import FinalAnswerTool
|
|
|
|
|
|
|
7 |
|
8 |
from Gradio_UI import GradioUI
|
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
# Below is an example of a tool that does nothing. Amaze us with your creativity !
|
11 |
@tool
|
12 |
def my_custom_tool(arg1:str, arg2:int)-> str: #it's import to specify the return type
|
@@ -30,21 +49,36 @@ def duckduck_tool(query: str, num_results: int = 5) -> str:
|
|
30 |
Returns:
|
31 |
A string summarizing the latest information and webpage content related to the query.
|
32 |
"""
|
33 |
-
# Perform
|
34 |
-
|
|
|
|
|
35 |
|
36 |
-
# Initialize an empty string to collect webpage content
|
37 |
combined_content = ""
|
38 |
|
39 |
-
#
|
40 |
-
for result in
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
|
47 |
-
|
|
|
|
|
48 |
|
49 |
@tool
|
50 |
def get_current_time_in_timezone(timezone: str) -> str:
|
|
|
4 |
import pytz
|
5 |
import yaml
|
6 |
from tools.final_answer import FinalAnswerTool
|
7 |
+
from bs4 import BeautifulSoup
|
8 |
+
from duckduckgo_search import ddg
|
9 |
+
import re
|
10 |
|
11 |
from Gradio_UI import GradioUI
|
12 |
|
13 |
+
def generate_summary(text: str, num_sentences: int = 5) -> str:
|
14 |
+
"""
|
15 |
+
A simple summarization function that extracts the first few sentences from the text.
|
16 |
+
|
17 |
+
Args:
|
18 |
+
text: The full text to summarize.
|
19 |
+
num_sentences: The number of sentences to include in the summary.
|
20 |
+
|
21 |
+
Returns:
|
22 |
+
A summary composed of the first few sentences.
|
23 |
+
"""
|
24 |
+
# Split text into sentences based on punctuation
|
25 |
+
sentences = re.split(r'(?<=[.!?])\s+', text)
|
26 |
+
summary = " ".join(sentences[:num_sentences])
|
27 |
+
return summary
|
28 |
+
|
29 |
# Below is an example of a tool that does nothing. Amaze us with your creativity !
|
30 |
@tool
|
31 |
def my_custom_tool(arg1:str, arg2:int)-> str: #it's import to specify the return type
|
|
|
49 |
Returns:
|
50 |
A string summarizing the latest information and webpage content related to the query.
|
51 |
"""
|
52 |
+
# Perform DuckDuckGo search
|
53 |
+
results = ddg(query, max_results=num_results)
|
54 |
+
if not results:
|
55 |
+
return "No search results found."
|
56 |
|
|
|
57 |
combined_content = ""
|
58 |
|
59 |
+
# Iterate over search results to fetch content
|
60 |
+
for result in results:
|
61 |
+
url = result.get("href") or result.get("url")
|
62 |
+
if not url:
|
63 |
+
continue
|
64 |
+
try:
|
65 |
+
response = requests.get(url, timeout=5)
|
66 |
+
if response.status_code == 200:
|
67 |
+
soup = BeautifulSoup(response.text, "html.parser")
|
68 |
+
# Extract text from paragraph tags
|
69 |
+
paragraphs = soup.find_all("p")
|
70 |
+
page_text = " ".join(p.get_text() for p in paragraphs)
|
71 |
+
combined_content += page_text + "\n"
|
72 |
+
except Exception:
|
73 |
+
# Skip URLs that cause errors
|
74 |
+
continue
|
75 |
+
|
76 |
+
if not combined_content.strip():
|
77 |
+
return "No content could be retrieved from the search results."
|
78 |
|
79 |
+
# Generate a summary using our custom summarization function
|
80 |
+
summary = generate_summary(combined_content, num_sentences=5)
|
81 |
+
return summary
|
82 |
|
83 |
@tool
|
84 |
def get_current_time_in_timezone(timezone: str) -> str:
|