chore(deps): bump electron builder#1839
Conversation
📝 WalkthroughWalkthroughBumps ChangesDependency and Build Tool Updates
ACP Agent Registry Updates
Model Database Updates
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Possibly related PRs
Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@resources/model-db/providers.json`:
- Around line 47860-47911: The Subconscious model entry for
subconscious/tim-qwen3.6-27b has an incorrect pricing block with zero costs;
update the model metadata in the subconscious provider object to use the
published hosted rates instead of zeros. Keep the fix localized to the model
record’s cost fields so any consumer of providers.json picks up the correct
input, output, and cached-token pricing.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: defaults
Review profile: CHILL
Plan: Pro
Run ID: 9e3a2265-e1fa-4a9f-bc6a-0d90d9dcb30b
📒 Files selected for processing (3)
package.jsonresources/acp-registry/registry.jsonresources/model-db/providers.json
| "subconscious": { | ||
| "id": "subconscious", | ||
| "name": "Subconscious", | ||
| "display_name": "Subconscious", | ||
| "api": "https://api.subconscious.dev/v1", | ||
| "doc": "https://docs.subconscious.dev", | ||
| "models": [ | ||
| { | ||
| "id": "subconscious/tim-qwen3.6-27b", | ||
| "name": "TIM-Qwen3.6 27B", | ||
| "display_name": "TIM-Qwen3.6 27B", | ||
| "modalities": { | ||
| "input": [ | ||
| "text" | ||
| ], | ||
| "output": [ | ||
| "text" | ||
| ] | ||
| }, | ||
| "limit": { | ||
| "context": 8192, | ||
| "output": 5000 | ||
| }, | ||
| "temperature": true, | ||
| "tool_call": true, | ||
| "reasoning": { | ||
| "supported": true, | ||
| "default": true | ||
| }, | ||
| "extra_capabilities": { | ||
| "reasoning": { | ||
| "supported": true, | ||
| "interleaved": true, | ||
| "summaries": true, | ||
| "visibility": "summary", | ||
| "continuation": [ | ||
| "thinking_blocks" | ||
| ] | ||
| } | ||
| }, | ||
| "attachment": false, | ||
| "open_weights": false, | ||
| "release_date": "2026-05-11", | ||
| "last_updated": "2026-05-11", | ||
| "cost": { | ||
| "input": 0, | ||
| "output": 0 | ||
| }, | ||
| "type": "chat" | ||
| } | ||
| ] | ||
| }, |
There was a problem hiding this comment.
🗄️ Data Integrity & Integration | 🟠 Major | ⚡ Quick win
Fix the Subconscious pricing block.
The exact model you added here, subconscious/tim-qwen3.6-27b, is published by Subconscious with non-zero hosted pricing: $0.30 / MTok input, $3.00 / MTok output, and $0.15 / MTok cached tokens. Their docs also use the same model id. Shipping zeros here will underreport cost anywhere this catalog is consumed at runtime. (subconscious.dev)
Suggested fix
"cost": {
- "input": 0,
- "output": 0
+ "input": 0.3,
+ "output": 3.0,
+ "cache_read": 0.15
},📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| "subconscious": { | |
| "id": "subconscious", | |
| "name": "Subconscious", | |
| "display_name": "Subconscious", | |
| "api": "https://api.subconscious.dev/v1", | |
| "doc": "https://docs.subconscious.dev", | |
| "models": [ | |
| { | |
| "id": "subconscious/tim-qwen3.6-27b", | |
| "name": "TIM-Qwen3.6 27B", | |
| "display_name": "TIM-Qwen3.6 27B", | |
| "modalities": { | |
| "input": [ | |
| "text" | |
| ], | |
| "output": [ | |
| "text" | |
| ] | |
| }, | |
| "limit": { | |
| "context": 8192, | |
| "output": 5000 | |
| }, | |
| "temperature": true, | |
| "tool_call": true, | |
| "reasoning": { | |
| "supported": true, | |
| "default": true | |
| }, | |
| "extra_capabilities": { | |
| "reasoning": { | |
| "supported": true, | |
| "interleaved": true, | |
| "summaries": true, | |
| "visibility": "summary", | |
| "continuation": [ | |
| "thinking_blocks" | |
| ] | |
| } | |
| }, | |
| "attachment": false, | |
| "open_weights": false, | |
| "release_date": "2026-05-11", | |
| "last_updated": "2026-05-11", | |
| "cost": { | |
| "input": 0, | |
| "output": 0 | |
| }, | |
| "type": "chat" | |
| } | |
| ] | |
| }, | |
| "subconscious": { | |
| "id": "subconscious", | |
| "name": "Subconscious", | |
| "display_name": "Subconscious", | |
| "api": "https://api.subconscious.dev/v1", | |
| "doc": "https://docs.subconscious.dev", | |
| "models": [ | |
| { | |
| "id": "subconscious/tim-qwen3.6-27b", | |
| "name": "TIM-Qwen3.6 27B", | |
| "display_name": "TIM-Qwen3.6 27B", | |
| "modalities": { | |
| "input": [ | |
| "text" | |
| ], | |
| "output": [ | |
| "text" | |
| ] | |
| }, | |
| "limit": { | |
| "context": 8192, | |
| "output": 5000 | |
| }, | |
| "temperature": true, | |
| "tool_call": true, | |
| "reasoning": { | |
| "supported": true, | |
| "default": true | |
| }, | |
| "extra_capabilities": { | |
| "reasoning": { | |
| "supported": true, | |
| "interleaved": true, | |
| "summaries": true, | |
| "visibility": "summary", | |
| "continuation": [ | |
| "thinking_blocks" | |
| ] | |
| } | |
| }, | |
| "attachment": false, | |
| "open_weights": false, | |
| "release_date": "2026-05-11", | |
| "last_updated": "2026-05-11", | |
| "cost": { | |
| "input": 0.3, | |
| "output": 3.0, | |
| "cache_read": 0.15 | |
| }, | |
| "type": "chat" | |
| } | |
| ] | |
| }, |
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@resources/model-db/providers.json` around lines 47860 - 47911, The
Subconscious model entry for subconscious/tim-qwen3.6-27b has an incorrect
pricing block with zero costs; update the model metadata in the subconscious
provider object to use the published hosted rates instead of zeros. Keep the fix
localized to the model record’s cost fields so any consumer of providers.json
picks up the correct input, output, and cached-token pricing.
bump electron builder
Summary by CodeRabbit
New Features
Updates
Bug Fixes