mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-14 23:21:35 +00:00
* introduce USE_DDTRACE=true * update dd tracer * update * bump dd trace * use og slim image * DD tracing * fix _init_dd_tracer
7 lines
No EOL
111 B
Bash
7 lines
No EOL
111 B
Bash
#!/bin/sh
|
|
|
|
if [ "$USE_DDTRACE" = "true" ]; then
|
|
exec ddtrace-run litellm "$@"
|
|
else
|
|
exec litellm "$@"
|
|
fi |