gateway/modules/workflows/methods/methodAi/actions/__init__.py
2026-04-16 23:13:05 +02:00

26 lines
640 B
Python

# Copyright (c) 2025 Patrick Motsch
# All rights reserved.
"""Action modules for AI operations."""
# Export all actions
from .process import process
from .webResearch import webResearch
from .summarizeDocument import summarizeDocument
from .translateDocument import translateDocument
from .convertDocument import convertDocument
from .generateDocument import generateDocument
from .generateCode import generateCode
from .consolidate import consolidate
__all__ = [
'process',
'webResearch',
'summarizeDocument',
'translateDocument',
'convertDocument',
'generateDocument',
'generateCode',
'consolidate',
]