| """ | |
| π 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__ = "admin@pinkpixel.dev" | |
| __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" | |
| ] |