Video yükleniyor...

Video Yüklenemedi

Ana Sayfaya Dön

Introducing RVM: The Virtual Machine Reimagined for the Agentic Age. Traditional virtual machines were designed for stable, predictable workloads. You carve up hardware into fixed slices, assign memory and CPU, and hope the boundaries hold. That model assumes applications sit still. Agents don’t. They spin up, disappear, coordinate, and...

14,334 görüntüleme • 5 ay önce •via X (Twitter)

0 Yorum

Yorum bulunmuyor

Orijinal gönderinin yorumları burada görünecek

Benzer Videolar

FIVE LAYERS OF AGENT ENGINEERING, EACH ONE WRAPS THE ONE BELOW IT. IF YOU SKIP LAYER 2, YOUR LAYER 5 WILL LOOK BROKEN WHEN IT IS ACTUALLY JUST STANDING ON NOTHING. for weeks i debated harness vs loop vs graph like they were competing choices. then a stack diagram made the shape obvious. they are not choices. they are floors. 01 | prompt engineering. the message. unit of work: one input. inputs are role, instructions, examples, format. output is a single raw response. 02 | context engineering. the memory. unit of work: what stays in the window. a curator selects, compresses, and drops from query, docs, memory, prior turns, and tool outputs before the prompt runs. 03 | harness engineering. the machine. unit of work: the machine itself. gather (context + prompt) → LLM → tools or sub-agents → verifier → final response. the article calls this the operating environment. 04 | loop engineering. the system. unit of work: the run. goal + success criteria + max iterations + budget + completion check wrap around one harness pass. failed pass appends results to context and retries. 05 | graph engineering. the topology. unit of work: the graph run. goal + nodes + edges + state schema. graph routes to agent nodes, tool nodes, or human approval. a reviewer node with a different model and fresh context checks the final answer. the wrapping is the whole point. layer 5 assumes layer 4 works. layer 4 assumes layer 3 works. skip layer 2 and layer 3's verifier keeps failing without a clear reason. this is why swapping the model is a one-day project and swapping the stack is a quarter. the model is the commodity. the five layers around it are the engineering. full three-layer breakdown of the top of the stack (harness, loop, graph) in the post below.

kocer

30,675 görüntüleme • 17 gün önce

A very prominent African shared this video with me and joked, “…this is the best illustration of your people.” It is true that the real danger is not the fire; it is the blind obedience by the sheep. The real danger is no longer ZANUPF as far as the world is now concerned, it is the blind obedience we give it daily and our inability to see a way out of this mess. The same way these sheep are hopelessly made to go around a fire is the same way ZANUPF, and indeed the opposition, treats you. They throw out any useless idea, and you all run with it, regardless of how stupid it is. ZANUPF will tell you that sanctions have destroyed Zimbabwe, even as you witness their daily looting, and some fool will run with that cheap sanctions propaganda even when presented with figures of looted funds. Opposition supporters will be told that this time they do not need a constitution or structures, and they will still run with such a crazy idea, believing it will work. The real danger is the people’s inability to think for themselves and ask the right questions, instead of being shepherded into stupidity like sheep. A real man or woman doesn’t feel pity for being stupid when they find out, they fix the problem that created that stupidity and move on! They don’t defend being stupid, they realise their mistakes and remove the stupidity and become better people! Every Zimbabwean is a legitimate victim of shame due to the stupidity that has engulfed our country. Regardless of whether you drive a Bentley, are a professor, or an award-winning journalist, lawyer or doctor, as long as you are Zimbabwean, you carry the stain of the political stupidity that has come to define our country. Stupid people defend their stupidity; smart people realise they are in stupidity terrain and move away. What are you? What are we?

Hopewell Chin’ono

113,719 görüntüleme • 1 yıl önce

Loops vs. Graphs, clearly explained! loops are great, but they have a ceiling: a loop makes one unit of work better. it cannot decide which units exist. so you end up with a very good agent running the wrong three steps, in the wrong order, one at a time. Graph engineering fixes this by moving the decision up a layer: what runs, what runs at the same time, and what never runs at all. you need both. here's how it works: a graph splits your system into two kinds of decision. ↳ inside a unit: the loop. produce, check, correct, repeat until green ↳ between units: the graph. split, fan out, merge, gate, send back Prompts → Context → Harness → Loops → Graphs you get parallel work, isolated contexts, and steps that stop running when nothing needs them. the trick is being selective about what becomes a node. only spend a model where judgment lives. merging, ranking, deduping and schema checks are edges, and edges are code. free, instant, and they cannot be argued out of a verdict. a graph where every edge is an agent pays rent on its own wiring. one thing to know before you scale it. a graph has two return paths, and almost everyone builds one. ↳ the correction edge is short. a gate rejects one unit back to the step that produced it, and it fixes the run you are in ↳ the learning edge is long. an accepted result goes back to the splitter as a constraint, and it fixes every run after skip the second and you get a graph that is fast and never gets smarter. next week it starts from the same place with the same blind spots. and a smaller one that eats whole nights: when a unit fails, return that unit, not the batch. send back four slices because one failed and you have just rewritten three correct ones. do it twice in a run and the run never converges. below i have quoted my full guide on graph engineering. it covers the three topologies, the verifier patterns, and where the gate should actually open. save this and read it below ↓

Hanako

73,867 görüntüleme • 26 gün önce

Everyone wants agent swarms. Very few people are talking seriously enough about the context layer that makes swarms useful. Even with one agent, context is fragile. Too little context and the agent guesses. Too much context and it wastes tokens, loses focus, or reasons over irrelevant noise. The sweet spot is precise context: the right knowledge, in the right structure, at the right moment. With many agents, that challenge explodes. Each agent produces decisions, assumptions, findings, summaries, risks, and partial conclusions. Unless that knowledge becomes shared, structured, and reusable, every new agent is forced to rediscover what another agent already learned. That is not a swarm. That is a crowd. Shared context graphs are what turn agent activity into agent collaboration, and OriginTrail DKG V10 brings them to life. Was just playing with some final polishing for the V10 release, and it is really powerful to see shared context graphs where multiple agents contribute knowledge into the same connected memory, with attribution visible directly in the graph ui. That matters for three reasons. First, agents can access and build on one shared memory instead of staying trapped in isolated sessions. Second, the graph structure helps them retrieve the exact context they need, instead of stuffing everything into a prompt and hoping the model sorts it out. Third, verifiability of provenance. You can see which agent contributed each piece of knowledge, trace the source, and decide what to trust. Tokenmaxxing starts with fewer tokens, but the deeper story is coordination - agents stop reloading the world and start building on shared, verifiable context. That is the foundation for serious multi-agent work across software engineering, research, finance, operations, project management, and far beyond. The future is not more agents, it is agents working from shared, verifiable context. But the more the merrier, of course.

Jurij Skornik

11,180 görüntüleme • 3 ay önce

context engineering vs graph engineering. every few months the list gets a new word and everyone treats it as a replacement for the last one. these two are not on the same list. one decides what the model sees this turn, the other decides what exists at all. the cleanest way to tell them apart is to ask what a single unit of work looks like. > context engineering is the window the window opens empty, every single time. you assemble what goes in it. the prompt, the docs, the history, the tool results. the assembling is the work. the window only grows. it never shrinks on its own, so eventually something gets dropped. usually from the middle. usually without telling you. then the turn ends and the window is thrown away. not archived, thrown away. the next turn opens empty again and you re-explain what you already explained. good context engineering is knowing what to leave out, not what to pack in. the unit of work is one window. > graph engineering is the structure the same material arrives from the same sources. instead of packing it into a window, you pull entities out of it, resolve the duplicates into one node, and write typed edges between them. nothing here is stored as text you hope to find again. it is stored as a thing with a name and its connections to other things. when the turn ends, the graph is still there. the next turn does not start from zero. it starts by querying what already exists, and the query walks edges instead of guessing at similarity. good graph engineering is deciding what counts as the same thing twice. the unit of work is one relationship. > they are not alternatives the graph is what refills the window. context engineering decides what fits. graph engineering decides what there is to choose from. remove the graph and every session starts blind. remove the context work and the best structure in the world arrives as an unreadable dump. that also tells you which one broke. the answer drifted from what you actually said, or forgot something from this same session. that is the window. the answer is coherent but invents a connection that does not exist, or cannot join two facts it has clearly seen. that is the structure. people debug the prompt because the prompt is the easiest thing to edit. it keeps taking the blame for failures that live a layer down. save this - then read the full breakdown below

Hanako

19,160 görüntüleme • 1 ay önce

"Men do not stay for platitudes. Platitudes do not carry a soul through the winter. When the child is in the ground, when the marriage is in ruins, when the diagnosis comes back and the floor drops out of the world, no one was ever held up by 'be kind and stay positive.' They are held, if they are held at all, by something with iron in it. By a witness that the heavens are real and open, that God still speaks, that the dead are not lost, that there is power on the earth greater than the darkness. The early Saints had that, and they knew they had it, because they had felt it in their own bodies. They were healed under hands. They spoke in tongues. They saw visions and buried their children in the certainty of resurrection and crossed a continent on the strength of a fire they could not have faked. That is what converts a man and that is what keeps him, not a well managed self-help program, but the living evidence that what we preach is true. So the cure is not complicated, and it is not new. It is to be again the Church of our fathers. Stop apologizing. Stop trimming the glorious truth into something the world will pat on the head. Speak with authority and with the hammer, the way Joseph spoke, the way Brigham spoke, the way men speak when they actually believe the heavens have opened over them. Reach again for the gifts of the Spirit, and stop pretending they were a founding era curiosity, because a testimony built on argument crumbles in the first storm and a testimony built on the manifest power of God does not. And above all, live as though the heavens are open, because they are, and they have only ever felt closed to a people who stopped expecting them to answer. The Saints are not leaving because the gospel is too much. They are leaving because we have made it too little. Make it glorious and demanding again, and watch who comes back through the door. The hungry have not gone anywhere. We simply stopped setting the table."

Kirk Rollins

63,131 görüntüleme • 3 ay önce

🚨 BREAKING: New video footage shows ICE agents violently assaulting and arresting a U.S. citizen… 20-year-old Mubashir…and it is even more horrifying. The video shows agents slamming Mubashir into metal poles as they wrestle him into handcuffs. He’s not fighting. He’s not resisting. He’s pleading, telling them again and again that he is a U.S. citizen and that he has his ID on him. They ignore him. Moments later, a group of people rush into the stairwell blowing whistles in protest. As they stand there, you hear Mubashir scream in pain: “My hand!” The agents then drag him outside toward their vehicle. You can hear Mubashir tell them again that he has his ID. Instead of checking, the agents assault him a second time. They throw him to the ground, shove his face into the snow, and then forcing him into their car without ever verifying who he is. They didn’t check his ID until after they’d already transported him miles away, to a detention facility, where they tried scanning his fingerprints and face into their system, and only then decided to look at the ID he’d been begging them to check from the start. And when they realized they had brutalized an American citizen? They released him with no medical attention, no apology, and no transportation back to where they took him from. This isn’t “immigration enforcement.” This is lawless violence, committed by federal agents who act as if citizens have no rights and cameras don’t exist. And this is exactly why people need to film, why states like Illinois are passing laws allowing residents to sue ICE agents directly… and why the public must keep demanding accountability until abuses like this are impossible to ignore and impossible to get away with.

Jesus Freakin Congress

573,539 görüntüleme • 9 ay önce

.Erik Voorhees: It’s actually good, from the Trojan horse perspective, that Bitcoin was traceable enough for traditional institutions to tolerate it. “When Bitcoin came out, everyone called it private, thought of it as private. It was referred to as anonymous in every news story. And in some ways, it is very private and very anonymous. But the truth is that it’s also extremely trackable and traceable. It is not private in reality. And the question is, should it have been from the start? And at first I thought, yes, it should have been more private. And that was a mistake in its design. However, I think if Bitcoin had been anonymous truly from the start, like a Zcash or a Monero, it would have had such antagonism from the state. I don’t know that the state could have snuffed it out, but they would have tried much harder. And I think it’s actually good, from the Trojan horse metaphor perspective, that it was traceable enough that the traditional institutions could tolerate it. They’ve never liked it, but they could at least tolerate it because there is some traceability. And that has allowed Bitcoin to grow. And I think in its shadow, that other crypto assets are actually anonymous is very healthy. The strength of cryptocurrency as a concept in society, I think, is served best when Bitcoin itself is not perfectly private, but other assets are. That is a very difficult thing, I think, for the state to combat. And that decentralization of attributes is really, really crucial. So, yeah, I’m very glad that there are other coins that are private. I want there to be more of them, and I want them to be more popular. And I think it’s okay that Bitcoin itself is not.”

Arjun Khemani

23,056 görüntüleme • 2 ay önce

UC Berkeley just open-sourced FreeToken. (2–4x faster local LLM inference than Ollama) the results are wild: - Qwen3.6-35B on an 8GB GPU at 39.3 tokens/s - DeepSeek-V4-Flash 284B on a 32GB GPU at 22 tokens/s - GLM-5.2 753B on a 96GB GPU at 14.9 tokens/s a 35B model at 16-bit precision needs about 70GB just for its weights. even at 4 bits it is close to 18GB, and FreeToken serves it on an 8GB GPU. let me explain how: all three models mentioned above are Mixture-of-Experts, and that is what FreeToken takes advantage of. each layer holds hundreds of separate experts plus a small router that picks a few of them per token. Qwen3.6-35B activates roughly 3B of its 35B parameters per token. DeepSeek-V4-Flash picks 6 of 256 experts per layer, so 13B of its 284B run at a time. so compute was never the bottleneck. the weights a single step touches fit comfortably on a consumer GPU. every expert the router might pick still has to exist somewhere. they sit in system RAM, and the GPU keeps a cache of the ones the model has been using recently. so everything comes down to what happens when the router picks an expert that is not on the GPU. there are two ways to serve that miss: 1. copy it over PCIe and run it on the GPU 2. run it on the CPU, where it already lives both read from the same system memory, so they compete for one pool of bandwidth instead of adding to each other. existing engines pick one option and freeze it when the model loads. but routing changes on every token, so a fixed choice misses most of what the model asks for. FreeToken measures both bandwidths on your machine and splits each step's misses between the two paths in proportion. the GPU and CPU results then merge exactly, with no approximation. two machines with the same GPU can end up wanting opposite strategies, which I did not expect. a 5090 in a gaming desktop should push nearly everything over PCIe, while an 8GB laptop is better off computing most misses on the CPU. none of that is readable off a spec sheet, so the engine profiles it once per machine. the second half of the design is about agents. coding agents constantly rewrite their own history, and every edit normally forces thousands of tokens back through prefill. FreeToken saves its checkpoints at the exact boundaries agent frameworks cut on, so it only reprocesses the new part. its slowest first token stays under 44 seconds, while llama.cpp peaks at 232 and KTransformers at 946. it serves the OpenAI and Anthropic APIs under Apache 2.0, so Claude Code and Codex can point at it directly. releasing weights publicly decides who can download a model, not who can afford to run one. frontier open models keep shipping, and running them still assumes a rented cluster. meanwhile there are over a hundred million consumer machines with discrete GPUs sitting mostly idle. closing that gap was never a hardware problem, and work like this is what turns open weights into something you can actually use. paper: repo: almost every idea in this post, from why memory bandwidth decides the outcome to why moving weights costs more than computing on them, comes straight out of how a GPU is built. I wrote a detailed primer on that. the article is quoted below.

Akshay 🚀

342,266 görüntüleme • 25 gün önce