@fugood/bricks-project 2.22.0-beta.20 → 2.22.0-beta.22
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/package.json +2 -2
- package/types/generators.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fugood/bricks-project",
|
|
3
|
-
"version": "2.22.0-beta.
|
|
3
|
+
"version": "2.22.0-beta.22",
|
|
4
4
|
"main": "index.ts",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "node scripts/build.js"
|
|
@@ -14,5 +14,5 @@
|
|
|
14
14
|
"lodash": "^4.17.4",
|
|
15
15
|
"uuid": "^8.3.1"
|
|
16
16
|
},
|
|
17
|
-
"gitHead": "
|
|
17
|
+
"gitHead": "f1a67a715ee30aac5067df53b8b640511a81fc83"
|
|
18
18
|
}
|
package/types/generators.ts
CHANGED
|
@@ -6637,6 +6637,8 @@ Default property:
|
|
|
6637
6637
|
useMmap?: boolean | DataLink
|
|
6638
6638
|
/* Use Flash Attention for inference (Recommended with GPU enabled) */
|
|
6639
6639
|
useFlashAttn?: boolean | DataLink
|
|
6640
|
+
/* Use full-size SWA cache. May improve performance for multiple sequences but uses more memory. */
|
|
6641
|
+
useSwaFull?: boolean | DataLink
|
|
6640
6642
|
/* KV cache data type for the K (Default: f16) */
|
|
6641
6643
|
cacheKType?: 'f16' | 'f32' | 'q8_0' | 'q4_0' | 'q4_1' | 'iq4_nl' | 'q5_0' | 'q5_1' | DataLink
|
|
6642
6644
|
/* KV cache data type for the V (Default: f16) */
|