Skip to content

Commit 89dc222

Browse files
gHashTagona-agent
andcommitted
Fix SmolLM model download URL
Use official HuggingFaceTB model URL. Co-authored-by: Ona <no-reply@ona.com>
1 parent 096ba50 commit 89dc222

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

Dockerfile

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,12 @@ COPY --from=builder /build/vibee /app/vibee
3939
# Create models directory
4040
RUN mkdir -p /app/models
4141

42-
# Download SmolLM-135M Q8_0 (smallest model, fast loading)
43-
# Size: ~135MB, loads in <1 second, good for demos
42+
# Download SmolLM-135M Q8_0 (official HuggingFace model)
43+
# Size: ~145MB, loads in <1 second, good for demos
4444
RUN echo "Downloading SmolLM-135M-Instruct Q8_0..." && \
4545
curl -L -o /app/models/smollm-135m-instruct-q8_0.gguf \
46-
"https://huggingface.co/TheBloke/SmolLM-135M-Instruct-GGUF/resolve/main/smollm-135m-instruct.Q8_0.gguf" || \
47-
curl -L -o /app/models/smollm-135m-instruct-q8_0.gguf \
48-
"https://huggingface.co/Felladrin/gguf-smollm-135M-instruct-v0.2/resolve/main/smollm-135M-instruct-v0.2-Q8_0.gguf"
46+
"https://huggingface.co/HuggingFaceTB/smollm-135M-instruct-v0.2-Q8_0-GGUF/resolve/main/smollm-135m-instruct-add-basics-q8_0.gguf" && \
47+
ls -la /app/models/
4948

5049
# Set environment
5150
ENV MODEL_PATH=/app/models/smollm-135m-instruct-q8_0.gguf

0 commit comments

Comments
 (0)