Has anyone writting Alpaca
or CodeLlama
ChatPromptWrapper
's?
#96
-
Hi there, I'm working on a project that will require me to support many different GGUF models. It's awesome that there are several customized
Has anyone written these? If not, I would be happy to contribute these, but would appreciate any suggestions on getting started with them. PS. I'm also interested in |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
@jparismorgan You're welcome to contribute these wrappers via a new PR :) It's worth noting that I'm working right now on #85, which will introduce a major refactor that'll change many things, but adding more Regarding You can use the |
Beta Was this translation helpful? Give feedback.
@jparismorgan You're welcome to contribute these wrappers via a new PR :)
See the development guide to develop
node-llama-cpp
.You can find the list of
ChatPromptWrapper
s undersrc/chatWrappers
.It's worth noting that I'm working right now on #85, which will introduce a major refactor that'll change many things, but adding more
ChatPromptWrapper
s shouldn't conflict with the changes I'm doing.Regarding
Alpace
, you can useGeneralChatPromptWrapper
and customize theinstructionName
andresponseName
of it as you like.Regarding
CodeLlama
, what you're looking for isLlamaChatPromptWrapper
.I'm not sure what's the right
ChatPromptWrapper
for the other models you mentioned here, though.You can…