mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-24 18:24:20 +00:00
* add dd trace to e2e docker run tests * update dd trace v * fix entrypoint * dd trace fixes * proxy_build_from_pip_tests * build python3.13 * use py 3.13 * fix build from pip * dd trace fix * proxy_build_from_pip_tests * bump build from pip
8 lines
No EOL
154 B
Bash
8 lines
No EOL
154 B
Bash
#!/bin/sh
|
|
|
|
if [ "$USE_DDTRACE" = "true" ]; then
|
|
export DD_TRACE_OPENAI_ENABLED="False"
|
|
exec ddtrace-run litellm "$@"
|
|
else
|
|
exec litellm "$@"
|
|
fi |