litellm/docker/prod_entrypoint.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
275 B
Bash
Raw Normal View History

#!/bin/sh
if [ "$SEPARATE_HEALTH_APP" = "1" ]; then
2025-07-23 05:10:23 +08:00
export LITELLM_ARGS="$@"
exec supervisord -c /etc/supervisord.conf
fi
if [ "$USE_DDTRACE" = "true" ]; then
export DD_TRACE_OPENAI_ENABLED="False"
exec ddtrace-run litellm "$@"
else
exec litellm "$@"
fi