mirror of
https://github.com/tiennm99/litellm.git
synced 2026-06-17 18:48:36 +00:00
9 lines
155 B
Bash
9 lines
155 B
Bash
#!/bin/sh
|
|
|
|
if [ "$USE_DDTRACE" = "true" ]; then
|
|
export DD_TRACE_OPENAI_ENABLED="False"
|
|
exec ddtrace-run litellm "$@"
|
|
else
|
|
exec litellm "$@"
|
|
fi
|