Spaces:
Runtime error
Runtime error
File size: 431 Bytes
fbad46b fa09834 bba0c2d eb69e72 6a03ad9 fa09834 ef65f21 |
1 2 3 4 5 6 7 8 9 |
FROM ghcr.io/ggerganov/llama.cpp:full
RUN apt update && apt install wget -y
# Ganti ke model Dhanishtha GGUF (Q4_K_M)
RUN wget "https://huggingface.co/QuantFactory/gemma2-9b-cpt-sahabatai-v1-instruct-GGUF/blob/main/gemma2-9b-cpt-sahabatai-v1-instruct.Q8_0.gguf" -O /sahabatai.gguf
CMD ["--server", "-m", "/sahabatai.gguf", "--port", "7860", "--host", "0.0.0.0", "-n", "4096", "-c", "32000", "-n", "4000", "-t", "2", "--mlock"]
|