Загрузка видео...

Не удалось загрузить видео

На главную

The easiest way to run your agent harnesses using local models: Whether you're using Claude Code, Codex, OpenCode, or Pi, the local setup itself isn't really the hard part. The harder problem is figuring out which local model your machine can actually handle well. You have to think about...

17,230 просмотров • 5 дней назад •via X (Twitter)

Комментарии: 23

Фото профиля Hussain Hashim | Building SundayBack
Hussain Hashim | Building SundayBack5 дней назад

@akshay_pachaar figuring out the right model is like a constant trial and error game. I've definitely underestimated my hardware's limits before.

Фото профиля BullBear.News
BullBear.News5 дней назад

context window sizing kills local model runs faster than raw parameter count

Фото профиля Akshay 🚀
Akshay 🚀5 дней назад

Weights are a fixed cost. The KV cache grows with context length and with every parallel agent, out of the same memory. A model that loads fine at short context runs out of room once a harness fills the window. Magnitude tells you up front how much context fits.

Фото профиля Gregor
Gregor5 дней назад

The VRAM math eats most setups alive.

Фото профиля Akshay 🚀
Akshay 🚀5 дней назад

It also fails quietly. You rarely get a clear out of memory error, just a run that slows to a crawl once part of the work moves off the GPU. That is why measuring the fit before the download beats any rule of thumb.

Фото профиля NAMAN RAJ
NAMAN RAJ5 дней назад

I feel you, agent-harnessing can be like trying to find the perfect filter coffee - it's all about compatibility 😂💻

Фото профиля Akshay 🚀
Akshay 🚀5 дней назад

Compatibility really is the whole problem, and the useful part is that it's measurable. RAM, quantization, and how much context actually fits decide whether a model is usable on your machine. That's the step Magnitude runs for you before anything gets downloaded, so you pick from what your hardware already handles.

Фото профиля Buswe
Buswe5 дней назад

Handy sanity check too: a Q4_K_M quant runs about 0.6 GB per billion params, so a 14B fits in 12 GB with room for KV cache.

Фото профиля Akshay 🚀
Akshay 🚀5 дней назад

That covers the weights. A 14B lands near 8.4 GB, leaving roughly 3.6 GB. The leftover is the harder half, since cache size per token differs a lot between architectures, so the same headroom buys very different context lengths depending on the model. But i like what you shared! :)

Фото профиля Tony
Tony5 дней назад

Knowing what the machine can actually handle before downloading a huge model sounds like a very welcome feature.

Фото профиля Akshay 🚀
Akshay 🚀5 дней назад

It saves the download loop where you pull 20 GB of weights just to learn the context you need doesn't fit. Magnitude also runs test inferences, so the recommendation reflects real speed on your hardware, not just whether the weights fit in memory.

Фото профиля FA
FA5 дней назад

Half the "harness is broken" tickets are just a model that can't hold tool calling. What's your go-to small model that still does tools reliably on a laptop?

Фото профиля Mira Synth Tech
Mira Synth Tech5 дней назад

Two commands to cut through all that RAM and quantization headache is exactly what local needed. Super helpful walkthrough.

Фото профиля Offscript
Offscript5 дней назад

the chart measures the machine, but what decides whether a local model is usable in a harness is whether it holds tool calling over a long run. thats not a hardware property. does magnitude test for that or only for what fits in memory?

Фото профиля Wallchain Community Hub
Wallchain Community Hub5 дней назад

this tool actually saves so much local setup headache

Фото профиля Workflow Operator
Workflow Operator5 дней назад

Local-agent model choice should be benchmarked on the workload, not the leaderboard. A smaller model that follows tool schemas, preserves context, and recovers from failed calls can beat a larger chat model. Measure tool-call success, recovery rate, context growth, and latency.

Фото профиля Alek
Alek5 дней назад

Your machine-fit chart is the useful bit.

Фото профиля Crio Songo
Crio Songo5 дней назад

刚好最近折腾本地部署模型,选模型卡参数纠结好久,这个工具能自动适配,正好解决痛点。

Фото профиля Atlas
Atlas5 дней назад

model choice is one layer, but switching models without losing the project context is another problem entirely

Фото профиля nomad.carpenter
nomad.carpenter5 дней назад

Hardware profiling is the missing first step in local-agent advice—model recommendations are only useful when they account for RAM, quantization, context, and the harness you actually run.

Фото профиля AI Mastery Guide
AI Mastery Guide4 дней назад

picking the right model is the real hassle

Фото профиля ethereagle · building
ethereagle · building5 дней назад

a one-shot profile goes stale the moment you add VRAM. does Magnitude re-run when you plug in a second GPU, or is the rec frozen from first boot?

Фото профиля Varik Verilion
Varik Verilion5 дней назад

The hardware check is only half the decision. Context length, tool latency, and how much of the harness can stay resident usually decide the experience. Which constraint surprised you most?

Похожие видео

run agent harnesses 100% private & offline. (no token costs, no API keys, 100% open-source) your agent runs locally. the model doesn't. every prompt, every file, and every secret still leaves your machine before the agent does anything with it. Magnitude fixes that. it's an open source inference server that runs models on your own hardware and plugs into the coding agent you already use. setup is one command. it profiles your machine, measures the memory bandwidth that sets your token rate, and hands back complete configurations instead of a list of models. each one names a model, a compression level, a context size, and a speed range you can expect. pick one and start working. it doesn't replace your harness. setup asks which one you want and writes that config for you. Pi, OpenCode, Claude Code, Codex, and Cline all work, and there's a built-in one tuned for local models if you don't have a harness yet. that one uses your shell, edits files, and runs scripts out of the box. add skills and it handles Excel, PowerPoint, PDFs, or Chrome. everyday work it covers: → analyze sensitive data → manage private notes → review code and logs → search and organize files → build docs or slides Apache 2.0. no rate limits, and nothing leaves the machine. 𝗻𝗽𝗺 𝗶 -𝗴 @𝗺𝗮𝗴𝗻𝗶𝘁𝘂𝗱𝗲𝗱𝗲𝘃/𝗰𝗹𝗶 the repo is here: (don't forget to star 🌟) i wrote the full breakdown of why picking the configuration is the hard part. the article is quoted below.

Akshay 🚀

55,693 просмотров • 18 дней назад

An agent is three things: a harness, a model, and context. If you're serious about owning your intelligence, you probably want to own all three. LangChain founder Harrison Chase joined us at our Sequoia Capital Own Your Intelligence to talk about the piece that often gets the least attention: the harness. He offers a clear heuristic for when to build your own. The more out of distribution you are from what the models were trained on, the more you'll want to customize. And good technical content on how to actually measure performance with evals and langsmith. 00:00 Introduction 00:58 The three parts of an agent: harness, model, context 02:12 What a harness actually does 03:25 Customizing the core loop with middleware 04:41 Sandboxes, file systems, sub-agents, summarization 05:47 Cognitive architectures — and when you still need them 07:03 Build your own harness or use off the shelf? 08:24 In-distribution vs. out-of-distribution: the file-editing example 09:39 Why evals define what "good" means in an organization 11:04 Harbor: what an eval task actually looks like 12:11 Comparing harnesses and models on accuracy, latency, and cost 13:20 Why observability is underrated — it's usually the context 14:34 The data flywheel: traces → curation → experiments 15:42 Getting feedback through UX design and online evaluators 16:51 Demo: LangSmith Engine 19:23 Q&A: Running Engine on Engine, and "codex-ification" 20:44 Q&A: Will harnesses converge or diverge?

Sonya Huang 🐥

77,519 просмотров • 1 месяц назад