veeiiinnnnn's picture
Add backend-python and Dockerfile
4ef118d
"""
Services for Qurio backend.
"""
from .stream_chat import StreamChatService, get_stream_chat_service
from .tools import (
AGENT_TOOLS,
ALL_TOOLS,
GLOBAL_TOOLS,
execute_tool_by_name,
get_tool_definitions_by_ids,
is_local_tool_name,
list_tools,
)
__all__ = [
# Stream chat
"StreamChatService",
"get_stream_chat_service",
# Tools
"AGENT_TOOLS",
"ALL_TOOLS",
"GLOBAL_TOOLS",
"execute_tool_by_name",
"get_tool_definitions_by_ids",
"is_local_tool_name",
"list_tools",
]