Skip to content

Commit

Permalink
Merge pull request #119 from gchust/main
Browse files Browse the repository at this point in the history
fix: keyError: 'model' in server, when using browser extension
  • Loading branch information
makaveli10 authored Jan 31, 2024
2 parents 8c36768 + 0e6b1c0 commit 2c8a25d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Audio-Transcription-Chrome/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ async function startRecord(option) {
multilingual: option.multilingual,
language: option.language,
task: option.task,
model_size: option.modelSize
model: option.modelSize
})
);
};
Expand Down
2 changes: 1 addition & 1 deletion Audio-Transcription-Firefox/content.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function startRecording(data) {
multilingual: data.useMultilingual,
language: data.language,
task: data.task,
model_size: data.modelSize
model: data.modelSize
})
);
};
Expand Down

0 comments on commit 2c8a25d

Please sign in to comment.