2025-01-07 09:27:09 +08:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
2025-07-19 02:17:15 +08:00
|
|
|
if [ "$SEPARATE_HEALTH_APP" = "1" ]; then
|
2025-07-23 05:10:23 +08:00
|
|
|
export LITELLM_ARGS="$@"
|
2026-01-21 04:17:06 +08:00
|
|
|
export SUPERVISORD_STOPWAITSECS="${SUPERVISORD_STOPWAITSECS:-3600}"
|
2025-07-19 02:17:15 +08:00
|
|
|
exec supervisord -c /etc/supervisord.conf
|
|
|
|
|
fi
|
|
|
|
|
|
2025-01-07 09:27:09 +08:00
|
|
|
if [ "$USE_DDTRACE" = "true" ]; then
|
2025-01-17 14:03:09 +08:00
|
|
|
export DD_TRACE_OPENAI_ENABLED="False"
|
2025-01-07 09:27:09 +08:00
|
|
|
exec ddtrace-run litellm "$@"
|
|
|
|
|
else
|
|
|
|
|
exec litellm "$@"
|
|
|
|
|
fi
|