Spaces:
Build error
Build error
| FROM python | |
| WORKDIR /app | |
| COPY . . | |
| RUN apt update \ | |
| && apt install build-essential wget libopenblas-dev make -y \ | |
| && make \ | |
| && wget https://huggingface.co/richardr1126/sql-wizard-coder-ggml/resolve/main/sql-wizard-coder-15b-q4_0.bin\ | |
| && apt remove build-essential wget make -y | |
| ENTRYPOINT ["python", "koboldcpp.py", "sql-wizard-coder-15b-q4_0.bin", "--port", "7860", "--stream"] |