Join Nostr
2026-02-07 21:05:14 UTC
in reply to

IngwiePhoenix on Nostr: smol thought! Early voice assistants deserialized incoming speech into intend and ...

smol thought! Early voice assistants deserialized incoming speech into intend and target. If you give a small model a scheme of that, and deserialize the input into structured objects, you could parse it. Relying only on the model's ability to understand natural language and then proceeding with maschine decisions may help.
Maybe. I dont know. But it's what immediately popped into my mind x)

type Intent struct { Subject, Action, Parameter string }

And then perhaps something like: func ExecuteOnIntent(i Intent | []Intent) // invalid Go, but basically, either one or many intents.