forked from open-webui/open-webui
fix: stop seq backslash issue
This commit is contained in:
parent
7f3daa19cd
commit
e71ef42155
2 changed files with 13 additions and 5 deletions
|
@ -347,9 +347,6 @@
|
||||||
)
|
)
|
||||||
.flat(1);
|
.flat(1);
|
||||||
|
|
||||||
console.log($settings.options.stop);
|
|
||||||
// console.log($settings.options.stop.map((str) => str));
|
|
||||||
|
|
||||||
const [res, controller] = await generateChatCompletion(localStorage.token, {
|
const [res, controller] = await generateChatCompletion(localStorage.token, {
|
||||||
model: model,
|
model: model,
|
||||||
messages: messagesBody,
|
messages: messagesBody,
|
||||||
|
|
|
@ -365,7 +365,13 @@
|
||||||
model: model,
|
model: model,
|
||||||
messages: messagesBody,
|
messages: messagesBody,
|
||||||
options: {
|
options: {
|
||||||
...($settings.options ?? {})
|
...($settings.options ?? {}),
|
||||||
|
stop:
|
||||||
|
$settings?.options?.stop ?? undefined
|
||||||
|
? $settings.options.stop.map((str) =>
|
||||||
|
decodeURIComponent(JSON.parse('"' + str.replace(/\"/g, '\\"') + '"'))
|
||||||
|
)
|
||||||
|
: undefined
|
||||||
},
|
},
|
||||||
format: $settings.requestFormat ?? undefined,
|
format: $settings.requestFormat ?? undefined,
|
||||||
keep_alive: $settings.keepAlive ?? undefined,
|
keep_alive: $settings.keepAlive ?? undefined,
|
||||||
|
@ -588,7 +594,12 @@
|
||||||
})
|
})
|
||||||
})),
|
})),
|
||||||
seed: $settings?.options?.seed ?? undefined,
|
seed: $settings?.options?.seed ?? undefined,
|
||||||
stop: $settings?.options?.stop ?? undefined,
|
stop:
|
||||||
|
$settings?.options?.stop ?? undefined
|
||||||
|
? $settings.options.stop.map((str) =>
|
||||||
|
decodeURIComponent(JSON.parse('"' + str.replace(/\"/g, '\\"') + '"'))
|
||||||
|
)
|
||||||
|
: undefined,
|
||||||
temperature: $settings?.options?.temperature ?? undefined,
|
temperature: $settings?.options?.temperature ?? undefined,
|
||||||
top_p: $settings?.options?.top_p ?? undefined,
|
top_p: $settings?.options?.top_p ?? undefined,
|
||||||
num_ctx: $settings?.options?.num_ctx ?? undefined,
|
num_ctx: $settings?.options?.num_ctx ?? undefined,
|
||||||
|
|
Loading…
Reference in a new issue