@nodaro/shared 1.16.0 → 1.17.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/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/__tests__/llm-models.test.ts +5 -0
- package/src/freecut-protocol.ts +2 -0
- package/src/llm-models.ts +1 -1
package/package.json
CHANGED
|
@@ -410,6 +410,11 @@ describe("LLM_FEATURE_DEFAULTS", () => {
|
|
|
410
410
|
expect(LLM_FEATURE_DEFAULTS["generate-script"]).toBe("gemini-3.6-flash")
|
|
411
411
|
})
|
|
412
412
|
|
|
413
|
+
it('"qa-check" defaults to "gemini-3.6-flash" (economy)', () => {
|
|
414
|
+
expect(LLM_FEATURE_DEFAULTS["qa-check"]).toBe("gemini-3.6-flash")
|
|
415
|
+
expect(getLlmTier(LLM_FEATURE_DEFAULTS["qa-check"])).toBe("economy")
|
|
416
|
+
})
|
|
417
|
+
|
|
413
418
|
it('"translate" defaults to "gemini-3.6-flash" (economy)', () => {
|
|
414
419
|
expect(LLM_FEATURE_DEFAULTS["translate"]).toBe("gemini-3.6-flash")
|
|
415
420
|
})
|
package/src/freecut-protocol.ts
CHANGED
|
@@ -27,6 +27,8 @@ export interface FreecutImportFile {
|
|
|
27
27
|
|
|
28
28
|
export interface NodaroLoadVideoPayload {
|
|
29
29
|
readonly videoUrl: string
|
|
30
|
+
/** Display/file name for the primary video ("Shot 1.mp4") — optional; absent = URL-derived name (fork default). */
|
|
31
|
+
readonly videoName?: string
|
|
30
32
|
readonly videoBuffer?: ArrayBuffer
|
|
31
33
|
readonly projectJson?: unknown
|
|
32
34
|
readonly additionalFiles?: ReadonlyArray<FreecutImportFile>
|
package/src/llm-models.ts
CHANGED
|
@@ -324,7 +324,7 @@ export const LLM_FEATURE_DEFAULTS: Record<LlmFeature, string> = {
|
|
|
324
324
|
"3d-title": "claude-sonnet-4.6",
|
|
325
325
|
"image-to-text": "claude-sonnet-4.6",
|
|
326
326
|
"describe-to-picker": "claude-opus-4.7",
|
|
327
|
-
"qa-check": "
|
|
327
|
+
"qa-check": "gemini-3.6-flash",
|
|
328
328
|
"generate-script": "gemini-3.6-flash",
|
|
329
329
|
"translate": "gemini-3.6-flash",
|
|
330
330
|
"image-critic": "claude-sonnet-4.6",
|