AxeH666/meta_RL_mod
0
1#!/bin/sh2set -eu3 4RUN_MODE_VALUE="${RUN_MODE:-serve}"5PORT_VALUE="${PORT:-7860}"6 7if [ "$RUN_MODE_VALUE" = "eval" ]; then8 exec python3 inference.py9fi10 11exec python3 -m uvicorn server.app:app --host 0.0.0.0 --port "$PORT_VALUE"12 