File size: 10,733 Bytes
066e3f7 5a04e4b 76a2630 066e3f7 46da57c 066e3f7 76a2630 066e3f7 25cdf54 fe712ed e4c43ab 8615165 e4c43ab 8615165 f1dead6 e4c43ab fe712ed 3362f90 2d007ea 16b3f53 5b72b63 2d007ea f91e3c1 140fc88 0dabf35 cdbc964 2d007ea fe712ed 3362f90 fe712ed 3362f90 fe712ed 3362f90 fe712ed 2d007ea fe712ed 2d007ea fe712ed 2d007ea fe712ed 2d007ea fe712ed 4b61fe3 d24ea05 4b61fe3 fe712ed 3403bfc fe712ed 2d007ea fe712ed | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 | import subprocess
def install_dependencies():
subprocess.check_call(["python", "-m", "pip", "install", "--upgrade", "pip"])
subprocess.check_call(["python", "-m", "pip", "install", "--upgrade", "huggingface_hub"])
subprocess.check_call(["python", "-m", "pip", "install", "--upgrade", "streamlit"])
subprocess.check_call(["python", "-m", "pip", "install", "--upgrade", "requests"])
# subprocess.check_call(["python", "-m", "pip", "install", "--upgrade", "json"])
# subprocess.check_call(["python", "-m", "pip", "install", "--upgrade", "os"])
# subprocess.check_call(["python", "-m", "pip", "install", "--upgrade", "subprocess"])
# other packages here
install_dependencies()
import streamlit as st
import requests
import json
import os
from huggingface_hub import InferenceClient
# ββ Page config ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
st.set_page_config(
page_title="Weather Forecast",
page_icon="π€οΈ",
layout="wide",
)
# ββ Custom CSS ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# with open('./style.css.txt', 'r') as file:
# csstext = file.read()
# #print(content)
# st.markdown(csstext, unsafe_allow_html=True)
def local_css(file_name):
with open(file_name) as f:
# st.markdown(f'<style>{f.read()}</style>', unsafe_allow_html=True)
st.markdown(f'{f.read()}', unsafe_allow_html=True)
# Call the function at the top of your app
# local_css("./style.css")
local_css("style.css")
st.title("RainyTrek")
# ββ WMO weather code β emoji + label βββββββββββββββββββββββββββββββββββββββββ
WMO_CODES = {
0: ("βοΈ", "Clear"),
1: ("π€οΈ", "Mostly Clear"),
2: ("β
", "Partly Cloudy"),
3: ("βοΈ", "Overcast"),
45: ("π«οΈ", "Foggy"),
48: ("π«οΈ", "Icy Fog"),
51: ("π¦οΈ", "Light Drizzle"),
53: ("π¦οΈ", "Drizzle"),
55: ("π§οΈ", "Heavy Drizzle"),
61: ("π§οΈ", "Light Rain"),
63: ("π§οΈ", "Rain"),
65: ("π§οΈ", "Heavy Rain"),
71: ("π¨οΈ", "Light Snow"),
73: ("βοΈ", "Snow"),
75: ("βοΈ", "Heavy Snow"),
77: ("π¨οΈ", "Snow Grains"),
80: ("π¦οΈ", "Rain Showers"),
81: ("π§οΈ", "Heavy Showers"),
82: ("βοΈ", "Violent Showers"),
85: ("π¨οΈ", "Snow Showers"),
86: ("π¨οΈ", "Heavy Snow Showers"),
95: ("βοΈ", "Thunderstorm"),
96: ("βοΈ", "Thunderstorm + Hail"),
99: ("βοΈ", "Thunderstorm + Heavy Hail"),
}
def wmo_info(code):
return WMO_CODES.get(code, ("π‘οΈ", "Unknown"))
# ββ Extract cities via HuggingFace LLM βββββββββββββββββββββββββββββββββββββββ
def extract_cities_with_llm(user_prompt: str) -> list[str]:
"""Use HF Inference API to extract city names from a natural-language prompt."""
client = InferenceClient(
# model="mistralai/Mistral-7B-Instruct-v0.3",
# model="mistralai/Mistral-7B-Instruct-v0.2",
# model="nvidia/Gemma-4-26B-A4B-NVFP4",
# model="TinyLlama/TinyLlama-1.1B-Chat-v1.0",
model="meta-llama/Llama-3.3-70B-Instruct",
# token=st.secrets.get("HF_TOKEN", None),
# token=st.secrets.get("rainytrek010526001read", None),
# token=st.secrets.get("API_KEY", None),
# token=os.getenv("API_KEY"),
token=os.getenv("rainytrek010526001read"),
provider="fireworks-ai"
)
system_prompt = (
"You are a helpful assistant that extracts city names from user messages. "
"Respond ONLY with a JSON array of city name strings. "
"Example: [\"Paris\", \"Tokyo\", \"New York\"]. "
"If no cities are mentioned, respond with []."
)
messages = [
{"role": "system", "content": system_prompt},
{"role": "user", "content": f"Extract all city names from this text:\n\n{user_prompt}"},
]
response = client.chat_completion(messages=messages, max_tokens=256, temperature=0.1)
raw = response.choices[0].message.content.strip()
# # strip markdown fences if present
# if raw.startswith("```"):
# raw = raw.split("```")[1]
# if raw.startswith("json"):
# raw = raw[4:]
# raw = raw.strip()
# cities = json.loads(raw)
## raw = [c.strip() for c in response["choices"][0]["message"]["content"].split("\"") if len(c.strip()) > 1]
cities = json.loads(raw)
return [c.strip() for c in cities if isinstance(c, str) and c.strip()]
# ββ Geocoding via Open-Meteo ββββββββββββββββββββββββββββββββββββββββββββββββββ
def geocode_city(city: str) -> dict | None:
url = "https://geocoding-api.open-meteo.com/v1/search"
r = requests.get(url, params={"name": city, "count": 1, "language": "en", "format": "json"}, timeout=10)
r.raise_for_status()
results = r.json().get("results")
if not results:
return None
loc = results[0]
return {
"name": loc.get("name", city),
"country": loc.get("country", ""),
"lat": loc["latitude"],
"lon": loc["longitude"],
"timezone": loc.get("timezone", "auto"),
}
# ββ Fetch 7-day forecast from Open-Meteo βββββββββββββββββββββββββββββββββββββ
def fetch_forecast(lat: float, lon: float, timezone: str) -> dict:
url = "https://api.open-meteo.com/v1/forecast"
params = {
"latitude": lat,
"longitude": lon,
"daily": [
"weathercode",
"temperature_2m_max",
"temperature_2m_min",
"precipitation_sum",
"windspeed_10m_max",
],
"current_weather": True,
"timezone": timezone,
"forecast_days": 7,
}
r = requests.get(url, params=params, timeout=10)
r.raise_for_status()
return r.json()
# ββ Render a city weather card ββββββββββββββββββββββββββββββββββββββββββββββββ
def render_city_card(loc: dict, forecast: dict):
daily = forecast["daily"]
current = forecast.get("current_weather", {})
cur_temp = current.get("temperature", "β")
cur_wind = current.get("windspeed", "β")
cur_code = current.get("weathercode", 0)
cur_icon, cur_label = wmo_info(cur_code)
days_html = ""
for i in range(len(daily["time"])):
date = daily["time"][i]
weekday = __import__("datetime").datetime.strptime(date, "%Y-%m-%d").strftime("%a")
code = daily["weathercode"][i]
icon, _ = wmo_info(code)
tmax = daily["temperature_2m_max"][i]
tmin = daily["temperature_2m_min"][i]
precip = daily["precipitation_sum"][i]
days_html += f"<div class=\"day-card\">"
days_html += f"<div class=\"day-label\">{weekday}<br>{date[5:]}</div>"
days_html += f"<div class=\"day-icon\">{icon}</div>"
days_html += f"<div class=\"day-temp-max\">{tmax}Β°</div>"
days_html += f"<div class=\"day-temp-min\">{tmin}Β°</div>"
days_html += f"<div class=\"day-precip\">π§ {precip}mm</div>"
days_html += f"</div>"
st.markdown(f"""
<div class="city-card">
<div class="city-name">{cur_icon} {loc['name']}, {loc['country']}</div>
<div class="city-coords">
{loc['lat']:.4f}Β°N {loc['lon']:.4f}Β°E
</div>
<div class="stat-row">
<div class="stat-pill">Now <span>{cur_temp}Β°C</span></div>
<div class="stat-pill">Wind <span>{cur_wind} km/h</span></div>
<div class="stat-pill">{cur_label}</div>
</div>
<div class="weather-grid">
{days_html}
</div>
</div>
""", unsafe_allow_html=True)
# ββ Main UI βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
st.markdown('<div class="main-title">π€ Weather Forecast</div>', unsafe_allow_html=True)
# st.markdown('<div class="subtitle">powered by Open-Meteo Β· Mistral 7B Β· Hugging Face</div>', unsafe_allow_html=True)
st.markdown('<div class="subtitle">powered by Open-Meteo Β· Llama 70B Β· Hugging Face</div>', unsafe_allow_html=True)
user_input = st.text_input(
label="Your question",
placeholder='e.g. "What\'s the weather like in Paris and Tokyo this week?"',
label_visibility="collapsed",
)
run = st.button("Get Forecast β", use_container_width=False)
if run and user_input.strip():
with st.spinner("Asking the LLM to find citiesβ¦"):
try:
cities = extract_cities_with_llm(user_input)
except Exception as e:
st.markdown(f'<div class="error-box">β οΈ LLM error: {e}</div>', unsafe_allow_html=True)
cities = []
if not cities:
st.markdown('<div class="error-box">what cities in particular should I look for?</div>', unsafe_allow_html=True)
else:
st.markdown(f'<div class="llm-box"><div class="llm-label">Cities detected by LLM</div>{" Β· ".join(cities)}</div>', unsafe_allow_html=True)
for city in cities:
with st.spinner(f"Fetching weather for {city}β¦"):
try:
loc = geocode_city(city)
if not loc:
st.markdown(f'<div class="error-box">Could not geocode "{city}"</div>', unsafe_allow_html=True)
continue
forecast = fetch_forecast(loc["lat"], loc["lon"], loc["timezone"])
render_city_card(loc, forecast)
except Exception as e:
st.markdown(f'<div class="error-box">β οΈ Error for {city}: {e}</div>', unsafe_allow_html=True)
elif run:
st.markdown('<div class="error-box">Please enter a question first.</div>', unsafe_allow_html=True)
st.markdown("---")
st.markdown(
'<div style="font-family: Space Mono, monospace; font-size: 0.65rem; color: #37474f; text-align:center;">'
'Weather data: Open-Meteo (open-source, no API key needed) Β· LLM: Mistral-7B-Instruct via Hugging Face Inference API'
'</div>',
unsafe_allow_html=True,
) |