mirror of
https://github.com/Zippland/Bubbles.git
synced 2026-01-31 06:19:44 +08:00
13 lines
325 B
Python
13 lines
325 B
Python
"""图像生成功能模块
|
|
|
|
包含以下功能:
|
|
- CogView: 智谱AI文生图
|
|
- AliyunImage: 阿里云文生图
|
|
- GeminiImage: 谷歌Gemini文生图
|
|
"""
|
|
|
|
from .img_cogview import CogView
|
|
from .img_aliyun_image import AliyunImage
|
|
from .img_gemini_image import GeminiImage
|
|
|
|
__all__ = ['CogView', 'AliyunImage', 'GeminiImage'] |