Spaces:
Paused
Paused
File size: 22,224 Bytes
22eeb7e | 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 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 | # app/tool_agent.py
"""
π οΈ PENNY Tool Agent - Civic Data & Services Handler
Routes requests to civic data sources (events, resources, transit, etc.)
and integrates with real-time weather information.
MISSION: Connect residents to local civic services by intelligently
processing their requests and returning relevant, actionable information.
FEATURES:
- Real-time weather integration with outfit recommendations
- Event discovery with weather-aware suggestions
- Resource lookup (trash, transit, emergency services)
- City-specific data routing
- Graceful fallback for missing data
ENHANCEMENTS (Phase 1):
- β
Structured logging with performance tracking
- β
Enhanced error handling with user-friendly messages
- β
Type hints for all functions
- β
Health check integration
- β
Service availability tracking
- β
Integration with enhanced modules
- β
Penny's friendly voice throughout
"""
import logging
import time
from typing import Optional, Dict, Any
# --- ENHANCED MODULE IMPORTS ---
from app.logging_utils import log_interaction, sanitize_for_logging
# --- AGENT IMPORTS (with availability tracking) ---
try:
from app.weather_agent import (
get_weather_for_location,
weather_to_event_recommendations,
recommend_outfit,
format_weather_summary
)
WEATHER_AGENT_AVAILABLE = True
except ImportError as e:
logging.getLogger(__name__).warning(f"Weather agent not available: {e}")
WEATHER_AGENT_AVAILABLE = False
# --- UTILITY IMPORTS (with availability tracking) ---
try:
from app.location_utils import (
extract_city_name,
load_city_events,
load_city_resources,
get_city_coordinates
)
LOCATION_UTILS_AVAILABLE = True
except ImportError as e:
logging.getLogger(__name__).warning(f"Location utils not available: {e}")
LOCATION_UTILS_AVAILABLE = False
# --- LOGGING SETUP ---
logger = logging.getLogger(__name__)
# --- TRACKING COUNTERS ---
_tool_request_count = 0
_weather_request_count = 0
_event_request_count = 0
_resource_request_count = 0
# ============================================================
# MAIN TOOL REQUEST HANDLER (ENHANCED)
# ============================================================
async def handle_tool_request(
user_input: str,
role: str = "unknown",
lat: Optional[float] = None,
lon: Optional[float] = None
) -> Dict[str, Any]:
"""
π οΈ Handles tool-based actions for civic services.
Routes user requests to appropriate civic data sources and real-time
services, including weather, events, transit, trash, and emergency info.
Args:
user_input: User's request text
role: User's role (resident, official, etc.)
lat: Latitude coordinate (optional)
lon: Longitude coordinate (optional)
Returns:
Dictionary containing:
- tool: str (which tool was used)
- city: str (detected city name)
- response: str or dict (user-facing response)
- data: dict (optional, raw data)
- tenant_id: str (optional, standardized city identifier)
Example:
result = await handle_tool_request(
user_input="What's the weather in Atlanta?",
role="resident",
lat=33.7490,
lon=-84.3880
)
"""
global _tool_request_count
_tool_request_count += 1
start_time = time.time()
# Sanitize input for logging (PII protection)
safe_input = sanitize_for_logging(user_input)
logger.info(f"π οΈ Tool request #{_tool_request_count}: '{safe_input[:50]}...'")
try:
# Check if location utilities are available
if not LOCATION_UTILS_AVAILABLE:
logger.error("Location utilities not available")
return {
"tool": "error",
"response": (
"I'm having trouble accessing city data right now. "
"Try again in a moment! π"
),
"error": "Location utilities not loaded"
}
lowered = user_input.lower()
city_name = extract_city_name(user_input)
# Standardize tenant ID (e.g., "Atlanta" -> "atlanta_ga")
# TODO: Enhance city_name extraction to detect state
tenant_id = f"{city_name.lower().replace(' ', '_')}_ga"
logger.info(f"Detected city: {city_name} (tenant_id: {tenant_id})")
# Route to appropriate handler
result = None
# Weather queries
if any(keyword in lowered for keyword in ["weather", "forecast", "temperature", "rain", "sunny"]):
result = await _handle_weather_query(
user_input=user_input,
city_name=city_name,
tenant_id=tenant_id,
lat=lat,
lon=lon
)
# Event queries
elif any(keyword in lowered for keyword in ["events", "meetings", "city hall", "happening", "activities"]):
result = await _handle_events_query(
user_input=user_input,
city_name=city_name,
tenant_id=tenant_id,
lat=lat,
lon=lon
)
# Resource queries (trash, transit, emergency)
elif any(keyword in lowered for keyword in ["trash", "recycling", "garbage", "bus", "train", "schedule", "alert", "warning", "non emergency"]):
result = await _handle_resource_query(
user_input=user_input,
city_name=city_name,
tenant_id=tenant_id,
lowered=lowered
)
# Unknown/fallback
else:
result = _handle_unknown_query(city_name)
# Add metadata and log interaction
response_time = (time.time() - start_time) * 1000
result["response_time_ms"] = round(response_time, 2)
result["role"] = role
log_interaction(
tenant_id=tenant_id,
interaction_type="tool_request",
intent=result.get("tool", "unknown"),
response_time_ms=response_time,
success=result.get("error") is None,
metadata={
"city": city_name,
"tool": result.get("tool"),
"role": role,
"has_location": lat is not None and lon is not None
}
)
logger.info(
f"β
Tool request complete: {result.get('tool')} "
f"({response_time:.0f}ms)"
)
return result
except Exception as e:
response_time = (time.time() - start_time) * 1000
logger.error(f"β Tool agent error: {e}", exc_info=True)
log_interaction(
tenant_id="unknown",
interaction_type="tool_error",
intent="error",
response_time_ms=response_time,
success=False,
metadata={
"error": str(e),
"error_type": type(e).__name__
}
)
return {
"tool": "error",
"response": (
"I ran into trouble processing that request. "
"Could you try rephrasing? π"
),
"error": str(e),
"response_time_ms": round(response_time, 2)
}
# ============================================================
# WEATHER QUERY HANDLER (ENHANCED)
# ============================================================
async def _handle_weather_query(
user_input: str,
city_name: str,
tenant_id: str,
lat: Optional[float],
lon: Optional[float]
) -> Dict[str, Any]:
"""
π€οΈ Handles weather-related queries with outfit recommendations.
"""
global _weather_request_count
_weather_request_count += 1
logger.info(f"π€οΈ Weather query #{_weather_request_count} for {city_name}")
# Check weather agent availability
if not WEATHER_AGENT_AVAILABLE:
logger.warning("Weather agent not available")
return {
"tool": "weather",
"city": city_name,
"response": "Weather service isn't available right now. Try again soon! π€οΈ"
}
# Get coordinates if not provided
if lat is None or lon is None:
coords = get_city_coordinates(tenant_id)
if coords:
lat, lon = coords["lat"], coords["lon"]
logger.info(f"Using city coordinates: {lat}, {lon}")
if lat is None or lon is None:
return {
"tool": "weather",
"city": city_name,
"response": (
f"To get weather for {city_name}, I need location coordinates. "
f"Can you share your location? π"
)
}
try:
# Fetch weather data
weather = await get_weather_for_location(lat, lon)
# Get weather-based event recommendations
recommendations = weather_to_event_recommendations(weather)
# Get outfit recommendation
temp = weather.get("temperature", {}).get("value", 70)
phrase = weather.get("phrase", "Clear")
outfit = recommend_outfit(temp, phrase)
# Format weather summary
weather_summary = format_weather_summary(weather)
# Build user-friendly response
response_text = (
f"π€οΈ **Weather for {city_name}:**\n"
f"{weather_summary}\n\n"
f"π **What to wear:** {outfit}"
)
# Add event recommendations if available
if recommendations:
rec = recommendations[0] # Get top recommendation
response_text += f"\n\nπ
**Activity suggestion:** {rec['reason']}"
return {
"tool": "weather",
"city": city_name,
"tenant_id": tenant_id,
"response": response_text,
"data": {
"weather": weather,
"recommendations": recommendations,
"outfit": outfit
}
}
except Exception as e:
logger.error(f"Weather query error: {e}", exc_info=True)
return {
"tool": "weather",
"city": city_name,
"response": (
f"I couldn't get the weather for {city_name} right now. "
f"Try again in a moment! π€οΈ"
),
"error": str(e)
}
# ============================================================
# EVENTS QUERY HANDLER (ENHANCED)
# ============================================================
async def _handle_events_query(
user_input: str,
city_name: str,
tenant_id: str,
lat: Optional[float],
lon: Optional[float]
) -> Dict[str, Any]:
"""
π
Handles event discovery queries.
"""
global _event_request_count
_event_request_count += 1
logger.info(f"π
Event query #{_event_request_count} for {city_name}")
try:
# Load structured event data
event_data = load_city_events(tenant_id)
events = event_data.get("events", [])
num_events = len(events)
if num_events == 0:
return {
"tool": "civic_events",
"city": city_name,
"tenant_id": tenant_id,
"response": (
f"I don't have any upcoming events for {city_name} right now. "
f"Check back soon! π
"
)
}
# Get top event
top_event = events[0]
top_event_name = top_event.get("name", "Upcoming event")
# Build response
if num_events == 1:
response_text = (
f"π
**Upcoming event in {city_name}:**\n"
f"β’ {top_event_name}\n\n"
f"Check the full details in the attached data!"
)
else:
response_text = (
f"π
**Found {num_events} upcoming events in {city_name}!**\n"
f"Top event: {top_event_name}\n\n"
f"Check the full list in the attached data!"
)
return {
"tool": "civic_events",
"city": city_name,
"tenant_id": tenant_id,
"response": response_text,
"data": event_data
}
except FileNotFoundError:
logger.warning(f"Event data file not found for {tenant_id}")
return {
"tool": "civic_events",
"city": city_name,
"response": (
f"Event data for {city_name} isn't available yet. "
f"I'm still learning about events in your area! π
"
),
"error": "Event data file not found"
}
except Exception as e:
logger.error(f"Events query error: {e}", exc_info=True)
return {
"tool": "civic_events",
"city": city_name,
"response": (
f"I had trouble loading events for {city_name}. "
f"Try again soon! π
"
),
"error": str(e)
}
# ============================================================
# RESOURCE QUERY HANDLER (ENHANCED)
# ============================================================
async def _handle_resource_query(
user_input: str,
city_name: str,
tenant_id: str,
lowered: str
) -> Dict[str, Any]:
"""
β»οΈ Handles resource queries (trash, transit, emergency).
"""
global _resource_request_count
_resource_request_count += 1
logger.info(f"β»οΈ Resource query #{_resource_request_count} for {city_name}")
# Map keywords to resource types
resource_query_map = {
"trash": "trash_and_recycling",
"recycling": "trash_and_recycling",
"garbage": "trash_and_recycling",
"bus": "transit",
"train": "transit",
"schedule": "transit",
"alert": "emergency",
"warning": "emergency",
"non emergency": "emergency"
}
# Find matching resource type
resource_key = next(
(resource_query_map[key] for key in resource_query_map if key in lowered),
None
)
if not resource_key:
return {
"tool": "unknown",
"city": city_name,
"response": (
"I'm not sure which resource you're asking about. "
"Try asking about trash, transit, or emergency services! π¬"
)
}
try:
# Load structured resource data
resource_data = load_city_resources(tenant_id)
service_info = resource_data["services"].get(resource_key, {})
if not service_info:
return {
"tool": resource_key,
"city": city_name,
"response": (
f"I don't have {resource_key.replace('_', ' ')} information "
f"for {city_name} yet. Check the city's official website! ποΈ"
)
}
# Build resource-specific response
if resource_key == "trash_and_recycling":
pickup_days = service_info.get('pickup_days', 'Varies by address')
response_text = (
f"β»οΈ **Trash & Recycling for {city_name}:**\n"
f"Pickup days: {pickup_days}\n\n"
f"Check the official link for your specific schedule!"
)
elif resource_key == "transit":
provider = service_info.get('provider', 'The local transit authority')
response_text = (
f"π **Transit for {city_name}:**\n"
f"Provider: {provider}\n\n"
f"Use the provided links to find routes and schedules!"
)
elif resource_key == "emergency":
non_emergency = service_info.get('non_emergency_phone', 'N/A')
response_text = (
f"π¨ **Emergency Info for {city_name}:**\n"
f"Non-emergency: {non_emergency}\n\n"
f"**For life-threatening emergencies, always call 911.**"
)
else:
response_text = f"Information found for {resource_key.replace('_', ' ')}, but details aren't available yet."
return {
"tool": resource_key,
"city": city_name,
"tenant_id": tenant_id,
"response": response_text,
"data": service_info
}
except FileNotFoundError:
logger.warning(f"Resource data file not found for {tenant_id}")
return {
"tool": "resource_loader",
"city": city_name,
"response": (
f"Resource data for {city_name} isn't available yet. "
f"Check back soon! ποΈ"
),
"error": "Resource data file not found"
}
except Exception as e:
logger.error(f"Resource query error: {e}", exc_info=True)
return {
"tool": "resource_loader",
"city": city_name,
"response": (
f"I had trouble loading resource data for {city_name}. "
f"Try again soon! ποΈ"
),
"error": str(e)
}
# ============================================================
# UNKNOWN QUERY HANDLER
# ============================================================
def _handle_unknown_query(city_name: str) -> Dict[str, Any]:
"""
β Fallback for queries that don't match any tool.
"""
logger.info(f"β Unknown query for {city_name}")
return {
"tool": "unknown",
"city": city_name,
"response": (
"I'm not sure which civic service you're asking about. "
"Try asking about weather, events, trash, or transit! π¬"
)
}
# ============================================================
# HEALTH CHECK & DIAGNOSTICS
# ============================================================
def get_tool_agent_health() -> Dict[str, Any]:
"""
π Returns tool agent health status.
Used by the main application health check endpoint.
"""
return {
"status": "operational",
"service_availability": {
"weather_agent": WEATHER_AGENT_AVAILABLE,
"location_utils": LOCATION_UTILS_AVAILABLE
},
"statistics": {
"total_requests": _tool_request_count,
"weather_requests": _weather_request_count,
"event_requests": _event_request_count,
"resource_requests": _resource_request_count
},
"supported_queries": [
"weather",
"events",
"trash_and_recycling",
"transit",
"emergency"
]
}
# ============================================================
# TESTING
# ============================================================
if __name__ == "__main__":
"""π§ͺ Test tool agent functionality"""
import asyncio
print("=" * 60)
print("π§ͺ Testing Tool Agent")
print("=" * 60)
# Display service availability
print("\nπ Service Availability:")
print(f" Weather Agent: {'β
' if WEATHER_AGENT_AVAILABLE else 'β'}")
print(f" Location Utils: {'β
' if LOCATION_UTILS_AVAILABLE else 'β'}")
print("\n" + "=" * 60)
test_queries = [
{
"name": "Weather query",
"input": "What's the weather in Atlanta?",
"lat": 33.7490,
"lon": -84.3880
},
{
"name": "Events query",
"input": "Events in Atlanta",
"lat": None,
"lon": None
},
{
"name": "Trash query",
"input": "When is trash pickup?",
"lat": None,
"lon": None
}
]
async def run_tests():
for i, query in enumerate(test_queries, 1):
print(f"\n--- Test {i}: {query['name']} ---")
print(f"Query: {query['input']}")
try:
result = await handle_tool_request(
user_input=query["input"],
role="test_user",
lat=query["lat"],
lon=query["lon"]
)
print(f"Tool: {result.get('tool')}")
print(f"City: {result.get('city')}")
response = result.get('response')
if isinstance(response, str):
print(f"Response: {response[:150]}...")
else:
print(f"Response: [Dict with {len(response)} keys]")
if result.get('response_time_ms'):
print(f"Response time: {result['response_time_ms']:.0f}ms")
except Exception as e:
print(f"β Error: {e}")
asyncio.run(run_tests())
print("\n" + "=" * 60)
print("π Final Statistics:")
health = get_tool_agent_health()
for key, value in health["statistics"].items():
print(f" {key}: {value}")
print("\n" + "=" * 60)
print("β
Tests complete")
print("=" * 60) |