Spaces:
Sleeping
Sleeping
File size: 528 Bytes
a62f06e 9f42118 a62f06e 9f42118 a62f06e 9f42118 a62f06e 9f42118 a62f06e 9f42118 a62f06e 9f42118 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
#!/bin/bash
set -e
echo "π Starting IndicTrans2 Translation Service..."
# Set cache environment variables
export TRANSFORMERS_CACHE=/tmp/transformers_cache
export HF_HOME=/tmp/huggingface_cache
export TORCH_HOME=/tmp/torch_cache
# Create cache directories
mkdir -p $TRANSFORMERS_CACHE $HF_HOME $TORCH_HOME
chmod -R 777 $TRANSFORMERS_CACHE $HF_HOME $TORCH_HOME
echo "π Cache directories ready"
echo "π§ Starting FastAPI server..."
# Start the application
exec uvicorn main:app --host 0.0.0.0 --port 7860 --workers 1
|