#!/bin/bash # Run the Model Inspector server with the correct Python cd "$(dirname "$0")" # Use python3 from pyenv (not system uvicorn which uses Python 3.9) exec python3 -m uvicorn main:app --host 0.0.0.0 --port 7860 "$@"