Spaces:
Running
Running
File size: 762 Bytes
54c19e6 f2c5b0b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | FROM ghcr.io/ggml-org/llama.cpp:server
RUN apt update && apt install wget -y && rm -rf /var/lib/apt/lists/*
# THE MAIN MODEL: LiquidAI LFM 2.5 VL 1.6B (Q4_0)
# Note: Q4_K_M is not officially provided in GGUF for this model, using Q4_0 which is the closest 4-bit quant.
RUN wget "https://huggingface.co/LiquidAI/LFM2.5-VL-1.6B-GGUF/resolve/main/LFM2.5-VL-1.6B-Q4_0.gguf" -O /model.gguf
# THE MULTIMODAL PROJECTOR (Vision)
RUN wget "https://huggingface.co/LiquidAI/LFM2.5-VL-1.6B-GGUF/resolve/main/mmproj-LFM2.5-VL-1.6b-F16.gguf" -O /mmproj.gguf
# Run the server with multimodal projector for vision support
ENTRYPOINT []
CMD /app/llama-server -m /model.gguf --mmproj /mmproj.gguf --port 7860 --host 0.0.0.0 -t 2 --mlock -c 4096 --log-disable > /dev/null 2>&1
|