""" Module: triage_flow_environment.py Purpose: Re-export TriageEnvironment for the server module. Part of: Medical Triage Assistant — OpenEnv Round 1 This file exists so that `server/app.py` can import TriageEnvironment from `server.triage_flow_environment` in the Docker container context. The actual implementation lives in `triage_flow/environment.py`. """ import sys import os # Add parent directory to path so we can import from project root sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) from triage_flow.environment import TriageEnvironment __all__ = ["TriageEnvironment"]