feat: add min_p inference parameter to chat page

This commit is contained in:
imagineer99 2026-02-16 05:41:36 +00:00
commit 36703c46a8
4 changed files with 12 additions and 0 deletions

View file

@ -182,6 +182,7 @@ export function createOpenAIStreamAdapter(): ChatModelAdapter {
top_p: params.topP,
max_tokens: params.maxTokens,
top_k: params.topK,
min_p: params.minP,
repetition_penalty: params.repetitionPenalty,
image_base64: imageBase64,
...(useAdapter === undefined ? {} : { use_adapter: useAdapter }),