Fixup: change key to ctx_size to align with upstream and remove duplicate key

This commit is contained in:
Akarshan Biswas 2025-05-28 07:19:21 +05:30 committed by Louis
parent d5c07acdb5
commit 77d861f56f
No known key found for this signature in database
GPG Key ID: 44FA9F4D33C37DE2

View File

@ -28,10 +28,9 @@ import { invoke } from '@tauri-apps/api/core'
type LlamacppConfig = {
n_gpu_layers: number;
n_ctx: number; // not in SETTINGS
ctx_size: number;
threads: number;
threads_batch: number;
ctx_size: number;
n_predict: number;
batch_size: number;
ubatch_size: number;