Spaces:
Sleeping
Sleeping
FROM python:3.11-slim | |
WORKDIR /code | |
COPY ./requirements.txt /code/requirements.txt | |
COPY ./main.py /code/main.py | |
COPY ./Nous-Hermes-2-Mistral-7B-DPO.Q4_0.gguf /code/Nous-Hermes-2-Mistral-7B-DPO.Q4_0.gguf | |
RUN pip install --no-cache-dir -r /code/requirements.txt | |
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] | |