Wasn't really till seeing this home assistant demo they have ( https://www.loom.com/share/18c4dbcf8db546dfb2d7f2ef018e78e4 ) that the value really clicked for me. Seems really cool.
That's good. Side note - just like most people don't need an intelligent personal assistant to manage and respond their emails and book their flights, most people also don't need smart homes. Century old toggle switches are more than enough in a 3 room apartment or 5 room house unless you have a mention.
Introducing System One Models and Jev
321–330 of 513 posts
Re: Introducing System One Models and Jev
#322Can I put it as Air Traffic Controller? With similar error rates as humans? That would be the litmus test. "Does not hallucinate" is not the same as "is never wrong". So the ATC test could be the benchmark.
Re: Introducing System One Models and Jev
#323So in theory you could feed it incomplete text, and then ask it for the probabilities of what the next character could be?
Or a partially completed song, asking for the next note. I’m not sure if you’re joking, but using it for space constrained next token generation within a grammar sounds like a really neat use case.
Re: Introducing System One Models and Jev
#324I could see this being fantastic for classification tasks. Last year I shifted from using LLMs for bulk data classification tasks (1M transcripts) to generating embeddings and categorizing based on cosine similarity. It saved a ton of costs and time, but wasn't as accurate as LLMs. This seems like it can give me Terra-level classification ability with the cost/speed I need.
Re: Introducing System One Models and Jev
#325Earlier quoted context omitted.
we hope so! the bigger hope is to not just eat LLM market share, but to allow for people to use AI much more in the inner loop of software
I'm sure you've thought of self-driving. How does the model work in that space?
Full disclosure, I am not they :=)
Re: Introducing System One Models and Jev
#326Earlier quoted context omitted.
I would guess a tiny stripped down text diffusion model. It only has 32k context, and for choice mode it can only select from 10 choices.
> and for choice mode it can only select from 10 choices. Rip there goes my excitement. I have a task that something like this would be great for but the list of options is a zero or two larger than that xd
Re: Introducing System One Models and Jev
#327After much fumbling around with prompts and evals, this is exactly how I am using LLMs in production, to narrowly make choices and return structured data. Any deterministic work gets pulled out of the prompt and my goal is to narrow the model output to be as clearly defined and as minimal as possible. Jev's focus on structured I/O and confidence scores are game changing. If this does at all what it claims, I think th…
Re: Introducing System One Models and Jev
#328Earlier quoted context omitted.
> Type safety is not factual correctness. I very much agree with this and want to hone in on where do actually disagree. Would you say a linear classifier hallucinates?
User input: "Hey, have your human support agent call me, tomorrow at 5pm." Model input: "Does the user want to speak to a human support agent?" Output: Yes. I imagine that your model would produce this, and I think it's fair to say this is a hallucination. A human would caveat it with: "Yes, but not right now.", your model is incapable of that. Yes is technically correct, but within the context of being in a live cha…
Re: Introducing System One Models and Jev
#329Earlier quoted context omitted.
we hope so! the bigger hope is to not just eat LLM market share, but to allow for people to use AI much more in the inner loop of software
I'm sure you've thought of self-driving. How does the model work in that space?
Decision making isn't that of a bottleneck I suppose.
Re: Introducing System One Models and Jev
#330Earlier quoted context omitted.
Just to be sure that I understand, you're saying that your model "can't hallucinate" because it only outputs a single thing, right? In this way, an LLM can't hallucinate either if I prompt it to do a classification task with a discrete set of possible outputs, right? (Assuming I reject non-conforming output. Actually, maybe what you're saying is that your system can't output non-conforming output?)
Yeah that's precisely correct. For e.g. classification tasks, even in 2026 people are doing things like hallucinating deliberately, and then matching the hallucinations to embeddings - https://softwaredoug.com/blog/2026/08/10/hypothetical-classi ... With TypeSafe it just picks the class (actually probabilities across classes), reliably every single time.