Earlier quoted context omitted.
When they say "can't hallucinate" they mean they produce a confidence value for every result, so you could see for example it has 0.1 confidence, and you can disregard the result - that'd be different from hallucinating where it believes it's correct
if it puts a high confidence value on a wrong answer, thats still hallucinating, no? llm hallucinations are high probability tokens that are incorrect vs the real world
Introducing System One Models and Jev
271–280 of 512 posts
Re: Introducing System One Models and Jev
#272A few questions: 1. Do you provide any kind of largest common subtree caching for cheaper input? 2. Have you tried auto-generating Lisp programs structurally? 3. Have you tried augmenting a Lisp language with a `choice` function that makes choices given a prompt, the environment, and the continuation stack?
(1) Nope, it's always the same input token cost (2-3) No, but that's kind of a sick cook ... Want to get access and try it? nathan@typesafe.ai
Maybe I'm just not doing a very good job at prompting Jev, but I think right now it's not quite capable enough to generate Lisp code.
Link: https://console.typesafe.ai/playground?share=shr_148e1248984...
Re: Introducing System One Models and Jev
#273It might be boring, but I can see exactly how I could use this right now to improve my agentic rag.[0] In two months I am supposed to deal with a giant corpus, while still maintaining responsive chat UX. I have been working my butt off to make our first big client happy. This could really help solve the chunk ranking problem.
[0] assuming the policies are compatible with sensitive production workloads, some time in the near future.
Re: Introducing System One Models and Jev
#274Re: Introducing System One Models and Jev
#275Wasn'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.
Re: Introducing System One Models and Jev
#276Earlier quoted context omitted.
This is likely still an LLM (in the purest definition of a language model with relatively many parameters) since the inputs are natural language, just not a generative LLM as the output is something other than more language.
The inputs aren't natural language. https://docs.typesafe.ai/primitives
questions = {
"refund_requested": Noul(
instructions="Does the customer request a refund?",
),
}Re: Introducing System One Models and Jev
#277Earlier quoted context omitted.
if it puts a high confidence value on a wrong answer, thats still hallucinating, no? llm hallucinations are high probability tokens that are incorrect vs the real world
Yes, there is no magic sauce here that makes stochastic output binary if that’s what people are looking for.
Re: Introducing System One Models and Jev
#278Earlier quoted context omitted.
if it puts a high confidence value on a wrong answer, thats still hallucinating, no? llm hallucinations are high probability tokens that are incorrect vs the real world
Yes, there is no magic sauce here that makes stochastic output binary if that’s what people are looking for.
Re: Introducing System One Models and Jev
#279Wasn'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.
Re: Introducing System One Models and Jev
#280Last 32k of connect + Summary of current task: Did we learn something useful here (true/false)? What is the category to file it under? Then notify the LLM to file it away.
What class of memory might be useful here? Model gives probability to each item in the list. Short description of all memories ordered by tagged class is used in the next round. Are any of these memories useful in the current context, such that they will inform the model and help in its task (yes/no)?
I’m sure there’s some fine tuning to be had, but this sure seems like the basis for a substantially better proactive memory system that works around an existing LLM conversation.
If I’m understanding what this does and how this works (generic input, intelligent classification with probabilities, rapid and cheap), this is absolutely nuts.