19 lines
363 B
Python
19 lines
363 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
AIGC 统一入口
|
|
提供引擎注册、执行和管理功能
|
|
"""
|
|
|
|
from .engine_registry import EngineRegistry
|
|
from .engine_executor import EngineExecutor
|
|
from .engines.base import BaseAIGCEngine, EngineResult
|
|
|
|
__all__ = [
|
|
'EngineRegistry',
|
|
'EngineExecutor',
|
|
'BaseAIGCEngine',
|
|
'EngineResult',
|
|
]
|