File size: 369 Bytes
53c10a4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
"""OraRL: oracle-augmented reinforcement learning for multimodal reasoning."""

from __future__ import annotations

from .resources import (
    available_configs,
    config_path,
    documentation_path,
    script_path,
)

__version__ = "0.1.0"
__all__ = [
    "__version__",
    "available_configs",
    "config_path",
    "documentation_path",
    "script_path",
]