Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
dev_tools_lab
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
8 ms
·
1.
▲
by
dev_tools_lab
5mo ago
This is exactly why single-model evaluation is dangerous. Benchmarks are gamed, but disagreement between models is harder to fake. Multi-model consensus catches what individual benchmarks miss.
2.
▲
The Star Chamber: Why Multi-LLM Consensus Is Now a Necessity for Code Quality
(blog.mozilla.ai)
3 points
by
dev_tools_lab
5mo ago
|
0 comments
3.
▲
by
dev_tools_lab
6mo ago
Thanks for this project. Prioritizing MoE models and adding an intelligent NVMe cache could improve efficiency, especially on the M4 Max where bandwidth makes usage more realistic.
4.
▲
by
dev_tools_lab
6mo ago
True, Claude and Gemini aren’t local yet — I mostly meant running all available local models in parallel. Even with just open-source LLMs, you can see interesting differences in flagged issues when cross-validating outputs.
5.
▲
by
dev_tools_lab
6mo ago
Agreed. The practical implications are often more interesting than the math anyway — smaller models running locally means you can afford to run multiple models in parallel for cross-validation, which changes how you approach tasks like
6.
▲
by
dev_tools_lab
6mo ago
Nice work on the scheduler. Have you benchmarked parallel inference across multiple models? Running GPT, Claude and Gemini simultaneously on the same input is where latency becomes a real constraint.
7.
▲
by
dev_tools_lab
6mo ago
Makes sense for now. Thresholding becomes critical at scale though — good luck with the next iteration!
8.
▲
by
dev_tools_lab
6mo ago
Good reminder to pin dependency versions and verify checksums. SHA256 verification should be standard for any tool that makes network calls.
9.
▲
by
dev_tools_lab
6mo ago
Nice use of native video embedding. How do you handle cases where Gemini's response confidence is low? Do you have a fallback or threshold?
10.
▲
by
dev_tools_lab
6mo ago
One pattern I've noticed: the apps that work best combine multiple models rather than relying on one. Single-model outputs have too much variance for production use cases.