Is there a way to use llamacpp flags that aren't in the kobold launcher? #2160
-
|
Mainly --spec-type ngram-mod. Or do I just add those to the kcpps? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 13 replies
-
|
No, not by adding arbitrary llama.cpp flags to the KoboldCpp has its own CLI/config surface. In the current launcher/parser I can see the exposed speculative/draft options such as So if the llama.cpp option you want is not represented by a KoboldCpp flag, the practical options are to use the closest exposed KoboldCpp draft-model settings, or request/add support for that llama.cpp option in KoboldCpp itself. A raw extra flag in |
Beta Was this translation helpful? Give feedback.
-
|
Stumbled over this thread reseearching n-gram availability in kobold. Is this something that is being considered/will be implemented in the future into kcpp? |
Beta Was this translation helpful? Give feedback.
No, not by adding arbitrary llama.cpp flags to the
.kcpps.KoboldCpp has its own CLI/config surface. In the current launcher/parser I can see the exposed speculative/draft options such as
--draftmodel,--draftamount,--draftgpulayers, and--draftgpusplit, and the.kcppssave/load path stores those known fields. I do not see--spec-typeorngram-modas accepted KoboldCpp options.So if the llama.cpp option you want is not represented by a KoboldCpp flag, the practical options are to use the closest exposed KoboldCpp draft-model settings, or request/add support for that llama.cpp option in KoboldCpp itself. A raw extra flag in
.kcppswill likely be ignored or rejected rather than passed thr…