@fugood/bricks-project 2.21.0-beta.18-2 → 2.21.0-beta.20

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fugood/bricks-project",
3
- "version": "2.21.0-beta.18-2",
3
+ "version": "2.21.0-beta.20",
4
4
  "main": "index.ts",
5
5
  "scripts": {
6
6
  "build": "node scripts/build.js"
@@ -12,5 +12,6 @@
12
12
  "escodegen": "^2.1.0",
13
13
  "lodash": "^4.17.4",
14
14
  "uuid": "^8.3.1"
15
- }
15
+ },
16
+ "gitHead": "5ea8d58d14c538ecd5c70c9afcda30fe39035c9b"
16
17
  }
@@ -83,7 +83,7 @@ export interface AnimationComposeDef {
83
83
  description?: string
84
84
  runType?: 'once' | 'loop'
85
85
  composeType: 'parallel' | 'sequence'
86
- items: Array<() => AnimationDef>
86
+ items: Array<() => Animation>
87
87
  }
88
88
 
89
89
  export type Animation = AnimationDef | AnimationComposeDef
@@ -6343,7 +6343,6 @@ Default property:
6343
6343
  "completionTopK": 40,
6344
6344
  "completionTopP": 0.5,
6345
6345
  "completionMinP": 0.05,
6346
- "completionTfsZ": 1,
6347
6346
  "completionMirostat": 0,
6348
6347
  "completionMirostatTau": 5,
6349
6348
  "completionMirostatEta": 0.1,
@@ -6403,7 +6402,7 @@ Default property:
6403
6402
  accelVariant?: 'default' | 'vulkan' | DataLink
6404
6403
  /* Main GPU index */
6405
6404
  mainGpu?: number | DataLink
6406
- /* Number of GPU layers (iOS: > 0 to use GPU) */
6405
+ /* Number of GPU layers (NOTE: Currently not supported for Android) */
6407
6406
  gpuLayers?: number | DataLink
6408
6407
  /* Use memory lock */
6409
6408
  useMlock?: boolean | DataLink
@@ -6463,8 +6462,6 @@ Default property:
6463
6462
  completionTopP?: number | DataLink
6464
6463
  /* Min P sampling */
6465
6464
  completionMinP?: number | DataLink
6466
- /* Tail free sampling, parameter z */
6467
- completionTfsZ?: number | DataLink
6468
6465
  /* Use Mirostat sampling. Top K, Nucleus, Tail Free and Locally Typical samplers are ignored if used. */
6469
6466
  completionMirostat?: number | DataLink
6470
6467
  /* Mirostat target entropy, parameter tau */
@@ -6578,6 +6575,8 @@ Default property:
6578
6575
  outlets?: {
6579
6576
  /* Context state */
6580
6577
  contextState?: () => Data
6578
+ /* Context load progress (0-100) */
6579
+ contextLoadProgress?: () => Data
6581
6580
  /* Context details */
6582
6581
  contextDetails?: () => Data
6583
6582
  /* Session details */
@@ -6622,6 +6621,7 @@ export type GeneratorLLM = Generator &
6622
6621
  __typename: 'SwitchCondInnerStateOutlet'
6623
6622
  outlet:
6624
6623
  | 'contextState'
6624
+ | 'contextLoadProgress'
6625
6625
  | 'contextDetails'
6626
6626
  | 'sessions'
6627
6627
  | 'isEvaluating'