Rex-Omni / rex_omni /__init__.py
Mountchicken's picture
Upload 27 files
a5c4c58 verified
raw
history blame contribute delete
390 Bytes
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Rex Omni: A high-level wrapper for Qwen2.5-VL multimodal language model
"""
__version__ = "1.0.0"
__author__ = "Your Name"
__email__ = "[email protected]"
from .tasks import TaskType
from .utils import RexOmniVisualize
from .wrapper import RexOmniWrapper
__all__ = [
"RexOmniWrapper",
"TaskType",
"RexOmniVisualize",
]