5 lines
147 B
Bash
Executable File
5 lines
147 B
Bash
Executable File
#!/bin/sh
|
|
/usr/local/bin/litellm --config /etc/claude-dev/litellm.yaml --port 4008 --host 0.0.0.0 > /tmp/litellm.log 2>&1 &
|
|
sleep 2
|
|
exec bash "$@"
|