mirror of
https://github.com/tiennm99/litellm.git
synced 2026-07-08 07:12:58 +00:00
a112ec5b02
* add separate health app * add new docs * refactor * fix colons * Update config_settings.md * refactor * docs * add unit test * added supervisord * remove app * add supervisor conf * Add markdown * add video to md * remove test * docs build failure * add to all docker files, change prod.md and add tests * change dockerfiles * remove extra file * remove extra file * remove extra file * change apt->apk * remove rdb file * add fixed file
12 lines
246 B
Bash
12 lines
246 B
Bash
#!/bin/sh
|
|
|
|
if [ "$SEPARATE_HEALTH_APP" = "1" ]; then
|
|
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 |