RIP endpoints and multinet - #458
Merged
Merged
Conversation
Multinet was introduced as unfinished work. Its short development history records brittle command generation, command-table crashes, and recorder workarounds. Before the first release, which already contained WAS, 8cc0e4f ("CI: don't generate speech commands") disabled it in release builds. No Willow or WAS release has ever supported it. Since 99f44c2 ("build: make MultiNet support opt-in"), it has only been available through an explicitly unsupported manual build option. We never made it stable, and its constrained on-device recognition cannot provide an experience as good as WIS. Remove the dormant recorder and UI branches, build option, command generator, and Multinet model selection. WIS becomes the sole speech recognition path while ESP-SR remains for wake-word detection. The main benefit is reducing the C migration surface. This deletes 278 lines overall, including 147 lines from C sources and headers.
Willow currently honors was_mode being disabled and then sends WIS results directly to Home Assistant, openHAB, or a generic REST endpoint. WAS provisioning enables WAS mode by default but deliberately retains this legacy fallback. Remove that fallback and make WAS-mediated command handling mandatory. Always forward WIS results to WAS, and remove the direct endpoint clients together with their endpoint-only HTTP helpers. This shrinks the remaining C and header code by 790 lines. Keep the WAS WebSocket and the HTTP client used by OTA and WIS. Existing v1 configuration documents may still contain was_mode and the legacy endpoint fields, but the firmware no longer consumes them. Link: HeyWillow/willow-application-server#151
stintel
force-pushed
the
rip/endpoints_and_multinet
branch
from
July 22, 2026 16:52
4dccc9e to
180ef7e
Compare
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Remove direct endpoint and multinet support.