Basculer le menu
Changer de menu des préférences
Basculer le menu personnel
Non connecté(e)
Votre adresse IP sera visible au public si vous faites des modifications.

« Llama.cpp » : différence entre les versions

De Le Wiki de Lug
 
(113 versions intermédiaires par le même utilisateur non affichées)
Ligne 19 : Ligne 19 :
Installer les dépendances nécessaires :
Installer les dépendances nécessaires :
  # apt update && apt upgrade
  # apt update && apt upgrade
  # apt install -y git build-essential cmake curl libcurl4-openssl-dev
  # apt install -y git build-essential cmake curl libcurl4-openssl-dev ccache


=== Récupération du projet ===
=== Récupération du projet ===
Ligne 76 : Ligne 76 :


==== Compilation avec support CUDA ====
==== Compilation avec support CUDA ====
Quelques dépendances :
# apt install libnccl2 libnccl-dev
Connaître les versions de nvcc installées :
Connaître les versions de nvcc installées :
  # find /usr /opt -name nvcc 2>/dev/null
  # find /usr /opt -name nvcc 2>/dev/null
Ligne 82 : Ligne 84 :
  # cd /opt/llama.cpp
  # cd /opt/llama.cpp
  # export CUDACXX=/usr/local/cuda-<font color=blue>13.2</font>/bin/nvcc
  # export CUDACXX=/usr/local/cuda-<font color=blue>13.2</font>/bin/nvcc
  # cmake -B build -DGGML_CUDA=ON
  # cmake -B build -DGGML_CUDA=ON -DGGML_CUDA_FA_ALL_QUANTS=ON -DCMAKE_BUILD_TYPE=Release -DGGML_NATIVE=ON <font color=green>-DLLAMA_OPENSSL=ON</font> -DGGML_LTO=ON
  # cmake --build build -j$(nproc)
  # cmake --build build -j$(nproc)
|}
|}
Ligne 91 : Ligne 93 :


=== Téléchargement d’un modèle (format GGUF) ===
=== Téléchargement d’un modèle (format GGUF) ===
==== Téléchargement via le client Hugging Face (méthode recommandée) ====
Voir [[Client_Hugging_Face|Client Hugging Face]]
 
On installe les dépendances (Debian) :
 
# apt install -y python3-full python3-venv
 
On installe <code>huggingface_hub</code> dans un environnement virtuel Python :
 
# python3 -m venv /opt/huggingface-venv
# /opt/huggingface-venv/bin/pip install -U "huggingface_hub[cli]"
# ln -sf /opt/huggingface-venv/bin/hf /usr/local/bin/hf
 
On crée le dossier destiné à accueillir les modèles :
 
# mkdir -p /opt/models
 
Puis on télécharge le modèle :
 
# hf download <font color=blue>NOM_DU_REPO</font> --include "<font color=blue>*VERSION_OU_QUANT*.gguf</font>" --include "<font color=blue>mmproj-BF16.gguf</font>" --local-dir <font color=blue>/opt/models/NOM_DU_MODELE/VERSION_OU_QUANT</font>
{{Méta bandeau
  | niveau = information
  | icône = information
  | texte  =
Pour les modèles multimodaux, ajouter le fichier <code>mmproj</code>. Par défaut, <code>mmproj-BF16.gguf</code> est recommandé. Si le modèle n'est pas multimodal, cette option n'est pas nécessaire.
}}
 
Exemple :
 
# hf download unsloth/Qwen3.6-35B-A3B-MTP-GGUF --include "*UD-Q8_K_XL*.gguf" --include "mmproj-BF16.gguf" --local-dir /opt/models/Qwen3.6-35B-A3B-MTP-GGUF/UD-Q8_K_XL
 
==== Via llama-cli ====
Plateformes de modèles :
* [https://huggingface.co/models Hugging Face] Plateforme principale.
 
Quantization custom (souvent mieux optimisé) :
* [https://huggingface.co/bartowski bartowski GGUF models]
* [https://huggingface.co/unsloth Unsloth GGUF models]
* [https://huggingface.co/lmstudio-community LM Studio GGUF models]
* [https://huggingface.co/TheBloke TheBloke GGUF models]
Créer un dossier pour les modèles :
# mkdir -p /opt/llama.cpp/models
On configure le dossier des modèles :
# echo 'export LLAMA_CACHE=/opt/llama.cpp/models' >> ~/.bashrc
# source ~/.bashrc
Exemple de chargement automatique d’un modèle depuis Hugging Face :
*Exemple avec Qwen/Qwen3-8B-GGUF:Q4_K_M :
# /opt/llama.cpp/build/bin/llama-cli -hf Qwen/Qwen3-8B-GGUF:Q4_K_M -n 0
*Exemple avec bartowski/Jackrong_Qwen3.5-9B-Neo-GGUF:Q4_K_M :
# /opt/llama.cpp/build/bin/llama-cli -hf bartowski/Jackrong_Qwen3.5-9B-Neo-GGUF:Q4_K_M -n 0
*Exemple avec HauhauCS/Qwen3.5-9B-Uncensored-HauhauCS-Aggressive:Q4_K_M :
# /opt/llama.cpp/build/bin/llama-cli -hf HauhauCS/Qwen3.5-9B-Uncensored-HauhauCS-Aggressive:Q4_K_M -n 0
{{Méta bandeau
  | niveau = information
  | icône = loupe
  | texte  = Une fois le modèle téléchargé, faire "/exit" pour quitter le CLI. Le paramètre "-n 0" empêche toute génération de texte : il ne doit être utilisé que pour le téléchargement ou les tests.
}}


=== Mode serveur (API compatible OpenAI) ===
=== Mode serveur (API compatible OpenAI) ===
Ligne 580 : Ligne 527 :
=== Recompilation GPU NVIDIA CUDA ===
=== Recompilation GPU NVIDIA CUDA ===
  # export CUDACXX=/usr/local/cuda-<font color=blue>13.2</font>/bin/nvcc
  # export CUDACXX=/usr/local/cuda-<font color=blue>13.2</font>/bin/nvcc
  # cmake -B build -DGGML_CUDA=ON
  # cmake -B build -DGGML_CUDA=ON -DGGML_CUDA_FA_ALL_QUANTS=ON -DCMAKE_BUILD_TYPE=Release -DGGML_NATIVE=ON <font color=green>-DLLAMA_OPENSSL=ON</font> -DGGML_LTO=ON
  # cmake --build build -j$(nproc)
  # cmake --build build -j$(nproc)


Ligne 673 : Ligne 620 :
  pp : prompt processing
  pp : prompt processing
  tg : token generation
  tg : token generation
== Utilisation d'un LoRA ==
=== Installation des dépendances ===
# cd /opt/llama.cpp
# python3 -m venv .venv-convert
# source .venv-convert/bin/activate
# pip install -U pip
# pip install -e .
=== Conversion ===
# cd /opt/llama.cpp
# source .venv-convert/bin/activate
# python3 convert_lora_to_gguf.py --base-model-id <font color = blue>tencent/Hy-MT2-1.8B</font> --trust-remote-code --outtype f16 --outfile /opt/models/<font color = blue>Hy-MT2-1.8B</font>/<font color = blue>mon_lora</font>.gguf /opt/lora/<font color = blue>mon_lora</font>/
{{Méta bandeau
  | niveau = information
  | icône = loupe
  | texte =
Exemple avec <font color = blue>tencent/Hy-MT2-1.8B</font>, identifiant Hugging Face.
}}
=== Utilisation dans Llama.cpp ===
Ajouter simplement la ligne suivante :
--lora /opt/models/<font color = blue>Hy-MT2-1.8B</font>/<font color = blue>mon_lora</font>.gguf \


== Exemple de configuration d’un modèle MoE avec déchargement des experts en RAM ==
== Exemple de configuration d’un modèle MoE avec déchargement des experts en RAM ==
Ligne 784 : Ligne 751 :
* --cache-reuse : Définit un seuil de réutilisation du cache. Cela peut améliorer les performances sur des requêtes proches ou répétées.
* --cache-reuse : Définit un seuil de réutilisation du cache. Cela peut améliorer les performances sur des requêtes proches ou répétées.
}}
}}
* Test :
# journalctl -u llama-server -n 200 --no-pager | grep -E "offloaded|model buffer|KV buffer|compute buffer|n_ctx|n_batch|n_ubatch"
print_info: n_ctx_train          = 262144
print_info: n_ctx_orig_yarn      = 262144
load_tensors: offloaded 41/41 layers to GPU
load_tensors:        CUDA0 model buffer size =  4972.80 MiB
load_tensors:    CUDA_Host model buffer size = 20377.31 MiB
llama_context: n_ctx        = 131072
llama_context: n_ctx_seq    = 131072
llama_context: n_batch      = 4096
llama_context: n_ubatch      = 4096
llama_context: n_ctx_seq (131072) < n_ctx_train (262144) -- the full capacity of the model will not be utilized
llama_kv_cache:      CUDA0 KV buffer size =  1360.00 MiB
sched_reserve:      CUDA0 compute buffer size =  3976.02 MiB
sched_reserve:  CUDA_Host compute buffer size =  2112.42 MiB
alloc_compute_meta:        CPU compute buffer size =  248.10 MiB
slot  load_model: id  0 | task -1 | new slot, n_ctx = 131072
-----
<pre>
Explique pourquoi un système peut sembler rapide en usage normal, mais devenir frustrant dans un workflow réel.
Je veux une réponse qui distingue clairement :
vitesse brute ;
latence initiale ;
fluidité perçue ;
fiabilité ;
confort à long terme.
Termine par une conclusion pratique en 5 lignes maximum.
</pre>
Vitesse : (apres plusieurs essais mais a confirmer..)
prompt eval time =    5194.60 ms /  2896 tokens (    1.79 ms per token,  557.50 tokens per second)
eval time =  16383.19 ms /  284 tokens (  57.69 ms per token,    '''17.33 tokens per second''')
total time =  21577.79 ms /  3180 tokens


=== Qwen3.6-35B-A3B-APEX-I-Balanced ===
=== Qwen3.6-35B-A3B-APEX-I-Balanced ===
Ligne 859 : Ligne 791 :
   --port 8080
   --port 8080
</pre>
</pre>
* Test :
== Exemple de configuration d’un modèle MTP + sm tensor ==
  # journalctl -u llama-server -n 200 --no-pager | grep -E "offloaded|model buffer|KV buffer|compute buffer|n_ctx|n_batch|n_ubatch"
=== Qwen3.6-27B-UD-Q4_K_XL + kvcache Q8 Q8 (2x 12 Go de VRAM)===
  # hf download unsloth/Qwen3.6-27B-MTP-GGUF  --include Qwen3.6-27B-UD-Q4_K_XL.gguf --include "mmproj-BF16.gguf" --local-dir /opt/models/Qwen3.6-27B-MTP-GGUF/UD-Q4_K_XL


  print_info: n_ctx_train          = 262144
  [Unit]
  print_info: n_ctx_orig_yarn      = 262144
Description=llama.cpp Qwen3.6-27B MTP server
  load_tensors: offloaded 41/41 layers to GPU
  After=network.target
  load_tensors:          CPU model buffer size =   333.44 MiB
   
  load_tensors:        CUDA0 model buffer size 4763.95 MiB
  [Service]
  load_tensors:    CUDA_Host model buffer size = 19330.00 MiB
Type=simple
  llama_context: n_ctx        = 131072
  User=root
  llama_context: n_ctx_seq    = 131072
  WorkingDirectory=/opt/llama.cpp
  llama_context: n_batch      = 4096
llama_context: n_ubatch      = 4096
  ExecStart=/opt/llama.cpp/build/bin/llama-server \
llama_context: n_ctx_seq (131072) < n_ctx_train (262144) -- the full capacity of the model will not be utilized
  -m /opt/models/Qwen3.6-27B-MTP-GGUF/UD-Q4_K_XL/Qwen3.6-27B-UD-Q4_K_XL.gguf \
  llama_kv_cache:      CUDA0 KV buffer size = 1360.00 MiB
  --mmproj /opt/models/Qwen3.6-27B-MTP-GGUF/UD-Q4_K_XL/mmproj-BF16.gguf \
  sched_reserve:      CUDA0 compute buffer size 3976.02 MiB
  --no-mmproj-offload \
  sched_reserve: CUDA_Host compute buffer size 2112.42 MiB
  --image-min-tokens 1024 \
  alloc_compute_meta:        CPU compute buffer size =   248.10 MiB
  -ngl 999 \
  slot  load_model: id 0 | task -1 | new slot, n_ctx = 131072
  -sm tensor \
-----
  -ts 1/1 \
Explique pourquoi un système peut sembler rapide en usage normal, mais devenir frustrant dans un workflow réel.
  -t 4 \
Je veux une réponse qui distingue clairement :
  -tb 4 \
  -b 1024 \
  -ub 1024 \
  -c 98304 \
  -np 1 \
  -fa on \
  --load-mode none \
  -ctk q8_0 \
  -ctv q8_0 \
  --spec-type draft-mtp \
  --spec-draft-n-max 3 \
  --spec-draft-n-min 0 \
  --spec-draft-p-min 0.75 \
  --reasoning on \
  --reasoning-preserve \
  --jinja \
  --chat-template-file /opt/models/Qwen-Fixed-Chat-Templates/chat_template.jinja \
  --chat-template-kwargs '{"preserve_thinking": true}' \
  --reasoning-format none \
  --reasoning-budget 16192 \
  --reasoning-budget-message "D'accord, assez réfléchi, plus d'attente. Passons à l'action." \
  --slot-save-path /kv_cache/ \
  --temp 0.6 \
  --top-k 20 \
  --top-p 0.95 \
  --min-p 0.0 \
  --presence-penalty 0.0 \
  --repeat-penalty 1.0 \
  --host 0.0.0.0 \
  --port 8080 \
  --api-key-file /etc/ai/ssl/api-keys.txt \
  --ssl-key-file /etc/ai/ssl/server.key \
   --ssl-cert-file /etc/ai/ssl/server.crt
   
Restart=on-failure
  RestartSec=5
  [Install]
WantedBy=multi-user.target
 
== Exemple de configuration d’un modèle MTP + sm tensor +ngram ==
=== Qwen3.6-27B-UD-Q4_K_XL + kvcache Q8 Q8 (2x 12 Go de VRAM)===
# hf download unsloth/Qwen3.6-27B-MTP-GGUF  --include Qwen3.6-27B-UD-Q4_K_XL.gguf --include "mmproj-BF16.gguf" --local-dir /opt/models/Qwen3.6-27B-MTP-GGUF/UD-Q4_K_XL
 
  [Unit]
Description=llama.cpp Qwen3.6-27B MTP server
  After=network.target
   
  [Service]
  Type=simple
  User=root
  WorkingDirectory=/opt/llama.cpp
   
  ExecStart=/opt/llama.cpp/build/bin/llama-server \
  -m /opt/models/Qwen3.6-27B-MTP-GGUF/UD-Q4_K_XL/Qwen3.6-27B-UD-Q4_K_XL.gguf \
  --mmproj /opt/models/Qwen3.6-27B-MTP-GGUF/UD-Q4_K_XL/mmproj-BF16.gguf \
  --no-mmproj-offload \
  --image-min-tokens 1024 \
  -ngl 999 \
  -sm tensor \
  -ts 1/1 \
  -t 4 \
  -tb 4 \
  -b 1024 \
  -ub 1024 \
  -c 98304 \
  -np 1 \
  -fa on \
  --load-mode none \
  -ctk q8_0 \
  -ctv q8_0 \
  --spec-type <font color = blue>ngram-mod,</font>draft-mtp \
  <font color = blue>--spec-ngram-mod-n-match 24 \
  --spec-ngram-mod-n-min 12 \
  --spec-ngram-mod-n-max 48 \</font>
  --spec-draft-n-max 3 \
  --spec-draft-n-min 0 \
  --spec-draft-p-min 0.75 \
  --reasoning on \
  --reasoning-preserve \
  --jinja \
  --chat-template-file /opt/models/Qwen-Fixed-Chat-Templates/chat_template.jinja \
  --chat-template-kwargs '{"preserve_thinking": true}' \
  --reasoning-format none \
  --reasoning-budget 16192 \
  --reasoning-budget-message "D'accord, assez réfléchi, plus d'attente. Passons à l'action." \
  --slot-save-path /kv_cache/ \
  --temp 0.6 \
  --top-k 20 \
  --top-p 0.95 \
  --min-p 0.0 \
  --presence-penalty 0.0 \
  --repeat-penalty 1.0 \
  --host 0.0.0.0 \
  --port 8080 \
  --api-key-file /etc/ai/ssl/api-keys.txt \
  --ssl-key-file /etc/ai/ssl/server.key \
  --ssl-cert-file /etc/ai/ssl/server.crt
   
   
  vitesse brute ;
  Restart=on-failure
  latence initiale ;
  RestartSec=5
fluidité perçue ;
fiabilité ;
confort à long terme.
   
   
  Termine par une conclusion pratique en 5 lignes maximum.
  [Install]
Premier essai :
WantedBy=multi-user.target
prompt eval time =   5805.15 ms /  3969 tokens (    1.46 ms per token,   683.70 tokens per second)
 
  eval time =   12018.11 ms /   210 tokens (  57.23 ms per token,   '''17.47 tokens per second''')
{{Méta bandeau
total time =  17823.27 ms /  4179 tokens
  | niveau = information
Deuxième essai :
   | icône = loupe
prompt eval time =    5803.15 ms / 3969 tokens (    1.46 ms per token,   683.94 tokens per second)
  | texte =
eval time =    9580.92 ms /  209 tokens (  45.84 ms per token,   '''21.81 tokens''' per second)
La combinaison <code>ngram-mod,draft-mtp</code> permet d'utiliser deux formes de génération spéculative complémentaires. Le MTP prédit quelques tokens à l'avance grâce aux têtes intégrées au modèle, tandis que <code>ngram-mod</code> recherche dans le contexte des séquences déjà rencontrées afin de proposer directement des blocs plus longs. Cela peut fortement accélérer les régénérations, les reprises de code, les structures répétitives ou les réponses proches d'un texte déjà présent, sans ajouter de second modèle de draft.
total time =  15384.07 ms /  4178 tokens
 
Les paramètres <code>--spec-ngram-mod-n-match 24</code>, <code>--spec-ngram-mod-n-min 12</code> et <code>--spec-ngram-mod-n-max 48</code> définissent respectivement la longueur minimale de correspondance recherchée, puis la taille minimale et maximale des blocs proposés. Avec ces valeurs, le mécanisme reste assez sélectif tout en pouvant accélérer nettement les passages répétitifs. Sur du contenu entièrement nouveau, le gain est généralement faible et le MTP reste le principal mécanisme spéculatif.
}}
 
== Modèles RAG ==
== Modèles RAG ==
=== Embedding ===
=== Embedding ===
Ligne 917 : Ligne 947 :
   -m /opt/models/harrier-oss-v1-0.6b/Q8_0/harrier-oss-v1-0.6B-Q8_0.gguf \
   -m /opt/models/harrier-oss-v1-0.6b/Q8_0/harrier-oss-v1-0.6B-Q8_0.gguf \
   --host 0.0.0.0 \
   --host 0.0.0.0 \
   --port 8080 \
   --port <font color = blue>8080</font> \
   --api-key <font color = blue>masuperclef</font> \
   --api-key <font color = blue>masuperclef</font> \
   --embedding \
   --embedding \
   --pooling last \
   --pooling last \
   -c 4096 \
   -c 4096 \
  -np 1 \
  -b 1024 \
  -ub 1024 \
   -ctk q8_0 \
   -ctk q8_0 \
   -ctv q8_0 \
   -ctv q8_0 \
Ligne 928 : Ligne 961 :
   <font color = green>--sleep-idle-seconds 300</font>
   <font color = green>--sleep-idle-seconds 300</font>
   
   
  Restart=unless-stopped
  Restart=on-failure
  RestartSec=5
  RestartSec=5
   
   
Ligne 943 : Ligne 976 :
   | icône = loupe
   | icône = loupe
   | texte  =
   | texte  =
<code>-c 4096</code> : définit le contexte maximal accepté par le serveur, ici 4096 tokens. Cette valeur est recommandée pour un serveur d’embedding utilisé avec RAGFlow. Ce modèle peut monter jusqu’à <code>32768</code>, au prix d’une consommation mémoire beaucoup plus élevée.
<code>-c 4096</code> : définit le contexte maximal accepté par le serveur, ici 4096 tokens. Cette valeur est recommandée pour un serveur d’embedding utilisé avec RAGFlow, car les documents sont normalement découpés en chunks plus petits, souvent autour de 1024 à 2048 tokens. Ce modèle peut monter jusqu’à <code>32768</code>, au prix d’une consommation mémoire beaucoup plus élevée.
}}
{{Méta bandeau
  | niveau = modéré
  | icône = important
  | texte =
Pour les modèles d’embedding, les paramètres <code>n_batch</code> et <code>n_ubatch</code> doivent être configurés avec la même valeur. Par exemple : <code>-b 1024 -ub 1024</code>. Si <code>n_batch</code> est supérieur à <code>n_ubatch</code>, <code>llama-server</code> peut ramener automatiquement les deux valeurs à celle de <code>n_ubatch</code> afin d’éviter une erreur d’assertion.
}}
}}
=== Rerank ===
=== Rerank ===
==== [https://huggingface.co/Felladrin/gguf-Q8_0-bge-reranker-v2-m3 bge-reranker-v2-m3-Q8_0-GGUF] ====
# hf download Felladrin/gguf-Q8_0-bge-reranker-v2-m3 --include "*q8_0*.gguf" --local-dir /opt/models/bge-reranker-v2-m3/Q8_0
# vi /etc/systemd/system/llama-rerank.service
[Unit]
Description=llama-server Rerank
After=network-online.target
Wants=network-online.target
[Service]
Type=simple
User=root
WorkingDirectory=/opt/llama.cpp
ExecStart=/opt/llama.cpp/build/bin/llama-server \
  -m /opt/models/bge-reranker-v2-m3/Q8_0/bge-reranker-v2-m3-q8_0.gguf \
  --host 0.0.0.0 \
  --port <font color = blue>8081</font> \
  --api-key <font color = blue>masuperclef</font> \
  --reranking \
  --pooling rank \
  -c 8192 \
  -np 1 \
  -b 4096 \
  -ub 4096 \
  -ctk q8_0 \
  -ctv q8_0 \
  -ngl 999 \
  -t 4 \
  --sleep-idle-seconds 300
Restart=on-failure
RestartSec=5
[Install]
WantedBy=multi-user.target
{{Méta bandeau
  | niveau = information
  | icône = loupe
  | texte  =
<code>--sleep-idle-seconds 300</code> : décharge le modèle après 300 secondes d’inactivité.
}}
==== [https://huggingface.co/jinaai/jina-reranker-v3.5-GGUF jinaai/jina-reranker-v3.5-GGUF] ====
{{Méta bandeau
  | niveau = grave
  | icône = important
  | texte =
<code>Jina Reranker 3.5</code> n'est pas encore pris en charge par la version officielle de <code>llama.cpp</code>. Ce modèle nécessite un mode encodeur non causal ainsi qu'une option spécifique <code>--output-token-ids</code>, actuellement absents de la branche officielle. Une pull request est ouverte pour ajouter cette prise en charge : <code>ggml-org/llama.cpp#26286</code> En attendant son intégration, il faut utiliser le fork de <code>littlewine/llama.cpp</code>.
}}
# hf download jinaai/jina-reranker-v3.5-GGUF --include "*Q8_0*.gguf" --local-dir /opt/models/jina-reranker-v3.5/Q8_0
# vi /etc/systemd/system/llama-rerank.service
[Unit]
Description=llama-server Rerank
After=network-online.target
Wants=network-online.target
[Service]
Type=simple
User=root
WorkingDirectory=/opt/llama.cpp
ExecStart=/opt/llama.cpp/build/bin/llama-server \
  -m /opt/models/jina-reranker-v3.5/Q8_0/jina-reranker-v3.5-Q8_0.gguf \
  --host 0.0.0.0 \
  --port <font color = blue>8081</font> \
  --api-key <font color = blue>masuperclef</font> \
  --reranking \
  --pooling rank \
  -c 16384 \
  -np 1 \
  -b 4096 \
  -ub 4096 \
  -ctk q8_0 \
  -ctv q8_0 \
  -ngl 999 \
  -t 4 \
  --sleep-idle-seconds 300
Restart=on-failure
RestartSec=5
[Install]
WantedBy=multi-user.target
{{Méta bandeau
  | niveau = information
  | icône = loupe
  | texte  =
<code>--sleep-idle-seconds 300</code> : décharge le modèle après 300 secondes d’inactivité.
}}
{{Méta bandeau
  | niveau = information
  | icône = loupe
  | texte  =
<code>-c 16384</code> : valeur confortable pour un serveur de rerank utilisé avec RAGFlow. Le modèle <code>jina-reranker-v3.5</code> reçoit la requête utilisateur ainsi qu’une liste de chunks candidats à comparer, ce qui nécessite davantage de contexte qu’un modèle d’embedding traitant les chunks individuellement. Il prend théoriquement en charge jusqu’à <code>131072</code> tokens de contexte, mais une telle valeur augmente fortement la consommation de VRAM ou de RAM et n’est généralement pas utile pour un serveur local. Une fenêtre de <code>16384</code> tokens offre donc une marge importante pour les requêtes et les chunks habituellement envoyés par RAGFlow.
}}
==== [https://huggingface.co/jinaai/jina-reranker-v3-GGUF jinaai/jina-reranker-v3-GGUF] ====
==== [https://huggingface.co/jinaai/jina-reranker-v3-GGUF jinaai/jina-reranker-v3-GGUF] ====
  # hf download jinaai/jina-reranker-v3-GGUF --include "*Q8_0*.gguf" --local-dir /opt/models/jina-reranker-v3/Q8_0
  # hf download jinaai/jina-reranker-v3-GGUF --include "*Q8_0*.gguf" --local-dir /opt/models/jina-reranker-v3/Q8_0
Ligne 964 : Ligne 1 104 :
   -m /opt/models/jina-reranker-v3/Q8_0/jina-reranker-v3-Q8_0.gguf \
   -m /opt/models/jina-reranker-v3/Q8_0/jina-reranker-v3-Q8_0.gguf \
   --host 0.0.0.0 \
   --host 0.0.0.0 \
   --port 8081 \
   --port <font color = blue>8081</font> \
   --api-key <font color = blue>masuperclef</font> \
   --api-key <font color = blue>masuperclef</font> \
   --reranking \
   --reranking \
   --pooling rank \
   --pooling cls \
  -c 16384 \
  -np 1 \
  -b 4096 \
  -ub 4096 \
  -ctk q8_0 \
  -ctv q8_0 \
  -ngl 999 \
  -t 4 \
  --sleep-idle-seconds 300
Restart=on-failure
RestartSec=5
[Install]
WantedBy=multi-user.target
{{Méta bandeau
  | niveau = information
  | icône = loupe
  | texte  =
<code>--sleep-idle-seconds 300</code> : décharge le modèle après 300 secondes d’inactivité.
}}
{{Méta bandeau
  | niveau = information
  | icône = loupe
  | texte  =
<code>-c 16384</code> : valeur confortable pour un serveur de rerank utilisé avec RAGFlow. Contrairement au modèle d’embedding, le reranker peut recevoir la requête utilisateur avec plusieurs chunks candidats à comparer, ce qui nécessite plus de contexte. Le modèle <code>jina-reranker-v3</code> supporte théoriquement jusqu’à <code>131072</code> tokens, mais cette valeur consomme énormément de VRAM ou de RAM et n’est généralement pas nécessaire en local.
}}
 
=== Img2txt ===
==== [https://huggingface.co/mradermacher/LightOnOCR-2-1B-GGUF mradermacher/LightOnOCR-2-1B-GGUF] ====
# hf download mradermacher/LightOnOCR-2-1B-GGUF --include "*Q8_0*.gguf" --include "*mmproj-f16*.gguf" --local-dir /opt/models/LightOnOCR-2-1B/Q8_0
# rm -f /opt/models/LightOnOCR-2-1B/Q8_0/LightOnOCR-2-1B.mmproj-Q8_0.gguf
 
# vi /etc/systemd/system/llama-img2txt.service
 
[Unit]
Description=llama-server Img2txt LightOnOCR-2-1B
After=network-online.target
Wants=network-online.target
[Service]
Type=simple
User=root
WorkingDirectory=/opt/llama.cpp
ExecStart=/opt/llama.cpp/build/bin/llama-server \
  -m /opt/models/LightOnOCR-2-1B/Q8_0/LightOnOCR-2-1B.Q8_0.gguf \
  --mmproj /opt/models/LightOnOCR-2-1B/Q8_0/LightOnOCR-2-1B.mmproj-f16.gguf \
  --host 0.0.0.0 \
  --port <font color = blue>8082</font> \
  --api-key <font color = blue>masuperclef</font> \
   -c 8192 \
   -c 8192 \
   -np 1 \
   -np 1 \
Ligne 976 : Ligne 1 167 :
   --sleep-idle-seconds 300
   --sleep-idle-seconds 300
   
   
  Restart=unless-stopped
  Restart=on-failure
  RestartSec=5
  RestartSec=5
   
   
Ligne 991 : Ligne 1 182 :
   | icône = loupe
   | icône = loupe
   | texte  =
   | texte  =
<code>-c 8192</code> : valeur recommandée pour un serveur de rerank utilisé avec RAGFlow. Contrairement au modèle d’embedding, le reranker peut recevoir la requête utilisateur avec plusieurs chunks candidats à comparer, ce qui nécessite plus de contexte. Le modèle <code>jina-reranker-v3</code> supporte théoriquement jusqu’à <code>131072</code> tokens, mais cette valeur consomme énormément de VRAM ou de RAM et n’est généralement pas nécessaire en local.
<code>-c 8192</code> : valeur recommandée pour un serveur Img2txt/OCR utilisé avec LightOnOCR-2-1B. Le modèle supporte jusqu’à <code>16384</code> tokens, mais <code>8192</code> offre déjà une marge confortable pour traiter une image ou une page scannée avec beaucoup de texte.
}}
 
== Modèles auxiliaires ==
=== Vision ===
==== [https://huggingface.co/Qwen/Qwen3-VL-4B-Thinking-GGUF/tree/main Qwen3-VL-4B-Thinking] (Dépôt officiel) ====
# hf download Qwen/Qwen3-VL-4B-Thinking-GGUF --include "*Q4_K_M*.gguf" --include "*mmproj-Qwen3VL-4B-Thinking-Q8_0*.gguf" --local-dir /opt/models/Qwen3-VL-4B-Thinking/Q4_K_M
 
[Unit]
Description=llama-server Vision
After=network-online.target
Wants=network-online.target
[Service]
Type=simple
User=root
WorkingDirectory=/opt/llama.cpp
ExecStart=/opt/llama.cpp/build/bin/llama-server \
  -m /opt/models/Qwen3-VL-4B-Thinking/Q4_K_M/Qwen3VL-4B-Thinking-Q4_K_M.gguf \
  --mmproj /opt/models/Qwen3-VL-4B-Thinking/Q4_K_M/mmproj-Qwen3VL-4B-Thinking-Q8_0.gguf \
  --host 0.0.0.0 \
  --port <font color = blue>8083</font> \
  --api-key <font color = blue>masuperclef</font> \
  -c 16384 \
  -np 1 \
  -ctk q8_0 \
  -ctv q8_0 \
  -ngl 999 \
  -t 4 \
  -b 1024 \
  -ub 512 \
  --flash-attn on \
  --jinja \
  --top-p 0.95 \
  --top-k 20 \
  --temp 1.0 \
  --min-p 0.0 \
  --presence-penalty 0.0 \
  --image-min-tokens 1024 \
  --image-max-tokens 4096 \
  --sleep-idle-seconds 300
Restart=on-failure
RestartSec=5
[Install]
WantedBy=multi-user.target
 
==== [https://huggingface.co/Qwen/Qwen3-VL-4B-Instruct-GGUF  Qwen3-VL-4B-Instruct] (Dépôt officiel) ====
 
# hf download Qwen/Qwen3-VL-4B-Instruct-GGUF --include "*Q4_K_M*.gguf" --include "*mmproj-Qwen3VL-4B-Instruct-Q8_0*.gguf" --local-dir /opt/models/Qwen3-VL-4B-Instruct/Q4_K_M
* Environ 5,25gb de vram consommée :
[Unit]
Description=llama-server Vision
After=network-online.target
Wants=network-online.target
[Service]
Type=simple
User=root
WorkingDirectory=/opt/llama.cpp
ExecStart=/opt/llama.cpp/build/bin/llama-server \
  -m /opt/models/Qwen3-VL-4B-Instruct/Q4_K_M/Qwen3VL-4B-Instruct-Q4_K_M.gguf \
  --mmproj /opt/models/Qwen3-VL-4B-Instruct/Q4_K_M/mmproj-Qwen3VL-4B-Instruct-Q8_0.gguf \
  --host 0.0.0.0 \
  --port <font color = blue>8083</font> \
  --api-key <font color = blue>masuperclef</font> \
  -c 16384 \
  -np 1 \
  -ctk q8_0 \
  -ctv q8_0 \
  -ngl 999 \
  -t 4 \
  -b 1024 \
  -ub 512 \
  --flash-attn on \
  --jinja \
  --top-p 0.8 \
  --top-k 20 \
  --temp 0.7 \
  --min-p 0.0 \
  --presence-penalty 1.5 \
  --image-min-tokens 1024 \
  --image-max-tokens 4096 \
  --sleep-idle-seconds 300
Restart=on-failure
RestartSec=5
[Install]
WantedBy=multi-user.target
 
==== [https://huggingface.co/Qwen/Qwen3-VL-2B-Instruct-GGUF  Qwen3-VL-2B-Instruct] (Dépôt officiel) ====
 
# hf download Qwen/Qwen3-VL-2B-Instruct-GGUF --include "*Q4_K_M*.gguf" --include "mmproj-Qwen3VL-2B-Instruct-Q8_0.gguf" --local-dir /opt/models/Qwen3-VL-2B-Instruct/Q4_K_M
* Environ 3gb de vram consommée :
[Unit]
Description=llama-server Vision
After=network-online.target
Wants=network-online.target
[Service]
Type=simple
User=root
WorkingDirectory=/opt/llama.cpp
ExecStart=/opt/llama.cpp/build/bin/llama-server \
  -m /opt/models/Qwen3-VL-2B-Instruct/Q4_K_M/Qwen3VL-2B-Instruct-Q4_K_M.gguf \
  --mmproj /opt/models/Qwen3-VL-2B-Instruct/Q4_K_M/mmproj-Qwen3VL-2B-Instruct-Q8_0.gguf \
  --host 0.0.0.0 \
  --port <font color = blue>8083</font> \
  --api-key <font color = blue>masuperclef</font> \
  -c 16384 \
  -np 1 \
  -ctk q8_0 \
  -ctv q8_0 \
  -ngl 999 \
  -t 4 \
  -b 1024 \
  -ub 512 \
  --flash-attn on \
  --jinja \
  --top-p 0.8 \
  --top-k 20 \
  --temp 0.7 \
  --min-p 0.0 \
  --presence-penalty 1.5 \
  --image-min-tokens 1024 \
  --image-max-tokens 4096 \
  --sleep-idle-seconds 300
Restart=on-failure
RestartSec=5
[Install]
WantedBy=multi-user.target
== Modèles de langage spécialisés en traduction ==
=== [[https://huggingface.co/unsloth/Hy-MT2-7B-GGUF Hy-MT2-7B]] ===
# hf download unsloth/Hy-MT2-7B-GGUF --include "*UD-Q6_K_XL*.gguf" --local-dir /opt/models/Hy-MT2-7B/UD-Q6_K_XL
 
# vi /etc/systemd/system/llama-translation.service
 
[Unit]
Description=Llama Translation Server
After=network.target
[Service]
Type=simple
User=root
ExecStart=/opt/llama.cpp/build/bin/llama-server \
    -m /opt/models/Hy-MT2-7B/UD-Q6_K_XL/Hy-MT2-7B-UD-Q6_K_XL.gguf \
    --host 0.0.0.0 \
    --port <font color = blue>8084</font> \
    --api-key <font color = blue>masuperclef</font> \
    -ngl 999 \
    -c 32768 \
    -n 4096 \
    -ctk q8_0 \
    -ctv q8_0 \
    -np 1 \
    -b 2048 \
    -ub 1024 \
    -fa on \
    --jinja \
    --temp 0.7 \
    --top-k 20 \
    --top-p 0.6 \
    --repeat-penalty 1.05 \
    --sleep-idle-seconds 300
Restart=on-failure
RestartSec=3
[Install]
WantedBy=multi-user.target
 
=== [[https://huggingface.co/unsloth/Hy-MT2-1.8B-GGUF Hy-MT2-1.8B]] ===
# hf download unsloth/Hy-MT2-1.8B-GGUF --include "*UD-Q6_K_XL*.gguf" --local-dir /opt/models/Hy-MT2-1.8B/UD-Q6_K_XL
 
# vi /etc/systemd/system/llama-translation.service
 
[Unit]
Description=Llama Translation Server
After=network.target
[Service]
Type=simple
User=root
ExecStart=/opt/llama.cpp/build/bin/llama-server \
    -m /opt/models/Hy-MT2-1.8B/UD-Q6_K_XL/Hy-MT2-1.8B-UD-Q6_K_XL.gguf \
    --host 0.0.0.0 \
    --port <font color = blue>8084</font> \
    --api-key <font color = blue>masuperclef</font> \
    -ngl 999 \
    -c 32768 \
    -n 4096 \
    -ctk q8_0 \
    -ctv q8_0 \
    -np 1 \
    -b 2048 \
    -ub 1024 \
    -fa on \
    --jinja \
    --temp 0.7 \
    --top-k 20 \
    --top-p 0.6 \
    --repeat-penalty 1.05 \
    --sleep-idle-seconds 300
Restart=on-failure
RestartSec=3
[Install]
WantedBy=multi-user.target
 
=== [https://huggingface.co/mradermacher/Hunyuan-MT-7B-GGUF Hunyuan-MT-7B] ===
{{Méta bandeau
  | niveau = information
  | icône = important
  | texte  = Modèle ancien et dépassé. De plus, sa licence interdit son utilisation dans de nombreux territoires, dont l'Union européenne.
}}
}}
# hf download mradermacher/Hunyuan-MT-7B-GGUF --include "*Q6*.gguf" --local-dir /opt/models/Hunyuan-MT-7B/Q6_K
# vi /etc/systemd/system/llama-translation.service
[Unit]
Description=Llama Translation Server
After=network.target
[Service]
Type=simple
User=root
ExecStart=/opt/llama.cpp/build/bin/llama-server \
    -m /opt/models/Hunyuan-MT-7B/Q6_K/Hunyuan-MT-7B.Q6_K.gguf \
    --host 0.0.0.0 \
    --port <font color = blue>8084</font> \
    --api-key <font color = blue>masuperclef</font> \
    -ngl 999 \
    -c 32768 \
    -ctk q8_0 \
    -ctv q8_0 \
    -np 1 \
    -b 2048 \
    -ub 1024 \
    -fa on \
    --temp 0.7 \
    --top-k 20 \
    --top-p 0.6 \
    --repeat-penalty 1.05 \
    --sleep-idle-seconds 300
Restart=on-failure
RestartSec=3
[Install]
WantedBy=multi-user.target
=== [https://huggingface.co/unsloth/gemma-4-26B-A4B-it-qat-GGUF gemma-4-26B-A4B-it-qat] pour test traduction intelligente rapide ===
# hf download unsloth/gemma-4-26B-A4B-it-qat-GGUF --include "*Q4*.gguf" --local-dir /opt/models/gemma-4-26B-A4B-it-qat/UD-Q4_K_XL
# vi /etc/systemd/system/llama-translation.service
{{Méta bandeau
| niveau = information
| icône = loupe
| texte =
Avec certaines versions récentes de '''llama.cpp''', le serveur peut planter lors de l'utilisation de '''Gemma 4''' avec '''MTP''' et le mode de répartition multi-GPU <code>-sm tensor</code> / <code>--split-mode tensor</code>. Le problème semble lié à la réutilisation des graphes de calcul (''graph reuse'') dans cette configuration. En attendant une correction upstream, ajouter temporairement dans la section <code>[Service]</code> du service systemd :
<pre>
Environment="LLAMA_GRAPH_REUSE_DISABLE=1"
</pre>
}}
[Unit]
Description=Llama Translation Server
After=network.target
[Service]
Type=simple
User=root
WorkingDirectory=/opt/llama.cpp
ExecStart=/opt/llama.cpp/build/bin/llama-server \
    -m /opt/models/gemma-4-26B-A4B-it-qat/UD-Q4_K_XL/gemma-4-26B-A4B-it-qat-UD-Q4_K_XL.gguf \
    --host 0.0.0.0 \
    --port <font color = blue>8084</font> \
    --api-key <font color = blue>masuperclef</font> \
    -ngl 999 \
    -sm tensor \
    --tensor-split 1,1 \
    -c 32768 \
    -ctk bf16 \
    -ctv bf16 \
    -np 1 \
    -b 1024 \
    -ub 1024 \
    -fa on \
    --jinja \
    --spec-type ngram-mod,draft-mtp \
    --spec-ngram-mod-n-match 24 \
    --spec-ngram-mod-n-min 12 \
    --spec-ngram-mod-n-max 48 \
    --spec-draft-model /opt/models/gemma-4-26B-A4B-it-qat/UD-Q4_K_XL/MTP/mtp-gemma-4-26B-A4B-it-Q4_0.gguf \
    --spec-draft-n-max 4 \
    --spec-draft-n-min 0 \
    --spec-draft-p-min 0.75 \
    --slot-save-path /kv_cache/ \
    --temp 1.0 \
    --top-p 0.95 \
    --top-k 64 \
    --min-p 0.0 \
    --presence-penalty 0.0 \
    --repeat-penalty 1.0
Restart=on-failure
RestartSec=3
[Install]
WantedBy=multi-user.target
=== [https://huggingface.co/unsloth/gemma-4-31B-it-qat-GGUF gemma-4-31B-it-qat] pour test traduction intelligente (2x 12 Go de VRAM) ===
# hf download unsloth/gemma-4-31B-it-qat-GGUF --include "*UD-Q4_K_XL*.gguf" --include "MTP/mtp-gemma-4-31B-it-Q8_0.gguf" --local-dir /opt/models/gemma-4-31B-it-qat/UD-Q4_K_XL
# vi /etc/systemd/system/llama-translation.service
{{Méta bandeau
| niveau = information
| icône = loupe
| texte =
Avec certaines versions récentes de '''llama.cpp''', le serveur peut planter lors de l'utilisation de '''Gemma 4''' avec '''MTP''' et le mode de répartition multi-GPU <code>-sm tensor</code> / <code>--split-mode tensor</code>. Le problème semble lié à la réutilisation des graphes de calcul (''graph reuse'') dans cette configuration. En attendant une correction upstream, ajouter temporairement dans la section <code>[Service]</code> du service systemd :
<pre>
Environment="LLAMA_GRAPH_REUSE_DISABLE=1"
</pre>
}}
[Unit]
Description=Llama Translation Server
After=network.target
[Service]
Type=simple
User=root
WorkingDirectory=/opt/llama.cpp
ExecStart=/opt/llama.cpp/build/bin/llama-server \
    -m /opt/models/gemma-4-31B-it-qat/UD-Q4_K_XL/gemma-4-31B-it-qat-UD-Q4_K_XL.gguf \
    --host 0.0.0.0 \
    --port <font color = blue>8084</font> \
    --api-key <font color = blue>masuperclef</font> \
    -ngl 999 \
    -sm tensor \
    --tensor-split 1,1 \
    -c 32768 \
    -ctk q8_0 \
    -ctv q8_0 \
    -np 1 \
    -b 1024 \
    -ub 1024 \
    -fa on \
    --jinja \
    --spec-type ngram-mod,ngram-map-k4v,draft-mtp \
    --spec-ngram-mod-n-match 24 \
    --spec-ngram-mod-n-min 12 \
    --spec-ngram-mod-n-max 48 \
    --spec-ngram-map-k4v-size-n 12 \
    --spec-ngram-map-k4v-size-m 48 \
    --spec-ngram-map-k4v-min-hits 1 \
    --spec-draft-model /opt/models/gemma-4-31B-it-qat/UD-Q4_K_XL/MTP/mtp-gemma-4-31B-it-Q8_0.gguf \
    --spec-draft-n-max 4 \
    --spec-draft-n-min 0 \
    --spec-draft-p-min 0.75 \
    --slot-save-path /kv_cache/ \
    --temp 1.0 \
    --top-p 0.95 \
    --top-k 64 \
    --min-p 0.0 \
    --presence-penalty 0.0 \
    --repeat-penalty 1.0
Restart=on-failure
RestartSec=3
[Install]
WantedBy=multi-user.target

Dernière version du 27 août 2026 à 17:58

Prérequis

  • Un GPU est recommandé, idéalement NVIDIA avec le plus de VRAM possible. Contrairement à Ollama ou vLLM, llama.cpp permet cependant de répartir le modèle entre GPU et CPU si la VRAM est insuffisante, au prix d’une baisse de performances. Voir ce lien pour partager un GPU dans un LXC
  • Les modèles peuvent fonctionner sur CPU uniquement, mais avec des performances très faibles (souvent inutilisables en pratique pour un usage interactif).
  • VRAM recommandée : dépend du niveau d’offload GPU. Pour un usage optimal, prévoir environ la taille du modèle (en Q4) + 1 à 3 Go pour le KV cache. Il est toutefois possible de réduire la VRAM nécessaire en déportant une partie du modèle en RAM.
  • RAM recommandée : au minimum équivalente à la taille du modèle, idéalement 1,5 à 2 fois, notamment si une partie du modèle est exécutée sur CPU.
  • Espace disque à prévoir en fonction du ou des modèle que vous allez utiliser ou tester, Exemples :
    • qwen2.5:7b (Q4) ≈ 4–5 Go
    • qwen2.5:14b (Q4) ≈ 8–10 Go
    • llama3:70b (Q4) ≈ 35–40 Go
  • Utiliser un SSD/NVMe améliore fortement les temps de chargement.
  • CPU / vCPU recommandés :
    • Avec GPU : 4 à 8 vCPU recommandés (gestion du KV cache et offload partiel CPU)
    • Sans GPU : prévoir au minimum 8 à 16 vCPU, les performances restant très limitées.
  • Note : Q4 correspond au niveau de "quantization", c’est-à-dire une réduction de la précision numérique du modèle afin de diminuer son utilisation en mémoire (VRAM). Les niveaux vont généralement de Q1 à Q8 : Q8 est le plus précis (proche du modèle original), mais aussi le plus gourmand en ressources. À l’inverse, Q1 est très léger mais fortement dégradé. En pratique, Q4 (voire Q5) est généralement considéré comme le meilleur compromis entre performances, consommation de VRAM et qualité de réponse.

Installation

Prérequis système

Installer les dépendances nécessaires :

# apt update && apt upgrade
# apt install -y git build-essential cmake curl libcurl4-openssl-dev ccache

Récupération du projet

# cd /opt
# git clone https://github.com/ggerganov/llama.cpp.git

Compilation

Choisir une seule méthode de compilation selon le matériel disponible.

Méthode Description Recommandation
CPU uniquement Compilation sans accélération GPU. Non testé / déconseillé pour de gros modèles.
GPU NVIDIA CUDA Compilation avec accélération GPU via CUDA. Recommandé avec une carte NVIDIA compatible.

En cas de changement de méthode de compilation, supprimer le dossier de compilation avant de relancer CMake :

# rm -rf /opt/llama.cpp/build
Option A — CPU uniquement

Cette méthode ne nécessite pas de GPU compatible, mais les performances seront limitées.

# cd /opt/llama.cpp
# cmake -B build
# cmake --build build -j$(nproc)
Option B — GPU NVIDIA CUDA

Cette méthode est recommandée avec une carte NVIDIA compatible CUDA.

Installation du support GPU NVIDIA CUDA

(Optionnel) Vérifier la dernière version disponible du paquet cuda-keyring :

# curl https://developer.download.nvidia.com/compute/cuda/repos/debian13/x86_64/ | grep keyring

Installer le dépôt CUDA NVIDIA :

# cd /opt
# wget https://developer.download.nvidia.com/compute/cuda/repos/debian13/x86_64/cuda-keyring_1.1-1_all.deb
# dpkg -i cuda-keyring_1.1-1_all.deb
# apt update

Installer le toolkit CUDA :

# apt install -y cuda-toolkit

Compilation avec support CUDA

Quelques dépendances :

# apt install libnccl2 libnccl-dev

Connaître les versions de nvcc installées :

# find /usr /opt -name nvcc 2>/dev/null

Compiler llama.cpp avec le support CUDA :

# cd /opt/llama.cpp
# export CUDACXX=/usr/local/cuda-13.2/bin/nvcc
# cmake -B build -DGGML_CUDA=ON -DGGML_CUDA_FA_ALL_QUANTS=ON -DCMAKE_BUILD_TYPE=Release -DGGML_NATIVE=ON -DLLAMA_OPENSSL=ON -DGGML_LTO=ON
# cmake --build build -j$(nproc)

Emplacement des binaires

Les binaires seront disponibles dans :

/opt/llama.cpp/build/bin/

Téléchargement d’un modèle (format GGUF)

Voir Client Hugging Face

Mode serveur (API compatible OpenAI)

# /opt/llama.cpp/build/bin/llama-server \
  -m /opt/llama.cpp/models/models--HauhauCS--Qwen3.5-9B-Uncensored-HauhauCS-Aggressive/snapshots/1234567890abcdef1234567890abcdef12345678/Qwen3.5-9B-Uncensored-HauhauCS-Aggressive-Q4_K_M.gguf \
  -c 2048 \
  -ngl 35 \
  --host 0.0.0.0 \
  --port 8080

Le serveur est accessible via :

http://IP:8080

Test API

# curl http://localhost:8080/v1/chat/completions \
  -H "Content-Type: application/json" \
  -d '{
    "model": "local",
    "messages": [
      {"role": "user", "content": "Bonjour"}
    ]
  }'

API key

Pour activer une authentification par clé API, ajouter le paramètre --api-key ou --api-key-file :

--api-key masuperclef

ou :

--api-key-file /dossier/clef.txt

Le fichier contenant la clé API doit être stocké dans un emplacement non accessible aux autres utilisateurs, par exemple dans /root/ si le service tourne en root.

Exemple :

# chmod 600 /root/llama-api-key.txt

SSL

Pour que la clé API ne transite pas en clair sur le réseau, il convient d'utiliser HTTPS.


Avec certificat auto-signé (déconseillé)
  • Créer un dossier de configuration :
# mkdir -p /etc/llama-server
# chmod 700 /etc/llama-server
  • Installer les outils nécessaires :
# apt update && apt upgrade
# apt install openssl curl
  • Créer le fichier contenant l’API key si nécessaire :
# vi /etc/llama-server/api-keys.txt
masuperclef
# chmod 600 /etc/llama-server/api-keys.txt
  • Générer les fichiers SSL nécessaires :
# openssl req -x509 -newkey rsa:4096 -sha256 -days 3650 -nodes \
  -keyout /etc/llama-server/server.key \
  -out /etc/llama-server/server.crt \
  -subj "/CN=IP_SERVEUR" \
  -addext "subjectAltName = IP:IP_SERVEUR"
  • Sécuriser les fichiers :
# chmod 600 /etc/llama-server/server.key
# chmod 644 /etc/llama-server/server.crt

  • Ajouter à la configuration de llama.cpp :
...
 --port 8080 \
 --api-key-file /etc/llama-server/api-keys.txt \
 --ssl-key-file /etc/llama-server/server.key \
 --ssl-cert-file /etc/llama-server/server.crt
...

Optimisation (KV cache, performances, latence)

  • Le paramètre de contexte (-c) influence directement la quantité de mémoire utilisée par le KV cache. Plus il est élevé, plus la consommation de VRAM augmente, ainsi que la latence de traitement du prompt.
  • En pratique, une valeur de 2048 constitue souvent un bon compromis sur un GPU de 12 Go. Augmenter à 4096 peut améliorer la mémoire conversationnelle, mais au prix d’une consommation de VRAM plus importante.
  • Le paramètre -ngl détermine le nombre de couches envoyées au GPU.
    • Plus la valeur est élevée, plus les performances augmentent.
    • Si la VRAM est insuffisante, réduire cette valeur permet de déporter une partie du modèle sur CPU.
    • Il est possible d’utiliser -ngl 999 afin de laisser llama.cpp charger automatiquement le maximum de couches possible sur le GPU.
  • Le paramètre -fa active Flash Attention.
    • Cette option améliore généralement les performances de traitement du prompt et réduit légèrement la latence.
    • Elle est recommandée sur GPU NVIDIA récents.
  • Le paramètre -b (batch size) influence la vitesse de traitement du prompt.
    • Une valeur plus élevée peut améliorer les performances, mais augmente également la consommation de mémoire.
    • En cas de manque de VRAM, réduire cette valeur peut stabiliser le serveur.
  • Le paramètre -ub (micro-batch size) permet d’ajuster plus finement l’utilisation mémoire.
    • Une valeur plus faible réduit les pics de consommation mémoire.
    • Une valeur plus élevée peut améliorer légèrement les performances si la VRAM le permet.
  • Le paramètre -np (n_parallel) détermine le nombre de requêtes pouvant être traitées en parallèle.
    • Une valeur élevée augmente la consommation de VRAM.
    • Pour un usage personnel ou mono-utilisateur, -np 1 est généralement recommandé.
    • Des valeurs supérieures sont surtout utiles pour une API ou un usage multi-utilisateurs.
  • Pour les modèles multimodaux / vision, le fichier mmproj sert à projeter les données image vers le modèle texte.
    • Par défaut, les versions récentes de llama.cpp peuvent décharger ce projecteur multimodal sur le GPU.
    • Cela améliore généralement la vitesse d’analyse des images, mais consomme un peu plus de VRAM.
    • Si la VRAM est limitée, il est possible de forcer le mmproj à rester sur CPU avec :
# --no-mmproj-offload
    • Exemple :
# /opt/llama.cpp/build/bin/llama-server \
    -m /models/modele-vision.gguf \
    --mmproj /models/mmproj.gguf \
    --no-mmproj-offload \
    -ngl 999
    • Si aucune option --mmproj n’est utilisée, --no-mmproj-offload n’a pas d’intérêt.
    • En pratique :
      • VRAM suffisante : laisser le comportement par défaut, avec le mmproj sur GPU.
      • VRAM limitée : tester --no-mmproj-offload pour économiser de la VRAM, au prix d’une analyse d’image potentiellement plus lente.

Exemple de configuration optimisée pour un GPU de 12 Go :

# /opt/llama.cpp/build/bin/llama-server \
  -m /opt/llama.cpp/models/models--HauhauCS--Qwen3.5-9B-Uncensored-HauhauCS-Aggressive/snapshots/1234567890abcdef1234567890abcdef12345678/Qwen3.5-9B-Uncensored-HauhauCS-Aggressive-Q4_K_M.gguf \
  -c 2048 \
  -ngl 999 \
  -fa on \
  -b 1024 \
  -ub 512 \
  -np 1 \
  --host 0.0.0.0 \
  --port 8080

Explication :

-c    : taille du contexte
-ngl  : nombre de couches envoyées au GPU
-fa   : active Flash Attention
-b    : taille du batch de traitement
-ub   : taille du micro-batch
-np   : nombre de requêtes traitées en parallèle
  • Si le serveur démarre correctement et qu’il reste de la marge en VRAM, il est possible d’augmenter progressivement -b ou le contexte.
  • En cas d’erreur mémoire ou de performances instables :
    • réduire -b
    • réduire -ngl
    • réduire -c

Méthode d’ajustement recommandée

  • Commencer avec :
    • -c 2048
    • -ngl 999
    • -fa on
    • -b 512
    • -ub 256
    • -np 1
  • Vérifier ensuite l’utilisation mémoire :
# nvidia-smi
  • Si la VRAM est presque saturée :
    • réduire -b
    • puis -ub
    • puis réduire -ngl si nécessaire
  • Si au contraire une marge importante reste disponible :
    • essayer -b 1024
    • ou augmenter légèrement le contexte

Remarques

  • Contrairement à Ollama, llama.cpp ne décharge pas automatiquement le modèle après inactivité lorsque le serveur reste lancé.
  • Le meilleur réglage dépend du modèle utilisé, du niveau de quantization, du contexte choisi et de la quantité de VRAM disponible.
  • Sur un petit GPU, il est généralement préférable de privilégier un contexte raisonnable et un nombre limité de requêtes parallèles.

Multi-GPU

llama.cpp peut utiliser plusieurs GPU afin de répartir le chargement du modèle lorsque celui-ci ne tient pas entièrement sur une seule carte graphique.

L'intérêt principal du multi-GPU avec llama.cpp est souvent de pouvoir charger un modèle plus gros en VRAM, plutôt que d'obtenir un gain de vitesse parfaitement linéaire.

Vérifier les GPU disponibles

Vérifier que les cartes NVIDIA sont bien visibles :

# nvidia-smi

Avec llama.cpp compilé avec CUDA, les GPU disponibles sont normalement détectés au lancement.

Options principales

Option Description
-ngl ou --gpu-layers Nombre de couches du modèle à envoyer sur GPU.
--split-mode Méthode de répartition du modèle entre plusieurs GPU.
--tensor-split Répartition manuelle de la charge entre les GPU.
--main-gpu GPU principal utilisé notamment pour certaines allocations et opérations.

Split mode

Le paramètre --split-mode contrôle la façon dont llama.cpp répartit le modèle entre plusieurs GPU.

Mode Description Usage conseillé
none Pas de répartition multi-GPU. À utiliser si un seul GPU doit être utilisé.
layer Répartit les couches du modèle entre les GPU. Mode classique et généralement le plus simple.
row Répartit certains tenseurs entre les GPU. Plus spécifique, à tester selon le modèle et le matériel.

En pratique, le mode layer est souvent le plus simple pour commencer.

Exemple simple avec deux GPU

Lancer un serveur llama.cpp en utilisant plusieurs GPU :

# /opt/llama.cpp/build/bin/llama-server \
    -m /models/modele.gguf \
    -ngl 999 \
    --split-mode layer

Avec -ngl 999, llama.cpp tente de charger le maximum de couches possible sur les GPU.

Répartition manuelle avec tensor-split

Par défaut, llama.cpp peut répartir les couches de manière automatique. En cas de GPU avec des quantités de VRAM différentes, ou si une carte tombe en OOM, il peut être nécessaire d'utiliser --tensor-split.

Exemple avec deux GPU de 12 Go :

# /opt/llama.cpp/build/bin/llama-server \
    -m /models/modele.gguf \
    -ngl 999 \
    --split-mode layer \
    --tensor-split 12,12

Exemple avec un GPU de 24 Go et un GPU de 12 Go :

# /opt/llama.cpp/build/bin/llama-server \
    -m /models/modele.gguf \
    -ngl 999 \
    --split-mode layer \
    --tensor-split 24,12

Les valeurs de --tensor-split sont des proportions. Il n'est pas obligatoire d'indiquer exactement la VRAM en Go, mais c'est une méthode simple pour garder une répartition logique.

Ainsi, ces deux exemples sont équivalents dans l'idée :

# --tensor-split 24,12
# --tensor-split 2,1

Choisir le GPU principal

Le paramètre --main-gpu permet de choisir le GPU principal.

Exemple avec le GPU 0 comme carte principale :

# /opt/llama.cpp/build/bin/llama-server \
    -m /models/modele.gguf \
    -ngl 999 \
    --split-mode layer \
    --tensor-split 12,12 \
    --main-gpu 0

Si le GPU 0 est déjà utilisé par l'affichage ou par un autre service, il peut être utile de choisir un autre GPU principal.

Sélectionner les GPU visibles

Pour limiter llama.cpp à certaines cartes NVIDIA, il est possible d'utiliser CUDA_VISIBLE_DEVICES.

Exemple pour n'utiliser que les GPU 1 et 2 :

# CUDA_VISIBLE_DEVICES=1,2 /opt/llama.cpp/build/bin/llama-server \
    -m /models/modele.gguf \
    -ngl 999 \
    --split-mode layer \
    --tensor-split 12,12

Dans ce cas, les GPU visibles par llama.cpp seront renumérotés à partir de 0.

Ainsi, avec :

# CUDA_VISIBLE_DEVICES=1,2

le GPU physique 1 devient le GPU 0 pour llama.cpp, et le GPU physique 2 devient le GPU 1.

Exemple avec trois GPU

Exemple avec trois RTX 3060 12 Go :

# /opt/llama.cpp/build/bin/llama-server \
    -m /models/modele.gguf \
    -ngl 999 \
    --split-mode layer \
    --tensor-split 12,12,12 \
    --main-gpu 0

Exemple avec une RTX 3090 24 Go et deux RTX 3060 12 Go :

# /opt/llama.cpp/build/bin/llama-server \
    -m /models/modele.gguf \
    -ngl 999 \
    --split-mode layer \
    --tensor-split 24,12,12 \
    --main-gpu 0

Vérifier l'utilisation mémoire

Pendant le lancement et l'inférence, surveiller la VRAM :

# watch -n 1 nvidia-smi

Si une carte arrive en manque de mémoire, il faut réduire la charge :

  • diminuer -c ;
  • diminuer -b ;
  • diminuer -ub ;
  • ajuster --tensor-split ;
  • réduire -ngl ;
  • utiliser un quant plus léger.

Performances attendues

Le multi-GPU dans llama.cpp ne donne pas toujours une accélération proportionnelle au nombre de GPU.

En pratique :

  • si le modèle tient déjà entièrement sur un seul GPU, ajouter un second GPU peut parfois ne pas améliorer les performances ;
  • si le modèle ne tient pas sur un seul GPU, le multi-GPU peut permettre d'éviter l'offload CPU, ce qui améliore fortement les performances ;
  • les performances dépendent beaucoup du PCIe, du modèle, du quant, du contexte et du mode de split ;
  • deux GPU identiques sont plus simples à exploiter que deux GPU très différents.

Résumé pratique

Pour commencer avec deux GPU identiques :

# /opt/llama.cpp/build/bin/llama-server \
    -m /models/modele.gguf \
    -ngl 999 \
    --split-mode layer \
    --tensor-split 12,12 \
    -c 4096 \
    -fa

Pour un usage personnel, il est conseillé de garder :

# -np 1

afin d'éviter une consommation mémoire inutilement élevée.

Service systemd

Création d'un service pour automatiser le lancement du serveur llama.cpp, tout d'abord créer un lien propre vers le modèle si nécessaire :

# ln -s /opt/llama.cpp/models/models--HauhauCS--Qwen3.5-9B-Uncensored-HauhauCS-Aggressive/snapshots/1234567890abcdef1234567890abcdef12345678/Qwen3.5-9B-Uncensored-HauhauCS-Aggressive-Q4_K_M.gguf /opt/llama.cpp/models/qwen35-9b-uncensored-q4km.gguf

Créer le service :

# vi /etc/systemd/system/llama-server.service
[Unit]
Description=llama.cpp server
After=network.target

[Service]
Type=simple
User=root
WorkingDirectory=/opt/llama.cpp
ExecStart=/opt/llama.cpp/build/bin/llama-server -m /opt/llama.cpp/models/qwen35-9b-uncensored-q4km.gguf -c 2048 -ngl 999 -fa on -b 1024 -ub 512 -np 1 --host 0.0.0.0 --port 8080
Restart=always
RestartSec=5

[Install]
WantedBy=multi-user.target
# systemctl daemon-reload
# systemctl enable llama-server
# systemctl start llama-server

Proxy OpenClaw

Source

Il est possible d'utiliser un proxy Python afin de contourner certaines incompatibilités (rôles, outils, gestion du « thinking ») entre OpenClaw et llama.cpp.

Cependant, pour un usage stable, il est recommandé d’utiliser un backend nativement compatible tel que Ollama (usage personnel) ou vLLM (usage avancé / multi-utilisateurs).

Mise à jour

Pour mettre à jour llama.cpp vers la dernière version disponible :

# cd /opt/llama.cpp
# git pull

Après une mise à jour, il est recommandé de supprimer l’ancien dossier de compilation puis de recompiler :

# rm -rf build

Recompiler ensuite avec la même méthode que lors de l’installation initiale.

Recompilation CPU uniquement

# cmake -B build
# cmake --build build -j$(nproc)

Recompilation GPU NVIDIA CUDA

# export CUDACXX=/usr/local/cuda-13.2/bin/nvcc
# cmake -B build -DGGML_CUDA=ON -DGGML_CUDA_FA_ALL_QUANTS=ON -DCMAKE_BUILD_TYPE=Release -DGGML_NATIVE=ON -DLLAMA_OPENSSL=ON -DGGML_LTO=ON
# cmake --build build -j$(nproc)

Llama bench

  • Commande de base :
# /opt/llama.cpp/build/bin/llama-bench

Exemple de test de stabilité avec MoE

On récupère la commande réellement exécutée par llama (le service doit être actif) :

# tr '\0' ' ' < /proc/$(pidof llama-server)/cmdline

Résultat :

/opt/llama.cpp/build/bin/llama-server -m /opt/llama.cpp/models/Qwen3.6-35B-A3B-APEX-I-Balanced.gguf --mmproj /opt/llama.cpp/models/mmproj-F16.gguf -ngl 999 -t 8 -tb 16 -b 4096 -ub 4096 -c 131072 --cache-ram 2048 -np 1 --kv-unified -fa on --no-mmproj-offload --no-mmap -ncmoe 35 -ctk q8_0 -ctv q8_0 --reasoning on --jinja --chat-template-kwargs {"preserve_thinking": true} --reasoning-budget 8096 --reasoning-budget-message D'accord, assez réfléchi, plus d'attente. Passons à l'action. --temp 0.6 --top-k 20 --top-p 0.95 --min-p 0.0 --presence-penalty 0.0 --repeat-penalty 1.0 --swa-full --cache-reuse 512 --host IP_SERVEUR --port 8080 --api-key-file /etc/llama-server/api-keys.txt --ssl-key-file /etc/llama-server/server.key --ssl-cert-file /etc/llama-server/server.crt

On peut entre autre voir les deux valeurs en rouge, à savoir la taille du context : 131072 et le nombre d'experts automatiquement déchargé en RAM : 35, on commence par arrêter le service :

# systemctl stop llama-server

Puis on lance le test :

 # /opt/llama.cpp/build/bin/llama-bench \
  -m "/opt/llama.cpp/models/Qwen3.6-35B-A3B-APEX-I-Balanced.gguf" \
  -ngl 999 \
  -t 8 \
  -b 4096 \
  -ub 4096 \
  -fa 1 \
  -mmp 0 \
  -ncmoe 35 \
  -ctk q8_0 \
  -ctv q8_0 \
  -p 1000 \
  -n 128 \
  -d 0,16000,32000,64000,96000,120000 \
  -r 3

Le dernier test utilisera environ :

120000 + 1000 + 128 = 121128 tokens

Cela reste proche de la limite configurée de 131072 tokens, avec une marge d'environ 9944 tokens. Si ce test ne plante pas et que les performances restent cohérentes, la configuration devrait tenir en mémoire et être raisonnablement stable avec ce niveau de contexte.


Benchmark multi-GPU

Tester les performances avec llama-bench :

# /opt/llama.cpp/build/bin/llama-bench \
    -m /models/modele.gguf \
    -ngl 999 \
    --split-mode layer \
    --tensor-split 12,12

Comparer avec un seul GPU :

# CUDA_VISIBLE_DEVICES=0 /opt/llama.cpp/build/bin/llama-bench \
    -m /models/modele.gguf \
    -ngl 999

Puis avec deux GPU :

# CUDA_VISIBLE_DEVICES=0,1 /opt/llama.cpp/build/bin/llama-bench \
    -m /models/modele.gguf \
    -ngl 999 \
    --split-mode layer \
    --tensor-split 12,12

Les résultats à comparer sont principalement :

pp : prompt processing
tg : token generation

Utilisation d'un LoRA

Installation des dépendances

# cd /opt/llama.cpp
# python3 -m venv .venv-convert
# source .venv-convert/bin/activate
# pip install -U pip
# pip install -e .

Conversion

# cd /opt/llama.cpp
# source .venv-convert/bin/activate
# python3 convert_lora_to_gguf.py --base-model-id tencent/Hy-MT2-1.8B --trust-remote-code --outtype f16 --outfile /opt/models/Hy-MT2-1.8B/mon_lora.gguf /opt/lora/mon_lora/

Utilisation dans Llama.cpp

Ajouter simplement la ligne suivante :

--lora /opt/models/Hy-MT2-1.8B/mon_lora.gguf \

Exemple de configuration d’un modèle MoE avec déchargement des experts en RAM

Machine de test :

  • LXC Debian 13
  • 8 vCPU (E5-2667 v2)
  • RTX 3060 12GB (PCIe 3.0 x8)
  • DDR3-1866
    • À noter que la mémoire des experts déchargés en RAM est consommée sur l’hôte, et non comptabilisée dans le LXC, car elle transite via le pilote Nvidia.
    • Dans une VM ou sur une machine physique, prévoir au minimum la taille du modèle en RAM, avec idéalement 30 à 50 % de marge supplémentaire selon le contexte, le KV cache et les buffers.

Qwen3.6-35B-A3B-GGUF:UD-Q5_K_XL

# /opt/llama.cpp/build/bin/llama-cli -hf unsloth/Qwen3.6-35B-A3B-GGUF:UD-Q5_K_XL
# ln -s /opt/llama.cpp/models/models--unsloth--Qwen3.6-35B-A3B-GGUF/snapshots/1234567890abcdef1234567890abcdef12345678/Qwen3.6-35B-A3B-UD-Q5_K_XL.gguf /opt/llama.cpp/models/Qwen3.6-35B-A3B-UD-Q5_K_XL.gguf
# ln -s /opt/llama.cpp/models/models--unsloth--Qwen3.6-35B-A3B-GGUF/snapshots/1234567890abcdef1234567890abcdef12345678/mmproj-BF16.gguf /opt/llama.cpp/models/mmproj-F16.gguf
ExecStart=/opt/llama.cpp/build/bin/llama-server \
  -m /opt/llama.cpp/models/Qwen3.6-35B-A3B-UD-Q5_K_XL.gguf \
  --mmproj /opt/llama.cpp/models/mmproj-F16.gguf \
  -ngl 999 \
  -t 8 \
  -tb 16 \
  -b 4096 \
  -ub 4096 \
  -c 131072 \
  --cache-ram 2048 \
  -np 1 \
  --kv-unified \
  -fa on \
  --no-mmproj-offload \
  --no-mmap \
  -ncmoe 35 \
  -ctk q8_0 \
  -ctv q8_0 \
  --reasoning on \
  --jinja \
  --chat-template-kwargs '{"preserve_thinking": true}' \
  --reasoning-budget 8096 \
  --reasoning-budget-message "D'accord, assez réfléchi, plus d'attente. Passons à l'action." \
  --temp 0.6 \
  --top-k 20 \
  --top-p 0.95 \
  --min-p 0.0 \
  --presence-penalty 0.0 \
  --repeat-penalty 1.0 \
  --swa-full \
  --cache-reuse 512 \
  --host 192.168.1.123 \
  --port 8080

Qwen3.6-35B-A3B-APEX-I-Balanced

# /opt/llama.cpp/build/bin/llama-cli --hf-repo mudler/Qwen3.6-35B-A3B-APEX-GGUF --hf-file Qwen3.6-35B-A3B-APEX-I-Balanced.gguf
# ln -s /opt/llama.cpp/models/models--mudler--Qwen3.6-35B-A3B-APEX-GGUF/snapshots/1234567890abcdef1234567890abcdef12345678/Qwen3.6-35B-A3B-APEX-I-Balanced.gguf /opt/llama.cpp/models/Qwen3.6-35B-A3B-APEX-I-Balanced.gguf
# ln -s /opt/llama.cpp/models/models--mudler--Qwen3.6-35B-A3B-APEX-GGUF/snapshots/1234567890abcdef1234567890abcdef12345678/mmproj.gguf /opt/llama.cpp/models/mmproj-F16.gguf
ExecStart=/opt/llama.cpp/build/bin/llama-server \
  -m /opt/llama.cpp/models/Qwen3.6-35B-A3B-APEX-I-Balanced.gguf \
  --mmproj /opt/llama.cpp/models/mmproj-F16.gguf \
  -ngl 999 \
  -t 8 \
  -tb 16 \
  -b 4096 \
  -ub 4096 \
  -c 131072 \
  --cache-ram 2048 \
  -np 1 \
  --kv-unified \
  -fa on \
  --no-mmproj-offload \
  --no-mmap \
  -ncmoe 35 \
  -ctk q8_0 \
  -ctv q8_0 \
  --reasoning on \
  --jinja \
  --chat-template-kwargs '{"preserve_thinking": true}' \
  --reasoning-budget 8096 \
  --reasoning-budget-message "D'accord, assez réfléchi, plus d'attente. Passons à l'action." \
  --temp 0.6 \
  --top-k 20 \
  --top-p 0.95 \
  --min-p 0.0 \
  --presence-penalty 0.0 \
  --repeat-penalty 1.0 \
  --swa-full \
  --cache-reuse 512 \
  --host 192.168.1.123 \
  --port 8080

Exemple de configuration d’un modèle MTP + sm tensor

Qwen3.6-27B-UD-Q4_K_XL + kvcache Q8 Q8 (2x 12 Go de VRAM)

# hf download unsloth/Qwen3.6-27B-MTP-GGUF  --include Qwen3.6-27B-UD-Q4_K_XL.gguf --include "mmproj-BF16.gguf" --local-dir /opt/models/Qwen3.6-27B-MTP-GGUF/UD-Q4_K_XL
[Unit]
Description=llama.cpp Qwen3.6-27B MTP server
After=network.target

[Service]
Type=simple
User=root
WorkingDirectory=/opt/llama.cpp

ExecStart=/opt/llama.cpp/build/bin/llama-server \
  -m /opt/models/Qwen3.6-27B-MTP-GGUF/UD-Q4_K_XL/Qwen3.6-27B-UD-Q4_K_XL.gguf \
  --mmproj /opt/models/Qwen3.6-27B-MTP-GGUF/UD-Q4_K_XL/mmproj-BF16.gguf \
  --no-mmproj-offload \
  --image-min-tokens 1024 \
  -ngl 999 \
  -sm tensor \
  -ts 1/1 \
  -t 4 \
  -tb 4 \
  -b 1024 \
  -ub 1024 \
  -c 98304 \
  -np 1 \
  -fa on \
  --load-mode none \
  -ctk q8_0 \
  -ctv q8_0 \
  --spec-type draft-mtp \
  --spec-draft-n-max 3 \
  --spec-draft-n-min 0 \
  --spec-draft-p-min 0.75 \
  --reasoning on \
  --reasoning-preserve \
  --jinja \
  --chat-template-file /opt/models/Qwen-Fixed-Chat-Templates/chat_template.jinja \
  --chat-template-kwargs '{"preserve_thinking": true}' \
  --reasoning-format none \
  --reasoning-budget 16192 \
  --reasoning-budget-message "D'accord, assez réfléchi, plus d'attente. Passons à l'action." \
  --slot-save-path /kv_cache/ \
  --temp 0.6 \
  --top-k 20 \
  --top-p 0.95 \
  --min-p 0.0 \
  --presence-penalty 0.0 \
  --repeat-penalty 1.0 \
  --host 0.0.0.0 \
  --port 8080 \
  --api-key-file /etc/ai/ssl/api-keys.txt \
  --ssl-key-file /etc/ai/ssl/server.key \
  --ssl-cert-file /etc/ai/ssl/server.crt

Restart=on-failure
RestartSec=5

[Install]
WantedBy=multi-user.target

Exemple de configuration d’un modèle MTP + sm tensor +ngram

Qwen3.6-27B-UD-Q4_K_XL + kvcache Q8 Q8 (2x 12 Go de VRAM)

# hf download unsloth/Qwen3.6-27B-MTP-GGUF  --include Qwen3.6-27B-UD-Q4_K_XL.gguf --include "mmproj-BF16.gguf" --local-dir /opt/models/Qwen3.6-27B-MTP-GGUF/UD-Q4_K_XL
[Unit]
Description=llama.cpp Qwen3.6-27B MTP server
After=network.target

[Service]
Type=simple
User=root
WorkingDirectory=/opt/llama.cpp

ExecStart=/opt/llama.cpp/build/bin/llama-server \
  -m /opt/models/Qwen3.6-27B-MTP-GGUF/UD-Q4_K_XL/Qwen3.6-27B-UD-Q4_K_XL.gguf \
  --mmproj /opt/models/Qwen3.6-27B-MTP-GGUF/UD-Q4_K_XL/mmproj-BF16.gguf \
  --no-mmproj-offload \
  --image-min-tokens 1024 \
  -ngl 999 \
  -sm tensor \
  -ts 1/1 \
  -t 4 \
  -tb 4 \
  -b 1024 \
  -ub 1024 \
  -c 98304 \
  -np 1 \
  -fa on \
  --load-mode none \
  -ctk q8_0 \
  -ctv q8_0 \
  --spec-type ngram-mod,draft-mtp \
  --spec-ngram-mod-n-match 24 \
  --spec-ngram-mod-n-min 12 \
  --spec-ngram-mod-n-max 48 \
  --spec-draft-n-max 3 \
  --spec-draft-n-min 0 \
  --spec-draft-p-min 0.75 \
  --reasoning on \
  --reasoning-preserve \
  --jinja \
  --chat-template-file /opt/models/Qwen-Fixed-Chat-Templates/chat_template.jinja \
  --chat-template-kwargs '{"preserve_thinking": true}' \
  --reasoning-format none \
  --reasoning-budget 16192 \
  --reasoning-budget-message "D'accord, assez réfléchi, plus d'attente. Passons à l'action." \
  --slot-save-path /kv_cache/ \
  --temp 0.6 \
  --top-k 20 \
  --top-p 0.95 \
  --min-p 0.0 \
  --presence-penalty 0.0 \
  --repeat-penalty 1.0 \
  --host 0.0.0.0 \
  --port 8080 \
  --api-key-file /etc/ai/ssl/api-keys.txt \
  --ssl-key-file /etc/ai/ssl/server.key \
  --ssl-cert-file /etc/ai/ssl/server.crt

Restart=on-failure
RestartSec=5

[Install]
WantedBy=multi-user.target

Modèles RAG

Embedding

# hf download SuperPauly/harrier-oss-v1-0.6b-gguf --include "*Q8_0*.gguf" --local-dir /opt/models/harrier-oss-v1-0.6b/Q8_0
# vi /etc/systemd/system/llama-embedding.service
[Unit]
Description=llama-server Embedding
After=network-online.target
Wants=network-online.target

[Service]
Type=simple
User=root
WorkingDirectory=/opt/llama.cpp

ExecStart=/opt/llama.cpp/build/bin/llama-server \
  -m /opt/models/harrier-oss-v1-0.6b/Q8_0/harrier-oss-v1-0.6B-Q8_0.gguf \
  --host 0.0.0.0 \
  --port 8080 \
  --api-key masuperclef \
  --embedding \
  --pooling last \
  -c 4096 \
  -np 1 \
  -b 1024 \
  -ub 1024 \
  -ctk q8_0 \
  -ctv q8_0 \
  -ngl 999 \
  -t 4 \
  --sleep-idle-seconds 300

Restart=on-failure
RestartSec=5

[Install]
WantedBy=multi-user.target

Rerank

# hf download Felladrin/gguf-Q8_0-bge-reranker-v2-m3 --include "*q8_0*.gguf" --local-dir /opt/models/bge-reranker-v2-m3/Q8_0
# vi /etc/systemd/system/llama-rerank.service
[Unit]
Description=llama-server Rerank
After=network-online.target
Wants=network-online.target

[Service]
Type=simple
User=root
WorkingDirectory=/opt/llama.cpp

ExecStart=/opt/llama.cpp/build/bin/llama-server \
  -m /opt/models/bge-reranker-v2-m3/Q8_0/bge-reranker-v2-m3-q8_0.gguf \
  --host 0.0.0.0 \
  --port 8081 \
  --api-key masuperclef \
  --reranking \
  --pooling rank \
  -c 8192 \
  -np 1 \
  -b 4096 \
  -ub 4096 \
  -ctk q8_0 \
  -ctv q8_0 \
  -ngl 999 \
  -t 4 \
  --sleep-idle-seconds 300

Restart=on-failure
RestartSec=5

[Install]
WantedBy=multi-user.target
# hf download jinaai/jina-reranker-v3.5-GGUF --include "*Q8_0*.gguf" --local-dir /opt/models/jina-reranker-v3.5/Q8_0
# vi /etc/systemd/system/llama-rerank.service
[Unit]
Description=llama-server Rerank
After=network-online.target
Wants=network-online.target

[Service]
Type=simple
User=root
WorkingDirectory=/opt/llama.cpp

ExecStart=/opt/llama.cpp/build/bin/llama-server \
  -m /opt/models/jina-reranker-v3.5/Q8_0/jina-reranker-v3.5-Q8_0.gguf \
  --host 0.0.0.0 \
  --port 8081 \
  --api-key masuperclef \
  --reranking \
  --pooling rank \
  -c 16384 \
  -np 1 \
  -b 4096 \
  -ub 4096 \
  -ctk q8_0 \
  -ctv q8_0 \
  -ngl 999 \
  -t 4 \
  --sleep-idle-seconds 300

Restart=on-failure
RestartSec=5

[Install]
WantedBy=multi-user.target
# hf download jinaai/jina-reranker-v3-GGUF --include "*Q8_0*.gguf" --local-dir /opt/models/jina-reranker-v3/Q8_0
# vi /etc/systemd/system/llama-rerank.service
[Unit]
Description=llama-server Rerank
After=network-online.target
Wants=network-online.target

[Service]
Type=simple
User=root
WorkingDirectory=/opt/llama.cpp

ExecStart=/opt/llama.cpp/build/bin/llama-server \
  -m /opt/models/jina-reranker-v3/Q8_0/jina-reranker-v3-Q8_0.gguf \
  --host 0.0.0.0 \
  --port 8081 \
  --api-key masuperclef \
  --reranking \
  --pooling cls \
  -c 16384 \
  -np 1 \
  -b 4096 \
  -ub 4096 \
  -ctk q8_0 \
  -ctv q8_0 \
  -ngl 999 \
  -t 4 \
  --sleep-idle-seconds 300

Restart=on-failure
RestartSec=5

[Install]
WantedBy=multi-user.target

Img2txt

# hf download mradermacher/LightOnOCR-2-1B-GGUF --include "*Q8_0*.gguf" --include "*mmproj-f16*.gguf" --local-dir /opt/models/LightOnOCR-2-1B/Q8_0
# rm -f /opt/models/LightOnOCR-2-1B/Q8_0/LightOnOCR-2-1B.mmproj-Q8_0.gguf
# vi /etc/systemd/system/llama-img2txt.service
[Unit]
Description=llama-server Img2txt LightOnOCR-2-1B
After=network-online.target
Wants=network-online.target

[Service]
Type=simple
User=root
WorkingDirectory=/opt/llama.cpp

ExecStart=/opt/llama.cpp/build/bin/llama-server \
  -m /opt/models/LightOnOCR-2-1B/Q8_0/LightOnOCR-2-1B.Q8_0.gguf \
  --mmproj /opt/models/LightOnOCR-2-1B/Q8_0/LightOnOCR-2-1B.mmproj-f16.gguf \
  --host 0.0.0.0 \
  --port 8082 \
  --api-key masuperclef \
  -c 8192 \
  -np 1 \
  -ctk q8_0 \
  -ctv q8_0 \
  -ngl 999 \
  -t 4 \
  --sleep-idle-seconds 300

Restart=on-failure
RestartSec=5

[Install]
WantedBy=multi-user.target

Modèles auxiliaires

Vision

Qwen3-VL-4B-Thinking (Dépôt officiel)

# hf download Qwen/Qwen3-VL-4B-Thinking-GGUF --include "*Q4_K_M*.gguf" --include "*mmproj-Qwen3VL-4B-Thinking-Q8_0*.gguf" --local-dir /opt/models/Qwen3-VL-4B-Thinking/Q4_K_M
[Unit]
Description=llama-server Vision
After=network-online.target
Wants=network-online.target

[Service]
Type=simple
User=root
WorkingDirectory=/opt/llama.cpp

ExecStart=/opt/llama.cpp/build/bin/llama-server \
  -m /opt/models/Qwen3-VL-4B-Thinking/Q4_K_M/Qwen3VL-4B-Thinking-Q4_K_M.gguf \
  --mmproj /opt/models/Qwen3-VL-4B-Thinking/Q4_K_M/mmproj-Qwen3VL-4B-Thinking-Q8_0.gguf \
  --host 0.0.0.0 \
  --port 8083 \
  --api-key masuperclef \
  -c 16384 \
  -np 1 \
  -ctk q8_0 \
  -ctv q8_0 \
  -ngl 999 \
  -t 4 \
  -b 1024 \
  -ub 512 \
  --flash-attn on \
  --jinja \
  --top-p 0.95 \
  --top-k 20 \
  --temp 1.0 \
  --min-p 0.0 \
  --presence-penalty 0.0 \
  --image-min-tokens 1024 \
  --image-max-tokens 4096 \
  --sleep-idle-seconds 300

Restart=on-failure
RestartSec=5

[Install]
WantedBy=multi-user.target

Qwen3-VL-4B-Instruct (Dépôt officiel)

# hf download Qwen/Qwen3-VL-4B-Instruct-GGUF --include "*Q4_K_M*.gguf" --include "*mmproj-Qwen3VL-4B-Instruct-Q8_0*.gguf" --local-dir /opt/models/Qwen3-VL-4B-Instruct/Q4_K_M
  • Environ 5,25gb de vram consommée :
[Unit]
Description=llama-server Vision
After=network-online.target
Wants=network-online.target

[Service]
Type=simple
User=root
WorkingDirectory=/opt/llama.cpp

ExecStart=/opt/llama.cpp/build/bin/llama-server \
  -m /opt/models/Qwen3-VL-4B-Instruct/Q4_K_M/Qwen3VL-4B-Instruct-Q4_K_M.gguf \
  --mmproj /opt/models/Qwen3-VL-4B-Instruct/Q4_K_M/mmproj-Qwen3VL-4B-Instruct-Q8_0.gguf \
  --host 0.0.0.0 \
  --port 8083 \
  --api-key masuperclef \
  -c 16384 \
  -np 1 \
  -ctk q8_0 \
  -ctv q8_0 \
  -ngl 999 \
  -t 4 \
  -b 1024 \
  -ub 512 \
  --flash-attn on \
  --jinja \
  --top-p 0.8 \
  --top-k 20 \
  --temp 0.7 \
  --min-p 0.0 \
  --presence-penalty 1.5 \
  --image-min-tokens 1024 \
  --image-max-tokens 4096 \
  --sleep-idle-seconds 300

Restart=on-failure
RestartSec=5

[Install]
WantedBy=multi-user.target

Qwen3-VL-2B-Instruct (Dépôt officiel)

# hf download Qwen/Qwen3-VL-2B-Instruct-GGUF --include "*Q4_K_M*.gguf" --include "mmproj-Qwen3VL-2B-Instruct-Q8_0.gguf" --local-dir /opt/models/Qwen3-VL-2B-Instruct/Q4_K_M
  • Environ 3gb de vram consommée :
[Unit]
Description=llama-server Vision
After=network-online.target
Wants=network-online.target

[Service]
Type=simple
User=root
WorkingDirectory=/opt/llama.cpp

ExecStart=/opt/llama.cpp/build/bin/llama-server \
  -m /opt/models/Qwen3-VL-2B-Instruct/Q4_K_M/Qwen3VL-2B-Instruct-Q4_K_M.gguf \
  --mmproj /opt/models/Qwen3-VL-2B-Instruct/Q4_K_M/mmproj-Qwen3VL-2B-Instruct-Q8_0.gguf \
  --host 0.0.0.0 \
  --port 8083 \
  --api-key masuperclef \
  -c 16384 \
  -np 1 \
  -ctk q8_0 \
  -ctv q8_0 \
  -ngl 999 \
  -t 4 \
  -b 1024 \
  -ub 512 \
  --flash-attn on \
  --jinja \
  --top-p 0.8 \
  --top-k 20 \
  --temp 0.7 \
  --min-p 0.0 \
  --presence-penalty 1.5 \
  --image-min-tokens 1024 \
  --image-max-tokens 4096 \
  --sleep-idle-seconds 300

Restart=on-failure
RestartSec=5

[Install]
WantedBy=multi-user.target

Modèles de langage spécialisés en traduction

# hf download unsloth/Hy-MT2-7B-GGUF --include "*UD-Q6_K_XL*.gguf" --local-dir /opt/models/Hy-MT2-7B/UD-Q6_K_XL
# vi /etc/systemd/system/llama-translation.service
[Unit]
Description=Llama Translation Server
After=network.target

[Service]
Type=simple
User=root

ExecStart=/opt/llama.cpp/build/bin/llama-server \
    -m /opt/models/Hy-MT2-7B/UD-Q6_K_XL/Hy-MT2-7B-UD-Q6_K_XL.gguf \
    --host 0.0.0.0 \
    --port 8084 \
    --api-key masuperclef \
    -ngl 999 \
    -c 32768 \
    -n 4096 \
    -ctk q8_0 \
    -ctv q8_0 \
    -np 1 \
    -b 2048 \
    -ub 1024 \
    -fa on \
    --jinja \
    --temp 0.7 \
    --top-k 20 \
    --top-p 0.6 \
    --repeat-penalty 1.05 \
    --sleep-idle-seconds 300

Restart=on-failure
RestartSec=3

[Install]
WantedBy=multi-user.target
# hf download unsloth/Hy-MT2-1.8B-GGUF --include "*UD-Q6_K_XL*.gguf" --local-dir /opt/models/Hy-MT2-1.8B/UD-Q6_K_XL
# vi /etc/systemd/system/llama-translation.service
[Unit]
Description=Llama Translation Server
After=network.target

[Service]
Type=simple
User=root

ExecStart=/opt/llama.cpp/build/bin/llama-server \
    -m /opt/models/Hy-MT2-1.8B/UD-Q6_K_XL/Hy-MT2-1.8B-UD-Q6_K_XL.gguf \
    --host 0.0.0.0 \
    --port 8084 \
    --api-key masuperclef \
    -ngl 999 \
    -c 32768 \
    -n 4096 \
    -ctk q8_0 \
    -ctv q8_0 \
    -np 1 \
    -b 2048 \
    -ub 1024 \
    -fa on \
    --jinja \
    --temp 0.7 \
    --top-k 20 \
    --top-p 0.6 \
    --repeat-penalty 1.05 \
    --sleep-idle-seconds 300

Restart=on-failure
RestartSec=3

[Install]
WantedBy=multi-user.target
# hf download mradermacher/Hunyuan-MT-7B-GGUF --include "*Q6*.gguf" --local-dir /opt/models/Hunyuan-MT-7B/Q6_K
# vi /etc/systemd/system/llama-translation.service
[Unit]
Description=Llama Translation Server
After=network.target

[Service]
Type=simple
User=root

ExecStart=/opt/llama.cpp/build/bin/llama-server \
    -m /opt/models/Hunyuan-MT-7B/Q6_K/Hunyuan-MT-7B.Q6_K.gguf \
    --host 0.0.0.0 \
    --port 8084 \
    --api-key masuperclef \
    -ngl 999 \
    -c 32768 \
    -ctk q8_0 \
    -ctv q8_0 \
    -np 1 \
    -b 2048 \
    -ub 1024 \
    -fa on \
    --temp 0.7 \
    --top-k 20 \
    --top-p 0.6 \
    --repeat-penalty 1.05 \
    --sleep-idle-seconds 300

Restart=on-failure
RestartSec=3

[Install]
WantedBy=multi-user.target

gemma-4-26B-A4B-it-qat pour test traduction intelligente rapide

# hf download unsloth/gemma-4-26B-A4B-it-qat-GGUF --include "*Q4*.gguf" --local-dir /opt/models/gemma-4-26B-A4B-it-qat/UD-Q4_K_XL
# vi /etc/systemd/system/llama-translation.service
[Unit]
Description=Llama Translation Server
After=network.target

[Service]
Type=simple
User=root
WorkingDirectory=/opt/llama.cpp

ExecStart=/opt/llama.cpp/build/bin/llama-server \
    -m /opt/models/gemma-4-26B-A4B-it-qat/UD-Q4_K_XL/gemma-4-26B-A4B-it-qat-UD-Q4_K_XL.gguf \
    --host 0.0.0.0 \
    --port 8084 \
    --api-key masuperclef \
    -ngl 999 \
    -sm tensor \
    --tensor-split 1,1 \
    -c 32768 \
    -ctk bf16 \
    -ctv bf16 \
    -np 1 \
    -b 1024 \
    -ub 1024 \
    -fa on \
    --jinja \
    --spec-type ngram-mod,draft-mtp \
    --spec-ngram-mod-n-match 24 \
    --spec-ngram-mod-n-min 12 \
    --spec-ngram-mod-n-max 48 \
    --spec-draft-model /opt/models/gemma-4-26B-A4B-it-qat/UD-Q4_K_XL/MTP/mtp-gemma-4-26B-A4B-it-Q4_0.gguf \
    --spec-draft-n-max 4 \
    --spec-draft-n-min 0 \
    --spec-draft-p-min 0.75 \
    --slot-save-path /kv_cache/ \
    --temp 1.0 \
    --top-p 0.95 \
    --top-k 64 \
    --min-p 0.0 \
    --presence-penalty 0.0 \
    --repeat-penalty 1.0

Restart=on-failure
RestartSec=3

[Install]
WantedBy=multi-user.target

gemma-4-31B-it-qat pour test traduction intelligente (2x 12 Go de VRAM)

# hf download unsloth/gemma-4-31B-it-qat-GGUF --include "*UD-Q4_K_XL*.gguf" --include "MTP/mtp-gemma-4-31B-it-Q8_0.gguf" --local-dir /opt/models/gemma-4-31B-it-qat/UD-Q4_K_XL
# vi /etc/systemd/system/llama-translation.service
[Unit]
Description=Llama Translation Server
After=network.target

[Service]
Type=simple
User=root
WorkingDirectory=/opt/llama.cpp

ExecStart=/opt/llama.cpp/build/bin/llama-server \
    -m /opt/models/gemma-4-31B-it-qat/UD-Q4_K_XL/gemma-4-31B-it-qat-UD-Q4_K_XL.gguf \
    --host 0.0.0.0 \
    --port 8084 \
    --api-key masuperclef \
    -ngl 999 \
    -sm tensor \
    --tensor-split 1,1 \
    -c 32768 \
    -ctk q8_0 \
    -ctv q8_0 \
    -np 1 \
    -b 1024 \
    -ub 1024 \
    -fa on \
    --jinja \
    --spec-type ngram-mod,ngram-map-k4v,draft-mtp \
    --spec-ngram-mod-n-match 24 \
    --spec-ngram-mod-n-min 12 \
    --spec-ngram-mod-n-max 48 \
    --spec-ngram-map-k4v-size-n 12 \
    --spec-ngram-map-k4v-size-m 48 \
    --spec-ngram-map-k4v-min-hits 1 \
    --spec-draft-model /opt/models/gemma-4-31B-it-qat/UD-Q4_K_XL/MTP/mtp-gemma-4-31B-it-Q8_0.gguf \
    --spec-draft-n-max 4 \
    --spec-draft-n-min 0 \
    --spec-draft-p-min 0.75 \
    --slot-save-path /kv_cache/ \
    --temp 1.0 \
    --top-p 0.95 \
    --top-k 64 \
    --min-p 0.0 \
    --presence-penalty 0.0 \
    --repeat-penalty 1.0

Restart=on-failure
RestartSec=3

[Install]
WantedBy=multi-user.target
Sommaire