mirror of
https://github.com/Nighthawk42/fulloch.git
synced 2026-08-30 09:52:25 +00:00
28 lines
645 B
Python
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",
|
|
]
|