Spaces:
Runtime error
Runtime error
| """ | |
| DeepVision Prompt Builder - Core Engine | |
| This module contains the core functionality for analyzing images and videos, | |
| managing plugins, and generating structured JSON prompts. | |
| """ | |
| __version__ = "0.1.0" | |
| __author__ = "AI Dev Collective v9.0" | |
| from core.engine import AnalysisEngine | |
| from core.image_processor import ImageProcessor | |
| from core.video_processor import VideoProcessor | |
| from core.result_manager import ResultManager | |
| __all__ = [ | |
| "AnalysisEngine", | |
| "ImageProcessor", | |
| "VideoProcessor", | |
| "ResultManager", | |
| ] | |