node-llama-cpp 3.12.4 → 3.13.0
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.
- package/dist/chatWrappers/SeedChatWrapper.d.ts +25 -0
- package/dist/chatWrappers/SeedChatWrapper.js +183 -0
- package/dist/chatWrappers/SeedChatWrapper.js.map +1 -0
- package/dist/chatWrappers/utils/ChatModelFunctionsDocumentationGenerator.d.ts +3 -0
- package/dist/chatWrappers/utils/ChatModelFunctionsDocumentationGenerator.js +3 -0
- package/dist/chatWrappers/utils/ChatModelFunctionsDocumentationGenerator.js.map +1 -1
- package/dist/chatWrappers/utils/resolveChatWrapper.d.ts +4 -2
- package/dist/chatWrappers/utils/resolveChatWrapper.js +8 -2
- package/dist/chatWrappers/utils/resolveChatWrapper.js.map +1 -1
- package/dist/cli/recommendedModels.js +13 -0
- package/dist/cli/recommendedModels.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/llama/addon/AddonContext.cpp +2 -1
- package/llama/addon/globals/addonLog.h +1 -0
- package/llama/binariesGithubRelease.json +1 -1
- package/llama/gitRelease.bundle +0 -0
- package/llama/gpuInfo/vulkan-gpu-info.cpp +7 -8
- package/llama/llama.cpp.info.json +1 -1
- package/package.json +15 -15
- package/templates/packed/electron-typescript-react.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-llama-cpp",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.13.0",
|
|
4
4
|
"description": "Run AI models locally on your machine with node.js bindings for llama.cpp. Enforce a JSON schema on the model output on the generation level",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -143,7 +143,7 @@
|
|
|
143
143
|
"@nolebase/vitepress-plugin-og-image": "^2.17.0",
|
|
144
144
|
"@resvg/resvg-js": "^2.6.2",
|
|
145
145
|
"@semantic-release/exec": "^7.1.0",
|
|
146
|
-
"@semantic-release/github": "11.0.
|
|
146
|
+
"@semantic-release/github": "11.0.5",
|
|
147
147
|
"@semantic-release/npm": "12.0.2",
|
|
148
148
|
"@shikijs/vitepress-twoslash": "^3.4.0",
|
|
149
149
|
"@stylistic/eslint-plugin": "^4.2.0",
|
|
@@ -224,18 +224,18 @@
|
|
|
224
224
|
}
|
|
225
225
|
},
|
|
226
226
|
"optionalDependencies": {
|
|
227
|
-
"@node-llama-cpp/linux-arm64": "3.
|
|
228
|
-
"@node-llama-cpp/linux-armv7l": "3.
|
|
229
|
-
"@node-llama-cpp/linux-x64": "3.
|
|
230
|
-
"@node-llama-cpp/linux-x64-cuda": "3.
|
|
231
|
-
"@node-llama-cpp/linux-x64-cuda-ext": "3.
|
|
232
|
-
"@node-llama-cpp/linux-x64-vulkan": "3.
|
|
233
|
-
"@node-llama-cpp/mac-arm64-metal": "3.
|
|
234
|
-
"@node-llama-cpp/mac-x64": "3.
|
|
235
|
-
"@node-llama-cpp/win-arm64": "3.
|
|
236
|
-
"@node-llama-cpp/win-x64": "3.
|
|
237
|
-
"@node-llama-cpp/win-x64-cuda": "3.
|
|
238
|
-
"@node-llama-cpp/win-x64-cuda-ext": "3.
|
|
239
|
-
"@node-llama-cpp/win-x64-vulkan": "3.
|
|
227
|
+
"@node-llama-cpp/linux-arm64": "3.13.0",
|
|
228
|
+
"@node-llama-cpp/linux-armv7l": "3.13.0",
|
|
229
|
+
"@node-llama-cpp/linux-x64": "3.13.0",
|
|
230
|
+
"@node-llama-cpp/linux-x64-cuda": "3.13.0",
|
|
231
|
+
"@node-llama-cpp/linux-x64-cuda-ext": "3.13.0",
|
|
232
|
+
"@node-llama-cpp/linux-x64-vulkan": "3.13.0",
|
|
233
|
+
"@node-llama-cpp/mac-arm64-metal": "3.13.0",
|
|
234
|
+
"@node-llama-cpp/mac-x64": "3.13.0",
|
|
235
|
+
"@node-llama-cpp/win-arm64": "3.13.0",
|
|
236
|
+
"@node-llama-cpp/win-x64": "3.13.0",
|
|
237
|
+
"@node-llama-cpp/win-x64-cuda": "3.13.0",
|
|
238
|
+
"@node-llama-cpp/win-x64-cuda-ext": "3.13.0",
|
|
239
|
+
"@node-llama-cpp/win-x64-vulkan": "3.13.0"
|
|
240
240
|
}
|
|
241
241
|
}
|