Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/main/utils/llamacpp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,8 @@ const getAssetPattern = (tag: string, variant: string): { pattern: string; isZip
cpu: `llama-${tag}-bin-win-cpu-${archStr}.zip`,
'cuda-12.4': `llama-${tag}-bin-win-cuda-12.4-x64.zip`,
'cuda-13.1': `llama-${tag}-bin-win-cuda-13.1-x64.zip`,
'cuda-13.3': `llama-${tag}-bin-win-cuda-13.3-x64.zip`, // new
'cuda-13.4': `llama-${tag}-bin-win-cuda-13.4-x64.zip`, // new
vulkan: `llama-${tag}-bin-win-vulkan-x64.zip`
}
const name = variantMap[variant] ?? variantMap.cpu
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@
{ value: 'cpu', label: $i18n.t('settings.inference.variantCPU') },
{ value: 'cuda-12.4', label: 'CUDA 12.4' },
{ value: 'cuda-13.1', label: 'CUDA 13.1' },
{ value: 'cuda-13.3', label: 'CUDA 13.3' },
{ value: 'cuda-13.4', label: 'CUDA 13.4' },
{ value: 'vulkan', label: 'Vulkan' }
]
return [
Expand Down