mirror of
https://github.com/Zippland/Bubbles.git
synced 2026-01-19 09:41:17 +08:00
23 lines
619 B
Python
23 lines
619 B
Python
"""Service helpers for Function Call handlers."""
|
|
|
|
from .weather import get_weather_report
|
|
from .news import get_news_digest
|
|
from .reminder import create_reminder, list_reminders, delete_reminder
|
|
from .help import build_help_text
|
|
from .group_tools import summarize_messages, clear_group_messages
|
|
from .perplexity import run_perplexity
|
|
from .insult import build_insult
|
|
|
|
__all__ = [
|
|
"get_weather_report",
|
|
"get_news_digest",
|
|
"create_reminder",
|
|
"list_reminders",
|
|
"delete_reminder",
|
|
"build_help_text",
|
|
"summarize_messages",
|
|
"clear_group_messages",
|
|
"run_perplexity",
|
|
"build_insult",
|
|
]
|