"""Suggested-question endpoint (drives the onboarding chips in the UI).""" from __future__ import annotations from fastapi import APIRouter from app.config import get_settings from app.schemas import SuggestionList router = APIRouter(tags=["chat"]) @router.get("/suggestions", response_model=SuggestionList) def suggestions() -> SuggestionList: return SuggestionList(suggestions=get_settings().suggestions)