Spaces:
Runtime error
Runtime error
Update app.py
Browse filesJust the weather
app.py
CHANGED
@@ -7,97 +7,6 @@ from tools.final_answer import FinalAnswerTool
|
|
7 |
|
8 |
from Gradio_UI import GradioUI
|
9 |
|
10 |
-
@tool
|
11 |
-
def get_bbc_headline(section: str = "news") -> str:
|
12 |
-
"""Extracts the main headline from BBC website sections.
|
13 |
-
|
14 |
-
Args:
|
15 |
-
section: BBC section to check - 'news', 'sport', 'business', 'technology'
|
16 |
-
"""
|
17 |
-
import requests
|
18 |
-
from bs4 import BeautifulSoup
|
19 |
-
import time
|
20 |
-
|
21 |
-
# Map sections to URLs
|
22 |
-
bbc_urls = {
|
23 |
-
"news": "https://www.bbc.co.uk/news",
|
24 |
-
"sport": "https://www.bbc.co.uk/sport",
|
25 |
-
"business": "https://www.bbc.co.uk/news/business",
|
26 |
-
"technology": "https://www.bbc.co.uk/news/technology",
|
27 |
-
"world": "https://www.bbc.co.uk/news/world"
|
28 |
-
}
|
29 |
-
|
30 |
-
if section not in bbc_urls:
|
31 |
-
return f"Invalid section. Available: {', '.join(bbc_urls.keys())}"
|
32 |
-
|
33 |
-
url = bbc_urls[section]
|
34 |
-
|
35 |
-
headers = {
|
36 |
-
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',
|
37 |
-
'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
|
38 |
-
'Accept-Language': 'en-GB,en;q=0.5',
|
39 |
-
'Cache-Control': 'no-cache'
|
40 |
-
}
|
41 |
-
|
42 |
-
try:
|
43 |
-
response = requests.get(url, headers=headers, timeout=10)
|
44 |
-
response.raise_for_status()
|
45 |
-
|
46 |
-
soup = BeautifulSoup(response.content, 'html.parser')
|
47 |
-
|
48 |
-
# BBC headline selectors (they change frequently, so multiple fallbacks)
|
49 |
-
headline_selectors = [
|
50 |
-
'h1[data-testid="headline"]', # Current BBC format
|
51 |
-
'h1.gs-u-mt0', # Alternative format
|
52 |
-
'.media__title', # Story format
|
53 |
-
'h1', # Generic fallback
|
54 |
-
'.gs-c-promo-heading__title' # Promo heading
|
55 |
-
]
|
56 |
-
|
57 |
-
main_headline = None
|
58 |
-
|
59 |
-
# Try each selector until we find a headline
|
60 |
-
for selector in headline_selectors:
|
61 |
-
headlines = soup.select(selector)
|
62 |
-
if headlines:
|
63 |
-
# Get the first meaningful headline
|
64 |
-
for headline in headlines:
|
65 |
-
text = headline.get_text().strip()
|
66 |
-
if len(text) > 10: # Filter out short/empty headlines
|
67 |
-
main_headline = text
|
68 |
-
break
|
69 |
-
if main_headline:
|
70 |
-
break
|
71 |
-
|
72 |
-
if main_headline:
|
73 |
-
# Get timestamp for context
|
74 |
-
timestamp = time.strftime("%Y-%m-%d %H:%M:%S UTC")
|
75 |
-
return f"BBC {section.title()} - Main Headline ({timestamp}):\n{main_headline}"
|
76 |
-
else:
|
77 |
-
return f"Could not extract headline from BBC {section} section. Site structure may have changed."
|
78 |
-
|
79 |
-
except requests.exceptions.RequestException as e:
|
80 |
-
return f"Error accessing BBC {section}: {str(e)}"
|
81 |
-
except Exception as e:
|
82 |
-
return f"Error parsing BBC {section}: {str(e)}"
|
83 |
-
|
84 |
-
# Test function to validate the tool works
|
85 |
-
def test_bbc_headline_tool():
|
86 |
-
"""Test the BBC headline extraction on multiple sections"""
|
87 |
-
sections = ["news", "sport", "business"]
|
88 |
-
|
89 |
-
print("🔍 Testing BBC Headline Extraction")
|
90 |
-
print("=" * 40)
|
91 |
-
|
92 |
-
for section in sections:
|
93 |
-
print(f"\n📰 Testing {section.upper()} section...")
|
94 |
-
result = get_bbc_headline(section)
|
95 |
-
print(f"Result: {result[:100]}...")
|
96 |
-
|
97 |
-
print("\n✅ Test completed")
|
98 |
-
|
99 |
-
if __name__ == "__main__":
|
100 |
-
test_bbc_headline_tool()
|
101 |
|
102 |
@tool
|
103 |
def get_current_time_in_timezone(timezone: str) -> str:
|
|
|
7 |
|
8 |
from Gradio_UI import GradioUI
|
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
|
11 |
@tool
|
12 |
def get_current_time_in_timezone(timezone: str) -> str:
|