mirror of
https://github.com/Zippland/Bubbles.git
synced 2026-03-03 08:34:42 +08:00
refactor
This commit is contained in:
22
function_calls/services/__init__.py
Normal file
22
function_calls/services/__init__.py
Normal file
@@ -0,0 +1,22 @@
|
||||
"""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",
|
||||
]
|
||||
Reference in New Issue
Block a user