| ▲ | mikepurvis a day ago | |||||||||||||||||||||||||
Is there anyone exploring or writing about this in public? I've felt for a while that the turn-based model was not quite right, but also felt too stupid and ill-informed to have much of an opinion about what else it could be. | ||||||||||||||||||||||||||
| ▲ | chorsestudios a day ago | parent | next [-] | |||||||||||||||||||||||||
Thinking Machines, the started founded by former OpenAI CTO Mira Murati. The interaction models demo’s in their videos imo breaks the awkward turn-based barrier. Returning responses quickly reaches a threshold where it starts to feel like a natural conversation. Their approach to solving this problem is rather clever. | ||||||||||||||||||||||||||
| ▲ | b112 a day ago | parent | prev [-] | |||||||||||||||||||||||||
I have an active 'sleep' mode, where when the user is AFK the LLM goes into a loop with a sleep 10 between turns, and determines (via tool use) if something should be done. That's still a 'turn' in a way, but it's all the LLM just sort of sitting around like a human would, pondering what to do next. But I could imagine after each space(eg, word) having a 27b model on a nice rig, with thinking off, doing a quick look at the sentence and determine if it should interrupt and start a real turn with thinking on. Which kind of is non-turn based in a way. If you're typing fast, it might hit that run every 3 or 4 words, but that's sort of how a human might be when a person is talking to them. That is, waiting for enough info to interrupt, if needed. There might be a way to process chunks of a sentence using commas as break points, eg for comma delimitated phrases in sentences, so the whole sentence doesn't need to be re-processed each "should I break in" assessment at word break. Could be fascinating. Could actually do some of this right now. I don't think this is what the parent poster was thinking, but the idea even at this level seems fun. | ||||||||||||||||||||||||||
| ||||||||||||||||||||||||||