Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
b26d299
WebGPU + ONNX provider (Qwen 3 0.6B, in-browser, no server needed)
esokullu May 22, 2026
c7ed019
chore: bump version 7.3.1 → 7.4.0
esokullu May 22, 2026
351971f
Merge branch 'main' into webgpu
esokullu May 22, 2026
ac615d0
Update offscreen.html
esokullu May 22, 2026
479fe8d
WebGPU: download progress indicator
esokullu May 22, 2026
3ab4a97
Vendor @huggingface/transformers 4.2.0 (WebGPU + ONNX runtime)
esokullu May 22, 2026
007488c
version up
esokullu May 22, 2026
71bc9c9
WebGPU: fix bare-specifier import (vendor ort.webgpu.bundle, patch
esokullu May 22, 2026
60802f5
WebGPU: vendor UNMINIFIED builds (Web Store policy + readability)
esokullu May 22, 2026
2ec3c04
WebGPU: vendor onnxruntime-common, patch second bare specifier
esokullu May 22, 2026
2596d1d
WebGPU: vendor asyncify WASM variant for CPU fallback ops
esokullu May 22, 2026
08d1cdb
WebGPU: switch default dtype from q4 to q4f16
esokullu May 22, 2026
446a3ed
WebGPU: document fp16 fallback when q4f16 kernel overflows
esokullu May 22, 2026
e46db35
WebGPU: surface fallback-adapter / no-GPU case in Test Connection
esokullu May 22, 2026
7e23df5
WebGPU: force .jsep wasm variant so WebGPU EP actually engages
esokullu May 22, 2026
258dbbe
WebGPU: enable cross-origin isolation for SharedArrayBuffer
esokullu May 22, 2026
32fbe65
WebGPU: address PR #66 codex review (tool-call streaming + cache key)
esokullu May 22, 2026
5d66564
WebGPU: disable wasm-cache for chrome-extension scheme
esokullu May 22, 2026
e84f36a
WebGPU: move inference to a dedicated Worker + upgrade to Qwen 3.5 0.8B
esokullu May 22, 2026
9db2be7
title change
esokullu May 22, 2026
efc9a9d
WebGPU: keep outputs on GPU to avoid mapAsync OOM
esokullu May 22, 2026
117f7ff
Merge branch 'main' into webgpu
esokullu May 26, 2026
ffecb66
9.0.0
esokullu May 26, 2026
51c4128
9.0.2
esokullu May 26, 2026
69c7f5d
Fix WebGPU CPU tensor access error in worker pipeline
esokullu May 26, 2026
f991fc3
Handle WebGPU OrtRun buffer download/CPU data failures with retry mode
esokullu May 26, 2026
1aac015
Add robust fallback for WebGPU buffer map failures
esokullu May 26, 2026
9b46bc7
Improve WebGPU fallback errors and switch default ONNX model to Gemma
esokullu May 26, 2026
05461e1
Reset WebGPU mode when WASM kernel init fails
esokullu May 26, 2026
9c6d130
Retry WebGPU unaligned-access failures with fp16 dtype
esokullu May 26, 2026
c4209b9
Skip WASM fallback for quantized WebGPU models
esokullu May 26, 2026
901fef1
Retry quantized WebGPU map failures with fp16 before aborting
esokullu May 26, 2026
28fd949
improvements
esokullu May 26, 2026
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
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
node_modules/
test/anonymous/.test-profile/

# Vendored @huggingface/transformers — Chrome's build is committed
# (see src/chrome/vendor/transformers/README.md for versioning notes).
# Firefox's stays gitignored because the Firefox WebGPU provider is
# still a stub; once it's wired, copy the chrome vendor over and
# remove the firefox exclusion below.
src/firefox/vendor/transformers/*.js
src/firefox/vendor/transformers/*.wasm
src/firefox/vendor/transformers/*.mjs

# ---- SocialMediaDownloader test suite ----
# Cookies / session state if someone ever points the profile here
smd-test-profile/
Expand Down
Binary file added dist/webbrain-chrome-9.0.2.zip
Binary file not shown.
Binary file added dist/webbrain-firefox-9.0.2.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "WebBrain",
"version": "8.0.3",
"version": "9.0.10",
"description": "Open-source AI browser agent — chat with pages, automate tasks, multi-provider LLM support.",
"permissions": [
"sidePanel",
Expand Down
Loading