14 lines
545 B
Python
14 lines
545 B
Python
# Copyright (c) 2025 Patrick Motsch
|
|
# All rights reserved.
|
|
"""
|
|
Workflow feature - handles workflow execution, scheduling, and chat playground operations.
|
|
|
|
Combines functionality from:
|
|
- automation: Automation workflow execution and scheduling
|
|
- chatPlayground: Chat playground workflow start/stop operations
|
|
"""
|
|
|
|
from .mainWorkflow import chatStart, chatStop, executeAutomation, syncAutomationEvents, createAutomationEventHandler
|
|
|
|
__all__ = ['chatStart', 'chatStop', 'executeAutomation', 'syncAutomationEvents', 'createAutomationEventHandler']
|
|
|