@speakableio/core 1.0.66 → 1.0.67
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.native.mjs
CHANGED
|
@@ -2392,14 +2392,15 @@ async function getTranscript(model, args, cleanHallucinations = true) {
|
|
|
2392
2392
|
async function getTranscriptCycle(args) {
|
|
2393
2393
|
var _a, _b, _c;
|
|
2394
2394
|
const models = (_b = (_a = args.options) == null ? void 0 : _a.modelOrder) != null ? _b : [
|
|
2395
|
-
"gpt-4o",
|
|
2396
2395
|
"whisper",
|
|
2397
2396
|
"whisper-3",
|
|
2397
|
+
"gpt-4o",
|
|
2398
2398
|
"gemini",
|
|
2399
2399
|
"assemblyai"
|
|
2400
2400
|
];
|
|
2401
2401
|
let transcript = "";
|
|
2402
2402
|
let lastError = null;
|
|
2403
|
+
console.log("Getting transcript cycle with models", models);
|
|
2403
2404
|
for (const model of models) {
|
|
2404
2405
|
try {
|
|
2405
2406
|
console.log(
|