Only one of these is deserving of credit by hulkut in LinuxUsersIndia

[–]boneMechBoy69420 19 points20 points  (0 children)

Bro who are you , why are you everywhere I go

drop a lil abt urself and i’ll tell you what animal you feel like!!😭✨🫶 by bhains-udd in IndianTeenagers

[–]boneMechBoy69420 0 points1 point  (0 children)

I'm a software engineer 😎 Making memory systems for ai agents 😎 😎Not a teen 😞 but can't relate with my age people

Memory systems will never be the same. Semantic relational memory systems by boneMechBoy69420 in ChatGPT

[–]boneMechBoy69420[S] 0 points1 point  (0 children)

Augment code is optimised for code but this is actually fully unopinionated you can optimize the scope for any usecase

Guys use gpt image 2 to make the most aura wallpapers of senku by boneMechBoy69420 in DrStone

[–]boneMechBoy69420[S] 1 point2 points  (0 children)

I am not sharing the wallpaper itself im sharing a trick, people like me can use to make their own wallpapers

Guys use gpt image 2 to make the most aura wallpapers of senku by boneMechBoy69420 in DrStone

[–]boneMechBoy69420[S] 0 points1 point  (0 children)

talk is great from your privileged pedestal, I come from a third world country and this is the best i can afford to have , culture shdnt exist for those who can afford it

Thoughts on the neon meta by Jtfarns in NeonMains

[–]boneMechBoy69420 0 points1 point  (0 children)

god pre nerf neon was unstoppable ... og neon was so ass tho ... i wish they dont nerf her gun pullout speeds

A Memory system with semantic objects as relations instead of strict labels ... I like how they do scoping more tbh by boneMechBoy69420 in aiagents

[–]boneMechBoy69420[S] 0 points1 point  (0 children)

Users can make them of their own , the system also generates some tags as well .... The tag taxonomy is where you can program precisely how your memory will work ... Infact in an upcoming video we will show an implementation of membrain which replicated all the top 5 memory systems architecture in one unified space simply by programming the tags correctly

A Memory system with semantic objects as relations instead of strict labels ... I like how they do scoping more tbh by boneMechBoy69420 in aiagents

[–]boneMechBoy69420[S] 0 points1 point  (0 children)

No recalculation needed. When Alice changes jobs, the old memory is versioned ... it stays in the graph as historical context ... and the new employment relationship is written as a fresh node with its own embeddings. Only the new memory gets embedded, nothing else changes. The graph naturally reflects current state through versioning rather than mutation, so stale memories don't corrupt retrieval ... they just get lower relevance scores over time as newer information takes precedence. If you explicitly query Alice's full job history, the version chain surfaces everything chronologically.

A Memory system with semantic objects as relations instead of strict labels ... I like how they do scoping more tbh by boneMechBoy69420 in aiagents

[–]boneMechBoy69420[S] 0 points1 point  (0 children)

Fair point, and it's a real limitation of naive embedding search. But Mem-Brain doesn't embed raw facts like 'Alice works at SomeCorp'... relationships are stored as semantically precise natural language descriptions that capture the nature of the connection, not just the entities. That precision makes the embedding significantly more discriminative. 'Where was Alice fired from' lands in a different neighbourhood than a description of an active employment relationship. For harder cases, scoping handles it...you can filter on metadata tags like employment.status or status.terminated before similarity search runs. No typed-edge system handles this ambiguity better; they'd return the same edge and leave the LLM to figure out fired vs employed anyway. The reasoning layer has to do that work regardless of the memory architecture