@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.js
CHANGED
|
@@ -2508,14 +2508,15 @@ async function getTranscript(model, args, cleanHallucinations = true) {
|
|
|
2508
2508
|
async function getTranscriptCycle(args) {
|
|
2509
2509
|
var _a, _b, _c;
|
|
2510
2510
|
const models = (_b = (_a = args.options) == null ? void 0 : _a.modelOrder) != null ? _b : [
|
|
2511
|
-
"gpt-4o",
|
|
2512
2511
|
"whisper",
|
|
2513
2512
|
"whisper-3",
|
|
2513
|
+
"gpt-4o",
|
|
2514
2514
|
"gemini",
|
|
2515
2515
|
"assemblyai"
|
|
2516
2516
|
];
|
|
2517
2517
|
let transcript = "";
|
|
2518
2518
|
let lastError = null;
|
|
2519
|
+
console.log("Getting transcript cycle with models", models);
|
|
2519
2520
|
for (const model of models) {
|
|
2520
2521
|
try {
|
|
2521
2522
|
console.log(
|