mirror of
https://github.com/open-webui/open-webui
synced 2024-11-07 00:59:52 +00:00
Add num_gpu in General.svelte
This commit is contained in:
parent
56e2d579f2
commit
b350b0023f
@ -59,7 +59,8 @@
|
||||
num_ctx: null,
|
||||
num_batch: null,
|
||||
num_keep: null,
|
||||
max_tokens: null
|
||||
max_tokens: null,
|
||||
num_gpu: null
|
||||
};
|
||||
|
||||
const toggleRequestFormat = async () => {
|
||||
@ -321,7 +322,8 @@
|
||||
max_tokens: params.max_tokens !== null ? params.max_tokens : undefined,
|
||||
use_mmap: params.use_mmap !== null ? params.use_mmap : undefined,
|
||||
use_mlock: params.use_mlock !== null ? params.use_mlock : undefined,
|
||||
num_thread: params.num_thread !== null ? params.num_thread : undefined
|
||||
num_thread: params.num_thread !== null ? params.num_thread : undefined,
|
||||
num_gpu: params.num_gpu !== null ? params.num_gpu : undefined
|
||||
},
|
||||
keepAlive: keepAlive ? (isNaN(keepAlive) ? keepAlive : parseInt(keepAlive)) : undefined
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user