mirror of
https://github.com/tiennm99/litellm.git
synced 2026-07-13 15:07:47 +00:00
6125ba1e2b
* introduce USE_DDTRACE=true * update dd tracer * update * bump dd trace * use og slim image * DD tracing * fix _init_dd_tracer
7 lines
111 B
Bash
7 lines
111 B
Bash
#!/bin/sh
|
|
|
|
if [ "$USE_DDTRACE" = "true" ]; then
|
|
exec ddtrace-run litellm "$@"
|
|
else
|
|
exec litellm "$@"
|
|
fi |