-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathentrypoint.sh
executable file
·34 lines (29 loc) · 1014 Bytes
/
entrypoint.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env bash
# Function to check environment variables
check_env_var() {
var_name="$1"
if [ -z "$(eval echo \$$var_name)" ]; then
echo "Error: Environment variable $var_name is not set or is empty."
exit 1
fi
}
# Check required environment variables
check_env_var "CLAUDE_PROXY_API_KEY"
check_env_var "ANTHROPIC_API_KEY"
check_env_var "ANTHROPIC_MODEL"
check_env_var "REQUEST_TIMEOUT"
check_env_var "MODEL_TEMPERATURE"
check_env_var "TOKENS_PER_MINUTE"
check_env_var "REQUESTS_PER_MINUTE"
check_env_var "MAX_TOKENS"
# Proceed with the rest of the script if all checks pass
echo "All required environment variables are set."
# Set default port to 8000 if PORT is not set
PORT="${PORT:-8000}"
echo "Attempting to start uvicorn..."
if command -v uvicorn &> /dev/null; then
uvicorn server_openai:app --host 0.0.0.0 --port $PORT
else
echo "Error: uvicorn command not found. Trying with python -m..."
python -m uvicorn server_openai:app --host 0.0.0.0 --port $PORT
fi