Spaces:
Running
on
T4
Running
on
T4
Explicitly add --quiet
Browse files--quiet was implied trough the horde flags being set, however the UI does not detect this making people potentially think that it is logged (This was not the case).
We now add the extra --quiet flag so that the quietness is correctly shown in the UI.
- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -15,4 +15,4 @@ RUN curl -fLo model.ggml $MODEL || true
|
|
15 |
RUN curl -fLo imgmodel.ggml $IMGMODEL || true
|
16 |
RUN curl -fLo mmproj.ggml $MMPROJ || true
|
17 |
RUN curl -fLo whispermodel.ggml $WHISPERMODEL || true
|
18 |
-
CMD ./koboldcpp --model model.ggml --whispermodel whispermodel.ggml --sdmodel imgmodel.ggml --sdthreads 4 --sdquant --sdclamped --mmproj mmproj.ggml $ADDITIONAL --port 7860 --hordemodelname $MODEL_NAME --hordemaxctx 1 --hordegenlen 1 --preloadstory default.json --chatcompletionsadapter adapter.json --ignoremissing $SECRET
|
|
|
15 |
RUN curl -fLo imgmodel.ggml $IMGMODEL || true
|
16 |
RUN curl -fLo mmproj.ggml $MMPROJ || true
|
17 |
RUN curl -fLo whispermodel.ggml $WHISPERMODEL || true
|
18 |
+
CMD ./koboldcpp --model model.ggml --whispermodel whispermodel.ggml --sdmodel imgmodel.ggml --sdthreads 4 --sdquant --sdclamped --mmproj mmproj.ggml $ADDITIONAL --port 7860 --hordemodelname $MODEL_NAME --hordemaxctx 1 --hordegenlen 1 --quiet --preloadstory default.json --chatcompletionsadapter adapter.json --ignoremissing $SECRET
|