chansung's picture
Upload folder using huggingface_hub
155d75d verified
raw
history blame contribute delete
324 Bytes
"""
Core application logic and AI integration.
This module contains the main generator class and knowledge base
for the Auto Diffusers application.
"""
from .generator import AutoDiffusersGenerator
from .knowledge_base import get_optimization_guide
__all__ = [
"AutoDiffusersGenerator",
"get_optimization_guide"
]