Models without tools and harnesses are not really that useful. My observation is that the tool ux is driving most progress at this point. There are of course open source tools and harnesses but they require more effort to setup properly. The key challenge is to pick the right model for the right task or sub task and doing that automatically rather than manually. A big part of the problem here is that everybody is pic…
Beating GPT-5.6 Sol on retrieval with 100x cheaper open models
101–110 of 132 posts
Re: Beating GPT-5.6 Sol on retrieval with 100x cheaper open models
#102One thing that plagues [insert current FAANG] is the large amount of corpus knowledge that is outdated/misleading or just plain wrong. I'm curious how this addresses that if it's deriving the reward function from the corpus itself.
(founder of castform here!) - having worked at FAANG / big tech, i totally get this. our example was on gitlab's open source company handbook but i think a real company's corpus is way more messy and has many sources of truth. a few ideas i have yet to validate are: - prioritize recently updated docs when generating the training questions (assumption those docs are more correct than others) - actually including contr…
Re: Beating GPT-5.6 Sol on retrieval with 100x cheaper open models
#103whats about self-consistency like in grpo with majority voiting?
Re: Beating GPT-5.6 Sol on retrieval with 100x cheaper open models
#104Earlier quoted context omitted.
Electricity becoming a commodity doesn't necessarily make nuclear reactors become commodities. And as we can see, the publication of open-weight models doesn't really diffuse the know-how of training SoAT models as we expected. Even the major cloud providers are still unable to build competitive ones from scratch on their own. That's very different than the traditional FOSS ecosystem, where everyone can copy, learn,…
> Electricity becoming a commodity doesn't necessarily make nuclear reactors become commodities. Bad comparison? Nuclear reactors become obsolete. The only reason to build a nuclear reactor is as a government vanity project, just to get the bribes you want, or weapons grade material. Dirty tech.
Re: Beating GPT-5.6 Sol on retrieval with 100x cheaper open models
#105Earlier quoted context omitted.
yes, and this is why we need model routing
castform founder here: totally! we also think model routing is also a post-training problem i.e. getting a model to predict the difficulty of a task and match it to the right model -> we're gonna be sharing more on that soon :)
Re: Beating GPT-5.6 Sol on retrieval with 100x cheaper open models
#106There is so much opportunity for purpose built models like this. Ideally a harness should spin up a subagent to offload to targeted models for specific tasks like this. I know this is not a novel idea. Claude code does some of this by handing off the "explore" agent work to haiku. I just love seeing that specialized LLMs are being developed.
Re: Beating GPT-5.6 Sol on retrieval with 100x cheaper open models
#107Earlier quoted context omitted.
(founder of castform here) the model you post-train should ideally learn general patterns & search strategies over your dataset that should transfer to new docs you add to the search corpus (unless its super out of distribution)
i'm a little confused by this, should most piles of company documentation look pretty similar? what are we getting by tuning at the org level? what if you have a bunch of teams or apps that have different documentation patterns? how much does this degrade over time, it beats leading models with that static data set but clearly this edge will degrade with data drift, how quickly does that happen? also, any "this is 10…
- if you have teams that have totally different documentation patterns, yes i think a model trained one teams' docs probably won't directly transfer to another. but let's say you have a model trained on SEC 10-K filings, it should work well as new 10-K filings are added (since terminology & structure of these docs are similar) - on TCO, the training costs for the experiments you saw were <$200 - you bring up a good point on data drift, don't have concrete numbers/experiments here. something we should defn look into (though i imagine this also changes a lot based on use-case and company)
Re: Beating GPT-5.6 Sol on retrieval with 100x cheaper open models
#108People are building agentic search one of three ways: 1. Actually good retireval. There’s been a lot of progress on serving the kinds of queries agents tend to serve, from places like Hornet, MoxedBread, LightOn. Particularly in late interaction 2. Smarter harnesses with models/judges validating the result. This is now just seen as the generator/ evaluator pattern. Here’s where people try to just use grep or some oth…
Re: Beating GPT-5.6 Sol on retrieval with 100x cheaper open models
#109I am not sure about GPT-5.6. It usually 10x more verbose for no apparent reason than GPT-5.5. Maybe it is only me.
Re: Beating GPT-5.6 Sol on retrieval with 100x cheaper open models
#110Earlier quoted context omitted.
(founder of castform here) the model you post-train should ideally learn general patterns & search strategies over your dataset that should transfer to new docs you add to the search corpus (unless its super out of distribution)
could you share more about what you mean by "general patterns & search strategies"? I can think of it being along the lines of searching over specific tables or databases for queries in certain context. It's an exciting line of work and I'm interested because I need something like this for the problem I'm solving atm. So, I'd like to understand how the training generalizes
for more complex multi-hop question, it's also about knowing which sections of a document to look up and in what order.