@realtimex/node-llama-cpp-win-x64-cuda-ext-chunk-03 0.0.0-bootstrap.0 → 0.3.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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2023 Gilad S.
3
+ Copyright (c) 2024 Gilad S.
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -1,3 +1,4 @@
1
1
  # @realtimex/node-llama-cpp-win-x64-cuda-ext-chunk-03
2
2
 
3
- Bootstrap package used to reserve this npm name for chunked CUDA ext publishing.
3
+ Internal chunk package used to assemble the large CUDA fallback backend for `@realtimex/node-llama-cpp`.
4
+ It is not meant to be installed directly.
Binary file
package/package.json CHANGED
@@ -1,30 +1,35 @@
1
1
  {
2
2
  "name": "@realtimex/node-llama-cpp-win-x64-cuda-ext-chunk-03",
3
- "version": "0.0.0-bootstrap.0",
4
- "description": "Bootstrap package reserved for chunked CUDA ext publishing",
3
+ "version": "0.3.0",
4
+ "description": "Chunk package for the Windows x64 CUDA fallback backend used by node-llama-cpp (3/6)",
5
+ "type": "module",
5
6
  "files": [
7
+ "chunks/",
8
+ "package.json",
6
9
  "README.md",
7
- "LICENSE",
8
- "package.json"
10
+ "LICENSE"
11
+ ],
12
+ "engines": {
13
+ "node": ">=20.0.0"
14
+ },
15
+ "os": [
16
+ "win32"
17
+ ],
18
+ "cpu": [
19
+ "x64"
9
20
  ],
10
21
  "repository": {
11
22
  "type": "git",
12
23
  "url": "git+https://github.com/therealtimex/node-llama-cpp.git"
13
24
  },
25
+ "author": "Gilad S.",
26
+ "license": "MIT",
27
+ "preferUnplugged": true,
14
28
  "bugs": {
15
29
  "url": "https://github.com/therealtimex/node-llama-cpp/issues"
16
30
  },
17
31
  "homepage": "https://node-llama-cpp.withcat.ai",
18
- "license": "MIT",
19
- "author": "Gilad S.",
20
32
  "publishConfig": {
21
33
  "access": "public"
22
- },
23
- "preferUnplugged": true,
24
- "os": [
25
- "win32"
26
- ],
27
- "cpu": [
28
- "x64"
29
- ]
34
+ }
30
35
  }