triage-flow / server /triage_flow_environment.py
StrongCapybara's picture
fix: replace stale server env copy with thin re-export of redesigned environment
f086b3c
Raw
History Blame Contribute Delete
621 Bytes
"""
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"]