@fugood/llama.node 0.3.6 → 0.3.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/lib/binding.ts CHANGED
@@ -117,7 +117,7 @@ export interface Module {
117
117
  LlamaContext: LlamaContext
118
118
  }
119
119
 
120
- export type LibVariant = 'default' | 'vulkan'
120
+ export type LibVariant = 'default' | 'vulkan' | 'cuda'
121
121
 
122
122
  const setupEnv = (variant?: string) => {
123
123
  const postfix = variant ? `-${variant}` : ''
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@fugood/llama.node",
3
3
  "access": "public",
4
- "version": "0.3.6",
4
+ "version": "0.3.7",
5
5
  "description": "Llama.cpp for Node.js",
6
6
  "main": "lib/index.js",
7
7
  "scripts": {