mirror of
https://github.com/Zippland/Bubbles.git
synced 2026-01-19 01:21:15 +08:00
11 lines
252 B
Python
11 lines
252 B
Python
"""图像生成功能模块
|
|
|
|
包含以下功能:
|
|
- AliyunImage: 阿里云文生图
|
|
- GeminiImage: 谷歌Gemini文生图
|
|
"""
|
|
|
|
from .img_aliyun_image import AliyunImage
|
|
from .img_gemini_image import GeminiImage
|
|
|
|
__all__ = ['AliyunImage', 'GeminiImage'] |