12 lines
486 B
Python
12 lines
486 B
Python
"""
|
|
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']
|
|
|