Files
fulloch/utils/__init__.py
T
Liam PettigrewandClaude Opus 4.5 464d049433 init
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-23 17:06:44 +11:00

28 lines
645 B
Python

"""
Utilities package for Fulloch voice assistant.
Contains:
- intent_catch: Regex-based intent detection for fast command matching
- intents: Intent handler using the tool registry
- system_prompts: System prompts for AI models
"""
from .intent_catch import catchAll
from .intents import handle_intent, intent_handler
from .system_prompts import (
getIntentSystemPrompt,
getChatSystemPrompt,
getPlannerSystemPrompt,
getWebSummaryPrompt,
)
__all__ = [
"catchAll",
"handle_intent",
"intent_handler",
"getIntentSystemPrompt",
"getChatSystemPrompt",
"getPlannerSystemPrompt",
"getWebSummaryPrompt",
]