Let's end Context windows, RAG, and skill files.

Reddit r/AI_Agents Tools

Summary

The author describes a backend agent memory system that outputs embedded state parameters instead of natural language chunks, using a GGUF adaptor with a qwen3 model. It employs dual perpendicular graphs and cyphers for real-time memory integration, potentially eliminating the need for context windows, RAG, and tool schemas.

I've been working on a backend agent memory system but how it works makes makes it possible to output embedded state parameters instead of natural language memory chunks (rag). With a GGUF adaptor and a 0.6b qwen3 I was able to have the system output reasonable sentences that directly reflect the actual concept nodes and relations that the system forms from its normal operation. Yesterday, I would've laughed at this post, but this morning when I tested the adaptor... Yeah there's no natural language prompting being sent to the LLM and it's still outputting reasonably accurate sentences. It's honestly a pretty clever little system that uses dual perpendicular graphs and dual cyphers to automatically cross referencing for internal relations at every input and output. Meaning it doesn't need to store static memories then run some extra pass to perform consolidation, memories are stored in real time and effect the reasoning paths in real time. The way this system functions, in theory, it should be capable of maintaining conversation without any external cache (context window), it doesn't prompt the LLM in natural language, so no RAG, and actionable outputs can be routed directly at the system level, so no tool schema no LLM tool calling. The LLM isn't a cognitive engine at all, it's literally just the speaking/language center. I'm pretty excited about this build and it's potential. Please, if your into AI agents and memory systems, please check this out and consider collaboration. I wouldn't make these claims if I didn't feel there was at least some realistic merit to them. Link below in comments Thanks everyone!
Original Article

Similar Articles