@speakableio/core 1.0.62 → 1.0.64
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
|
@@ -1531,7 +1531,7 @@ function useSubmitAssignmentScore({
|
|
|
1531
1531
|
status,
|
|
1532
1532
|
studentName
|
|
1533
1533
|
});
|
|
1534
|
-
if (assignment.courseWorkId != null && !assignment.isAssessment
|
|
1534
|
+
if (assignment.courseWorkId != null && !assignment.isAssessment) {
|
|
1535
1535
|
await submitAssignmentToGoogleClassroom({
|
|
1536
1536
|
assignment,
|
|
1537
1537
|
scores
|
|
@@ -2319,6 +2319,7 @@ async function getTranscript(model, args, cleanHallucinations = true) {
|
|
|
2319
2319
|
const getAssemblyAITranscript = (_d = (_c = api).httpsCallable) == null ? void 0 : _d.call(_c, "transcribeAssemblyAIAudio");
|
|
2320
2320
|
const getWhisper3Transcript = (_f = (_e = api).httpsCallable) == null ? void 0 : _f.call(_e, "generateGroqTranscript");
|
|
2321
2321
|
const getWhisper1Transcript = (_h = (_g = api).httpsCallable) == null ? void 0 : _h.call(_g, "transcribeAudio");
|
|
2322
|
+
console.log("Getting transcript from", model);
|
|
2322
2323
|
if (model === "whisper-3") {
|
|
2323
2324
|
try {
|
|
2324
2325
|
const { data } = await (getWhisper3Transcript == null ? void 0 : getWhisper3Transcript({
|