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