2026-06-29 00:10:10 +02:00
|
|
|
"""Service layer package."""
|
2026-06-29 01:18:46 +02:00
|
|
|
|
|
|
|
|
from app.services.plugin_service import PluginService, get_plugin_service
|
2026-06-29 02:44:13 +02:00
|
|
|
from app.services.ai_copilot_service import (
|
|
|
|
|
process_query as copilot_process_query,
|
|
|
|
|
execute_action as copilot_execute_action,
|
|
|
|
|
get_history as copilot_get_history,
|
|
|
|
|
)
|
|
|
|
|
from app.services.workflow_service import (
|
|
|
|
|
create_workflow, list_workflows, get_workflow,
|
|
|
|
|
update_workflow, delete_workflow,
|
|
|
|
|
create_instance, list_instances, get_instance,
|
|
|
|
|
advance_instance, cancel_instance,
|
|
|
|
|
check_timeout, auto_reject_timeout,
|
|
|
|
|
find_workflows_for_event, start_instance_for_event,
|
|
|
|
|
)
|