Again amazing work! waiting for what you guys cook next
Show HN: Sweep, Open-weights 1.5B model for next-edit autocomplete
11–20 of 160 posts
Re: Show HN: Sweep, Open-weights 1.5B model for next-edit autocomplete
#12Would instead of the RL step a constrained decoding say via something like xgrammar fix syntax generation issue ?
Re: Show HN: Sweep, Open-weights 1.5B model for next-edit autocomplete
#13Re: Show HN: Sweep, Open-weights 1.5B model for next-edit autocomplete
#14Re: Show HN: Sweep, Open-weights 1.5B model for next-edit autocomplete
#15Re: Show HN: Sweep, Open-weights 1.5B model for next-edit autocomplete
#16Do you plan to release Sweep 3B/7B on HF?
Re: Show HN: Sweep, Open-weights 1.5B model for next-edit autocomplete
#17I wonder whether we are perhaps the point of usefulness of 'next edit' code development in 2026 though.
Re: Show HN: Sweep, Open-weights 1.5B model for next-edit autocomplete
#18I'm very green to this so forgive if this question sounds silly: Would instead of the RL step a constrained decoding say via something like xgrammar fix syntax generation issue ?
It can, but you have to consider two things here:
a) constrained decoding ensures adherence to syntax, not semantics. Say you're editing a field in an enum in rust. You can write syntactically correct rust code that doesn't address the new field further in the code (say in a switch). You'd get correctly syntactic code, but the compiler will scream at you. RL works on both.
b) if your goal is to further train the model, so it works on many tasks, RL helps with exploring new paths and training the model further. Constrained grammars help with inference, but the model doesn't "learn" anything. With RL you can also have many reward functions at the same time. Say one that rewards good syntax, one that rewards "closing" all the functions so tree-sitter doesn't complain, and one that rewards 0 errors from the compiler. The model gets to train on all 3 at the same time.
Re: Show HN: Sweep, Open-weights 1.5B model for next-edit autocomplete
#19I use Sweep’s Jetbrains autocomplete plugin daily, it really stands out.
I did buy their $100/yr AI but its about to run out.