Spaces:
Sleeping
Sleeping
Syedkaif29
Deploy hf_space_requirements_fix with latest improvements - Memory optimization, Enhanced PDF processing, OCR support
9f42118
| 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 | |