File size: 349 Bytes
7b0eff4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # envs/finqa_env/server/__init__.py
"""Server-side components for the FinQA environment."""
def __getattr__(name):
if name == "FinQAEnvironment":
from .finqa_environment import FinQAEnvironment
return FinQAEnvironment
raise AttributeError(f"module {__name__!r} has no attribute {name!r}")
__all__ = ["FinQAEnvironment"]
|