File size: 529 Bytes
eb5a9e1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"""
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",
]