Spaces:
Sleeping
Sleeping
File size: 425 Bytes
de1a06f fa09834 bba0c2d 7809f5e fa09834 7809f5e | 1 2 3 4 5 6 7 | FROM ghcr.io/ggml-org/llama.cpp:full
RUN apt update && apt install wget -y
RUN wget "https://huggingface.co/unsloth/gemma-3-1b-it-GGUF/resolve/main/gemma-3-1b-it-Q4_K_S.gguf" -O /model.gguf
CMD ["--server", "-m", "/model.gguf", "--port", "7860", "--host", "0.0.0.0", "-n", "1024", "--no-mmap", "--jinja", "--flash-attn", "on", "--temp", "1.0", "--top-p", "0.95", "--top-k", "64", "--reasoning-budget", "256", "-c", "4096"] |