mirror of
https://github.com/whit3rabbit/anyllm-proxy.git
synced 2026-09-21 16:00:49 +00:00
Adds multi-arch Docker build with docker-compose, GitHub Actions CI workflow, Gemini native input parsing, batch engine SQLite/file/webhook refactors, and Bedrock streaming fixes. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
11 lines
293 B
Bash
Executable File
11 lines
293 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
# Translate WEBUI=1 or ADMIN=1 into the --webui CLI flag so Docker users
|
|
# can enable the admin UI via environment variables without overriding CMD.
|
|
if [ "${WEBUI:-0}" = "1" ] || [ "${ADMIN:-0}" = "1" ]; then
|
|
set -- --webui "$@"
|
|
fi
|
|
|
|
exec /usr/local/bin/anyllm_proxy "$@"
|