@fugood/bricks-project 2.23.0-beta.23 → 2.23.0-beta.24

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.23.0-beta.23",
3
+ "version": "2.23.0-beta.24",
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": "8333b59a42b67c403834434cd549cdd354497129"
17
+ "gitHead": "f33e821c7d70850a00401b594c9a5e24cd8ae83e"
18
18
  }
@@ -160,6 +160,8 @@ Default property:
160
160
  deepaiHeight?: number | DataLink
161
161
  /* Gemini aspect ratio (1:1, 16:9, 9:16, 3:2, 2:3) */
162
162
  geminiAspectRatio?: '1:1' | '16:9' | '9:16' | '3:2' | '2:3' | DataLink
163
+ /* Gemini model to use for image generation */
164
+ geminiModel?: 'gemini-2.5-flash-image' | 'gemini-3-pro-image-preview' | DataLink
163
165
  }
164
166
  events?: BrickBasicEvents & {
165
167
  /* Event of the brick press */
@@ -113,7 +113,7 @@ interface GeneratorVadInferenceDef {
113
113
  Default property:
114
114
  {
115
115
  "init": false,
116
- "modelName": "silero-v5.1.2",
116
+ "modelName": "silero-v6.2.0",
117
117
  "modelUseGPU": true,
118
118
  "modelThreads": 4,
119
119
  "detectThreshold": 0.5,
@@ -131,7 +131,7 @@ Default property:
131
131
  /* Use model name, currently only supports the Silero VAD model.
132
132
  The model download progress will be done in preload stage or the generator initialization stage.
133
133
  You can also choose `custom` option and set `Model URL` and `Model SHA1` to use your own model */
134
- modelName?: 'custom' | 'silero-v5.1.2' | DataLink
134
+ modelName?: 'custom' | 'silero-v6.2.0' | 'silero-v5.1.2' | DataLink
135
135
  /* The URL or path of model
136
136
  We used `ggml` format model, please refer to https://huggingface.co/ggml-org/whisper-vad */
137
137
  modelUrl?: string | DataLink