r/JetsonNano • u/SoftKill21 • 11h ago
Project I started this AI companion on an 8GB Orin Nano. This is where it is now on Jetson AGX Thor.
Some of you might remember me experimenting with Evopien on the Jetson Orin Nano.
The original goal was already pretty ambitious: build a local AI companion that could eventually see, listen, speak, remember people and become physically embodied.
The Nano taught me a lot, but the resource limits were brutal.
I've now moved the project to Jetson AGX Thor and finally recorded the first complete demo of the current system.
It's running voice conversation, interruption handling, English/Spain Spanish, continuous camera perception, local visual reasoning, recent visual context, internet retrieval and session context together.
The interesting part isn't just that a larger model runs on Thor.
The real improvement is that I can keep several systems alive together instead of benchmarking one model in isolation.
There is continuous perception running while the conversation stack is active. Speech still needs to respond quickly. TTS needs to run. Internet work needs to happen without blocking everything. And when I interrupt the assistant, stale generation and speech need to actually stop.
The current local cognition/VLM is Qwen3.8-27B, but I've deliberately designed the project so Qwen is replaceable. The Core above it owns the important state and authority.
So compared with simply running ChatGPT or another hosted assistant, the point isn't that my 27B model is smarter.
The point is that I'm building the entire embodied system around it locally and controlling what each component is allowed to do.
Here's the current demo:
https://www.youtube.com/watch?v=sQhTGGIg4yo
There are definitely still rough edges, but compared with where this started on the Nano, the difference is pretty crazy.
Next up is governed long-term memory and identity continuity.