mistral-llm/old/entrypoint.sh

11 lines
272 B
Bash
Raw Normal View History

2026-02-23 15:01:45 +00:00
#!/usr/bin/env bash
set -euo pipefail
unset GGML_CUDA_FORCE_MMQ
echo ">> GGML_CUDA_FORCE_MMQ: (unset)"
echo ">> GGML_CUDA_FORCE_CUBLAS: ${GGML_CUDA_FORCE_CUBLAS:-<not set>}"
echo ">> LLAMA_LOG_LEVEL: ${LLAMA_LOG_LEVEL:-<not set>}"
exec python3 -m llama_cpp.server "$@"