Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Apply suggestions from code review
Co-authored-by: Joshua Lochner <[email protected]>
  • Loading branch information
nico-martin and xenova authored Dec 3, 2025
commit 6c0c0c054cb49180b7cd683fb0b1e05eb48ee5a3
2 changes: 1 addition & 1 deletion src/backends/onnx.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export async function createInferenceSession(buffer_or_path, session_options, se

/** @type {Array<'verbose' | 'info' | 'warning' | 'error' | 'fatal'>} */
const LOG_LEVELS = ['verbose', 'info', 'warning', 'error', 'fatal'];
/** @type 0|1|2|3|4 */
/** @type {0|1|2|3|4} */
const logSeverityLevel =
typeof session_options.logSeverityLevel !== 'number' ||
session_options.logSeverityLevel < 0 ||
Expand Down
Loading