@fugood/bricks-project 2.22.0-beta.18 → 2.22.0-beta.19

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.22.0-beta.18",
3
+ "version": "2.22.0-beta.19",
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": "3d0d19e21dcdb4a989e24f9ab8c69578c4c550fa"
17
+ "gitHead": "584da836043d75818a8c629a61edb10cb6dc0d3c"
18
18
  }
@@ -6873,6 +6873,7 @@ Default property:
6873
6873
  "vocoderUrl": "https://huggingface.co/ggml-org/WavTokenizer/resolve/main/WavTokenizer-Large-75-F16.gguf",
6874
6874
  "vocoderHashType": "sha256",
6875
6875
  "vocoderHash": "2356baa8631cc2995ea3465196a017a2733600d849a91180c0f97fa7fb375bbe",
6876
+ "vocoderBatchSize": 4096,
6876
6877
  "outputType": "play",
6877
6878
  "cacheGenerated": true,
6878
6879
  "autoInferEnable": false,
@@ -6884,9 +6885,10 @@ Default property:
6884
6885
  "completionTopP": 0.9,
6885
6886
  "completionMinP": 0.05,
6886
6887
  "useGuideToken": false,
6887
- "contextSize": 4096,
6888
- "batchSize": 512,
6889
- "maxThreads": 1,
6888
+ "contextSize": 8192,
6889
+ "batchSize": 8192,
6890
+ "microBatchSize": 512,
6891
+ "maxThreads": 2,
6890
6892
  "accelVariant": "default",
6891
6893
  "mainGpu": 0,
6892
6894
  "gpuLayers": 0,
@@ -6911,6 +6913,8 @@ Default property:
6911
6913
  vocoderHashType?: 'md5' | 'sha256' | 'sha1' | DataLink
6912
6914
  /* Hash of vocoder model */
6913
6915
  vocoderHash?: string | DataLink
6916
+ /* Batch size of vocoder model */
6917
+ vocoderBatchSize?: number | DataLink
6914
6918
  /* Output mode */
6915
6919
  outputType?: 'play' | 'file' | DataLink
6916
6920
  /* Enable cache for generated audio */
@@ -6937,12 +6941,16 @@ Default property:
6937
6941
  completionMinP?: number | DataLink
6938
6942
  /* Set the random number generator (RNG) seed (default: -1, -1 = random seed) */
6939
6943
  completionSeed?: number | DataLink
6944
+ /* Number of tokens to predict */
6945
+ completionPredict?: number | DataLink
6940
6946
  /* Enable guide token to help prevent hallucinations by forcing the TTS to use the correct words. */
6941
6947
  useGuideToken?: boolean | DataLink
6942
6948
  /* Context size, for OutTTS recommended 4096 ~ 8192 (Default to 4096) */
6943
6949
  contextSize?: number | DataLink
6944
6950
  /* Logical batch size for prompt processing */
6945
6951
  batchSize?: number | DataLink
6952
+ /* Physical batch size for prompt processing */
6953
+ microBatchSize?: number | DataLink
6946
6954
  /* Number of threads */
6947
6955
  maxThreads?: number | DataLink
6948
6956
  /* Accelerator variant (Only for desktop)