File size: 6,903 Bytes
8b96826 | 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 | """Saarthi AI β FastAPI entry point.
Run: uvicorn main:app --reload
"""
import json
import logging
from datetime import datetime, timedelta
from pathlib import Path
from zoneinfo import ZoneInfo
from fastapi import FastAPI, HTTPException, Query, Request
from fastapi.responses import JSONResponse, StreamingResponse
from fastapi.staticfiles import StaticFiles
from fastapi.templating import Jinja2Templates
from pydantic import BaseModel
from app import config, netutil
from app.agents import orchestrator
from app.providers import llm
from app.providers.llm import LLMUnavailable
from app.tools import geocode
logging.basicConfig(
level=logging.INFO,
format="%(asctime)s %(levelname)-7s %(name)s β %(message)s",
datefmt="%H:%M:%S",
)
logger = logging.getLogger("saarthi.api")
BASE_DIR = Path(__file__).resolve().parent
TZ = ZoneInfo(config.TIMEZONE)
app = FastAPI(title="Saarthi AI", description="Proactive commute planning for Lucknow")
app.mount("/static", StaticFiles(directory=str(BASE_DIR / "static")), name="static")
templates = Jinja2Templates(directory=str(BASE_DIR / "templates"))
@app.exception_handler(Exception)
async def unhandled_exception_handler(request: Request, exc: Exception):
"""Last line of defense: any unexpected bug becomes a clean JSON 500
with no secrets, instead of a stack trace in the user's face."""
logger.exception("Unhandled error on %s: %s", request.url.path, netutil.scrub_secrets(exc))
return JSONResponse(
status_code=500,
content={"detail": f"Something went wrong on our side: {netutil.friendly_error(exc)}"},
)
@app.get("/")
def index(request: Request):
return templates.TemplateResponse(
request, "index.html", {"llm_available": llm.available()}
)
@app.get("/api/autocomplete")
def autocomplete(q: str = Query(..., min_length=2)):
# Suggestions are a convenience β any failure is just an empty dropdown.
try:
return {"suggestions": geocode.autocomplete_place(q)}
except Exception as error:
logger.warning("Autocomplete failed for %r: %s", q, netutil.scrub_secrets(error))
return {"suggestions": []}
def _sse_error(message):
"""A single-error SSE stream for invalid input β the frontend shows it
in the normal error box instead of a broken connection."""
def stream():
yield f"data: {json.dumps({'type': 'error', 'message': message})}\n\n"
yield "data: {\"type\": \"done\"}\n\n"
return StreamingResponse(stream(), media_type="text/event-stream",
headers={"Cache-Control": "no-cache"})
@app.get("/api/plan/stream")
def plan_stream(
from_place: str = Query(..., alias="from", min_length=2),
to_place: str = Query(..., alias="to", min_length=2),
arrive_by: str = Query(..., description="ISO datetime, e.g. 2026-06-12T09:30"),
mode: str = Query("car"),
from_lat: float = Query(None),
from_lon: float = Query(None),
to_lat: float = Query(None),
to_lon: float = Query(None),
):
if mode not in ("car", "bus", "truck", "taxi", "motorcycle"):
raise HTTPException(status_code=422, detail="Invalid travel mode")
# --- validate the deadline up front with friendly messages -------------
try:
deadline = datetime.fromisoformat(arrive_by)
except ValueError:
return _sse_error("That arrival time looks invalid β please use the date-time picker.")
if deadline.tzinfo is None:
deadline = deadline.replace(tzinfo=TZ)
now = datetime.now(TZ)
if deadline <= now:
return _sse_error("Your arrival deadline is in the past β pick a future time.")
if deadline > now + timedelta(days=7):
return _sse_error("That's more than a week away β forecasts aren't reliable that far out. Pick a closer date.")
origin_coords = (from_lat, from_lon) if from_lat is not None and from_lon is not None else None
dest_coords = (to_lat, to_lon) if to_lat is not None and to_lon is not None else None
def event_stream():
try:
for event in orchestrator.run_plan(
from_place, to_place, arrive_by, mode,
origin_coords=origin_coords, dest_coords=dest_coords,
):
yield f"data: {json.dumps(event, default=str)}\n\n"
except Exception as error: # never leave the browser hanging
logger.exception("Plan stream crashed: %s", netutil.scrub_secrets(error))
payload = {"type": "error", "message": netutil.friendly_error(error)}
yield f"data: {json.dumps(payload)}\n\n"
yield "data: {\"type\": \"done\"}\n\n"
return StreamingResponse(
event_stream(),
media_type="text/event-stream",
headers={"Cache-Control": "no-cache", "X-Accel-Buffering": "no"},
)
@app.get("/api/ask/stream")
def ask_stream(
question: str = Query(..., min_length=2, max_length=600),
history: str = Query("[]", description="JSON list of prior chat turns"),
):
if not llm.available():
raise HTTPException(
status_code=503,
detail="No LLM configured. Add GEMINI_API_KEY or GROQ_API_KEY to .env",
)
try:
history_list = json.loads(history)
if not isinstance(history_list, list):
history_list = []
except json.JSONDecodeError:
history_list = []
def event_stream():
try:
for event in orchestrator.agent_ask_stream(question, history_list):
yield f"data: {json.dumps(event, default=str)}\n\n"
except Exception as error:
logger.exception("Ask stream crashed: %s", netutil.scrub_secrets(error))
payload = {"type": "error", "message": netutil.friendly_error(error)}
yield f"data: {json.dumps(payload)}\n\n"
yield "data: {\"type\": \"done\"}\n\n"
return StreamingResponse(
event_stream(),
media_type="text/event-stream",
headers={"Cache-Control": "no-cache", "X-Accel-Buffering": "no"},
)
class AskRequest(BaseModel):
question: str
@app.post("/api/ask")
def ask(body: AskRequest):
if not llm.available():
raise HTTPException(
status_code=503,
detail="No LLM configured. Add GEMINI_API_KEY or GROQ_API_KEY to .env",
)
if not body.question.strip():
raise HTTPException(status_code=422, detail="Question is empty")
try:
return orchestrator.agent_ask(body.question)
except LLMUnavailable as error:
raise HTTPException(status_code=503, detail=netutil.friendly_error(error))
except Exception as error:
logger.exception("Ask agent crashed: %s", netutil.scrub_secrets(error))
raise HTTPException(status_code=500, detail=netutil.friendly_error(error))
@app.get("/api/health")
def health():
return {"status": "ok", "llm_available": llm.available()}
|