Spaces:
Sleeping
Sleeping
| # القالب الجاهز اللي فيه كاع المكتبات مبنية | |
| FROM ghcr.io/abetlen/llama-cpp-python:latest | |
| # تثبيت المكتبات ديال التواصل | |
| RUN pip install --no-cache-dir fastapi uvicorn huggingface_hub requests | |
| WORKDIR /code | |
| COPY . . | |
| # تشغيل إيفا | |
| CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] |