NU-KIOSK-API / backend /mcp /__init__.py
Monish BV
Add kiosk-api: stripped backend for speech integration
c2b7a7b
raw
history blame contribute delete
341 Bytes
"""
Model Context Protocol-style planning utilities for the CS Kiosk.
This package exposes the action schema and LLM planner so the orchestrator
can remain planner-agnostic.
"""
from .actions import Action, PlannerContext
from .llm_planner import LLMActionPlanner
__all__ = [
"Action",
"PlannerContext",
"LLMActionPlanner",
]