-
Notifications
You must be signed in to change notification settings - Fork 0
V10 #13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
V10 #13
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
2973ce7
Implement client-side chunked transcription pipeline
cs-util bbc0c19
Disable Multi-Threading: Set ort.env.wasm.numThreads = 1 to avoid the…
cs-util df5b6e4
Refactor chunking tests for clarity and accuracy; update VAD to use C…
cs-util 366ee0b
Update ONNX Runtime import to use CDN and disable multi-threading for…
cs-util f0678bb
Update ONNX Runtime import to use ESM and adjust multi-threading sett…
cs-util 21a646c
Refactor ONNX Runtime import to simplify promise handling and ensure …
cs-util c129850
Enhance error handling in ONNX Runtime import to check for module ava…
cs-util cfd4646
Enhance error handling in ensureSession to check for InferenceSession…
cs-util 545df4a
Enhance ONNX Runtime import to support multiple CDN sources and impro…
cs-util 2eecbad
Add diagnostic logging for ONNX Runtime Web URL loading
cs-util a5d0bff
Add fetch script for ONNX Runtime Web distribution assets
cs-util 83a8397
Added local ort vendor directory
cs-util e7f432a
Added explicit ignore patterns for ort/** in eslint.config.js so ESLi…
cs-util 18c9f12
Add local ORT and Silero VAD model paths for development
cs-util 979831a
Update src/stt/vad.js
cs-util e8658ab
Update scripts/fetch-onnx-dist.sh
cs-util b2de2cd
Update scripts/fetch-onnx-dist.sh
cs-util 38984d0
Merge commit 'b2de2cd577b316d1780fd015f9952886de730b50' into v8
cs-util a8ce668
updated the default model URL to the v4 version, commented out the lo…
cs-util 31c1c01
Add Silero VAD model path and update README instructions for local setup
cs-util 9801fb1
Add logging for ONNX Runtime object keys and InferenceSession details
cs-util b429f97
Update default ONNX Runtime version in fetch script and enhance VAD s…
cs-util 39c5826
Updated ONNX Runtime Web to version 1.19.0 and added logging to show …
cs-util afa5551
Update Silero VAD model path to '/model/silero_vad.onnx' and reflect …
cs-util 905b5d9
Fix tensor shape in createStateTensor function for correct dimensiona…
cs-util 4a8dfa7
Fix tensor shape in createStateTensor function for correct dimensiona…
cs-util 39b0b0f
Enhance logging in detectSpeechSegments function to reduce console ou…
cs-util 3130785
Refactor logging in VAD functions for improved readability and consis…
cs-util 8a7f8a6
unused createHiddenTensor function
cs-util 9ceb601
Add testing helpers for injecting fake ort/session and enhance tests …
cs-util File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| ort/ | ||
| node_modules/ | ||
| coverage/ | ||
| ort/ | ||
| node_modules/ | ||
| coverage/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While not a functional issue, ignoring the
ort/directory is also handled by.eslintignore. For consistency and to have a single source of truth for top-level ignored directories, you might consider removing these lines and relying solely on.eslintignore. However, keeping it here also works, as ESLint will respect both.