You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 3, 2026. It is now read-only.
I've added some new options to the llama.cpp, but can not pass to the provider, The all providers can not pass custom parameters too.
import{llamacpp,generateText}from"modelfusion";consttext=awaitgenerateText({model: llamacpp.CompletionTextGenerator({maxGenerationTokens: 2048,my_custom_param: 'can not pass',model: 'mistral-7b-openorca.Q8_0.gguf',}).withTextPrompt(),// use simple text prompt styleprompt: "Write a short story about a robot learning to love.",});
I've added some new options to the llama.cpp, but can not pass to the provider, The all providers can not pass custom parameters too.