mirror of
https://github.com/tiennm99/litellm.git
synced 2026-06-17 20:48:32 +00:00
14 lines
347 B
Bash
14 lines
347 B
Bash
#!/bin/sh
|
|
|
|
if [ "$SEPARATE_HEALTH_APP" = "1" ]; then
|
|
export LITELLM_ARGS="$@"
|
|
export SUPERVISORD_STOPWAITSECS="${SUPERVISORD_STOPWAITSECS:-3600}"
|
|
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 |