Spaces:
Sleeping
Sleeping
File size: 8,685 Bytes
5cf97cc a9bf696 4c5ed2a a9bf696 5cf97cc d483407 5cf97cc d483407 5cf97cc d483407 5cf97cc d483407 5cf97cc d483407 5cf97cc d483407 5cf97cc |
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 |
import gradio as gr
import joblib
import pandas as pd
import numpy as np
import re
import requests
from datetime import datetime
from geopy.geocoders import Nominatim
from geopy.distance import geodesic
# Cargar modelo y dataset
model = joblib.load("modelo_docks.pkl")
df_stations = pd.read_csv("Informacio_Estacions_Bicing_2025.csv")
geolocator = Nominatim(user_agent="bicing-agent")
from groq import Groq
client = Groq(api_key="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")
# LLM: llama-3.3-70b-versatile
def preguntar_al_usuario(pregunta):
response = client.chat.completions.create(
messages=[
{"role": "system", "content": "Eres un asistente de Bicing. Tu tarea es hacer una preguntal usuario y esperar su respuesta. No saludes a menos que te lo pida"},
{"role": "user", "content": f"Pregunta al usuario lo siguiente, puedes modificar el tono para hacerlo mas amigable y añadir ayudas adicionales sobre como introducir los datos: '{pregunta}'"}
],
model="llama-3.3-70b-versatile",
temperature=0.5,
max_completion_tokens=512,
top_p=1,
stream=False,
)
return response.choices[0].message.content.strip()
# Estaciones más cercanas
def get_nearest_stations(ubicacion, top_n=5):
loc = geolocator.geocode(f"{ubicacion}, Barcelona, Spain")
if not loc:
return pd.DataFrame()
user_coord = (loc.latitude, loc.longitude)
df_stations["distancia"] = df_stations.apply(
lambda row: geodesic(user_coord, (row["lat"], row["lon"])).meters,
axis=1
)
return df_stations.nsmallest(top_n, "distancia")[["station_id", "address", "lat", "lon"]]
# Tiempo (Open-Meteo)
def get_weather_forecast(lat, lon, year, month, day, hour):
fecha = f"{year}-{month:02d}-{day:02d}"
hora_str = f"{hour:02d}:00"
url = (
f"https://api.open-meteo.com/v1/forecast?"
f"latitude={lat}&longitude={lon}&hourly=temperature_2m,precipitation&timezone=Europe%2FMadrid"
f"&start_date={fecha}&end_date={fecha}"
)
r = requests.get(url)
if r.status_code != 200:
return None, None
data = r.json()
horas = data["hourly"]["time"]
temperaturas = data["hourly"]["temperature_2m"]
precipitaciones = data["hourly"]["precipitation"]
for i, h in enumerate(horas):
if h.endswith(hora_str):
return temperaturas[i], precipitaciones[i]
return None, None
# Predicción con el modelo
def predict_disponibilidad(context):
estaciones_cercanas = get_nearest_stations(context["ubicacion"])
if estaciones_cercanas.empty:
return {"error": "No se encontraron estaciones cercanas."}
resultados = []
for _, row in estaciones_cercanas.iterrows():
temp, precip = get_weather_forecast(
row["lat"], row["lon"], 2025,
context["month"], context["day"], context["hour"]
)
if temp is None:
continue
X = np.array([[
row["station_id"],
context["month"],
context["day"],
context["hour"],
0, 0, 0, 0, # ctx históricos por defecto
temp,
1.0 if precip > 0 else 0.0
]])
pred = model.predict(X)[0]
resultados.append({
"station_id": row["station_id"],
"address": row["address"],
"pred_pct": float(pred),
"temperature": round(temp, 1),
"precip": round(precip, 1)
})
if not resultados:
return {"error": "No se pudieron calcular predicciones meteorológicas."}
resultados_ordenados = sorted(resultados, key=lambda x: x["pred_pct"], reverse=True)
return {
"target_pct": context["target_pct"],
"candidatas": resultados_ordenados
}
# Preguntas al usuario
preguntas = [
("ubicacion", "INTRODUCE SALUDO y la pregunta ¿Dónde te gustaría coger la bici? (zona o dirección en Barcelona)"),
("month", "¿En qué mes planeas cogerla? (número 1-12)"),
("day", "¿Qué día del mes?"),
("hour", "¿A qué hora la necesitas? (0-23)?"),
("target_pct", "¿Qué porcentaje mínimo de bicicletas esperas encontrar disponibles? (0 a 100%)")
]
# Flujo de conversación
def chat(user_input, chat_history, current_step, user_context):
key, _ = preguntas[current_step]
if key in ["month", "day", "hour", "target_pct"]:
match = re.search(r"\d+(\.\d+)?", user_input)
if match:
value = float(match.group())
user_context[key] = value / 100 if key == "target_pct" else int(value)
else:
chat_history.append(("user", user_input))
chat_history.append(("assistant", "Introduce un número válido."))
return chat_history, current_step, user_context
else:
user_context[key] = user_input.strip()
chat_history.append(("user", user_input))
current_step += 1
if current_step < len(preguntas):
siguiente_pregunta = preguntar_al_usuario(preguntas[current_step][1])
chat_history.append(("assistant", siguiente_pregunta))
else:
resultado = predict_disponibilidad(user_context)
if "error" in resultado:
chat_history.append(("assistant", resultado["error"] + " Reiniciando conversación..."))
user_context = {
"ubicacion": None,
"month": None,
"day": None,
"hour": None,
"target_pct": None,
"temperature": None,
"lluvia": None
}
current_step = 0
chat_history.append(("assistant", preguntar_al_usuario(preguntas[0][1])))
return chat_history, current_step, user_context
else:
clima = resultado["candidatas"][0]
# Resumen del contexto
resumen_contexto = (
f"🗓️ Día: {user_context['day']:02d}/{user_context['month']:02d}/2025\n"
f"🕒 Hora: {user_context['hour']:02d}:00h\n"
f"📍 Ubicación: {user_context['ubicacion']}\n"
f"🎯 Porcentaje mínimo deseado de bicis: {int(user_context['target_pct'] * 100)}%"
)
# Mensaje principal
msg = (
f"📈 Predicción meteorológica:\n"
f"🌡️ Temperatura aprox.: {clima['temperature']}°C\n"
f"☔ Precipitación aprox.: {clima['precip']} mm\n\n"
f"{resumen_contexto}\n\n"
f"🚲 Estaciones ordenadas por disponibilidad:\n"
)
for r in resultado["candidatas"]:
emoji = "✅" if r["pred_pct"] >= resultado["target_pct"] else "⚠️"
msg += (
f"{emoji} '{r['address']}' (ID {r['station_id']}): "
f"{round(r['pred_pct']*100)}% disponibilidad\n"
)
chat_history.append(("assistant", msg.strip()))
# Generar resumen final con el LLM
resumen_llm = client.chat.completions.create(
messages=[
{"role": "system", "content": "Eres un asistente experto en movilidad urbana. Resume de forma clara y amigable si el usuario podrá encontrar bicis disponibles, y en qué estaciones, según los datos que se te dan."},
{"role": "user", "content": f"Aquí tienes el resultado del sistema:\n{msg.strip()}"}
],
model="llama-3.3-70b-versatile",
temperature=0.5,
max_completion_tokens=256
).choices[0].message.content.strip()
chat_history.append(("assistant", resumen_llm))
return chat_history, current_step, user_context
# Interfaz Gradio
with gr.Blocks() as demo:
chatbot = gr.Chatbot()
txt = gr.Textbox(placeholder="Escribe tu respuesta...", label="Tu mensaje")
state_chat = gr.State([])
state_step = gr.State(0)
state_context = gr.State({
"ubicacion": None,
"month": None,
"day": None,
"hour": None,
"target_pct": None,
"temperature": None,
"lluvia": None
})
def user_submit(message, chat_history, current_step, user_context):
return chat(message, chat_history, current_step, user_context)
txt.submit(user_submit, inputs=[txt, state_chat, state_step, state_context],
outputs=[chatbot, state_step, state_context])
# Primer mensaje
primer_pregunta = preguntar_al_usuario(preguntas[0][1])
state_chat.value = [("assistant", primer_pregunta)]
chatbot.value = state_chat.value
demo.launch()
|