Spaces:
Running
on
T4
Running
on
T4
File size: 803 Bytes
bdcc377 e449931 1dbb897 1c97e32 1dbb897 a1992ae 015004d a82a39b 86d84ef a82a39b bdcc377 86d84ef 8fde3d0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
FROM debian
ARG MODEL
ARG IMGMODEL
ARG WHISPERMODEL
ARG MMPROJ
ARG MODEL_NAME
ARG ADDITIONAL
RUN mkdir /opt/koboldcpp
RUN apt update && apt install curl -y
WORKDIR /opt/koboldcpp
COPY *.json /opt/koboldcpp/
RUN curl -fLo koboldcpp https://koboldai.org/cpplinuxcu12
RUN chmod +x ./koboldcpp
RUN curl -fLo model.gguf $MODEL || true
RUN curl -fLo imgmodel.gguf $IMGMODEL || true
RUN curl -fLo mmproj.gguf $MMPROJ || true
RUN curl -fLo whispermodel.gguf $WHISPERMODEL || true
CMD ./koboldcpp --model model.gguf --whispermodel whispermodel.gguf --sdmodel imgmodel.gguf --sdthreads 4 --sdquant --sdclamped --mmproj mmproj.gguf $ADDITIONAL --port 7860 --hordemodelname $MODEL_NAME --hordemaxctx 1 --hordegenlen 1 --quiet --preloadstory default.json --chatcompletionsadapter adapter.json --ignoremissing $SECRET |