feat: Add llama.cpp provider and fim template (#118)

This commit is contained in:
Petr Mironychev
2025-03-09 22:57:33 +01:00
committed by GitHub
parent c9a3cdaf25
commit e66f467214
13 changed files with 349 additions and 21 deletions

View File

@ -34,6 +34,7 @@
#include "templates/GoogleAI.hpp"
#include "templates/Llama2.hpp"
#include "templates/Llama3.hpp"
#include "templates/LlamaCppFim.hpp"
#include "templates/Qwen.hpp"
#include "templates/StarCoder2Fim.hpp"
@ -60,6 +61,7 @@ inline void registerTemplates()
templateManager.registerTemplate<OpenAICompatible>();
templateManager.registerTemplate<Alpaca>();
templateManager.registerTemplate<GoogleAI>();
templateManager.registerTemplate<LlamaCppFim>();
}
} // namespace QodeAssist::Templates