sizzlebop's picture
Upload 35 files
94ecb74 verified
raw
history blame contribute delete
683 Bytes
"""
πŸŽ“ Course Creator AI - Intelligent Course Generation Agent
Transform any topic into a complete, structured mini-course with interactive learning materials.
Made with ❀️ by Pink Pixel
"Dream it, Pixel it" ✨
"""
__version__ = "1.0.0"
__author__ = "Pink Pixel"
__email__ = "[email protected]"
__description__ = "Course Creator AI is an intelligent agent that generates structured mini-courses from any topic, complete with interactive learning materials."
from .agents.simple_course_agent import SimpleCourseAgent
from .ui.gradio_app import create_coursecrafter_interface
__all__ = [
"SimpleCourseAgent",
"create_coursecrafter_interface"
]