CoolFace
Apppublic

Anushka-stack-queues/FinBench

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
__init__.py19 linesDownload Raw Back to server
1# Copyright (c) Meta Platforms, Inc. and affiliates.2# All rights reserved.3#4# This source code is licensed under the BSD-style license found in the5# LICENSE file in the root directory of this source tree.6 7"""FinBench — Financial Advisor OpenEnv Environment."""8 9# FIX #6: removed `from .client import FinbenchEnv` — client.py lives in the project10#         root, not inside the server/ package. Importing it here caused a ModuleNotFoundError.11#         FinbenchEnv is correctly exported from the root __init__.py.12from .FinBench_environment import FinbenchEnvironment, TaskId13 14__all__ = [15    "FinbenchEnvironment",16    "TaskId",17]18 19