• bitcoinBitcoin(BTC)$70,692.00-1.76%
  • ethereumEthereum(ETH)$2,076.37-2.79%
  • tetherTether(USDT)$1.000.00%
  • binancecoinBNB(BNB)$653.89-1.22%
  • rippleXRP(XRP)$1.39-1.21%
  • usd-coinUSDC(USDC)$1.000.00%
  • solanaSolana(SOL)$87.03-3.17%
  • tronTRON(TRX)$0.2977552.53%
  • Figure HelocFigure Heloc(FIGR_HELOC)$1.01-0.16%
  • dogecoinDogecoin(DOGE)$0.095098-2.43%
  • whitebitWhiteBIT Coin(WBT)$55.27-2.25%
  • USDSUSDS(USDS)$1.000.01%
  • cardanoCardano(ADA)$0.260722-3.97%
  • bitcoin-cashBitcoin Cash(BCH)$462.32-0.59%
  • HyperliquidHyperliquid(HYPE)$38.224.73%
  • leo-tokenLEO Token(LEO)$9.070.01%
  • moneroMonero(XMR)$354.77-0.32%
  • chainlinkChainlink(LINK)$9.04-2.60%
  • Ethena USDeEthena USDe(USDE)$1.00-0.02%
  • CantonCanton(CC)$0.150820-0.07%
  • stellarStellar(XLM)$0.1649170.44%
  • USD1USD1(USD1)$1.00-0.02%
  • daiDai(DAI)$1.000.00%
  • RainRain(RAIN)$0.008993-0.10%
  • litecoinLitecoin(LTC)$54.65-2.13%
  • avalanche-2Avalanche(AVAX)$9.60-2.95%
  • paypal-usdPayPal USD(PYUSD)$1.00-0.02%
  • hedera-hashgraphHedera(HBAR)$0.092143-5.08%
  • suiSui(SUI)$0.99-1.54%
  • shiba-inuShiba Inu(SHIB)$0.000006-1.72%
  • zcashZcash(ZEC)$209.60-1.95%
  • the-open-networkToncoin(TON)$1.30-0.99%
  • crypto-com-chainCronos(CRO)$0.0773350.04%
  • World Liberty FinancialWorld Liberty Financial(WLFI)$0.104550-1.00%
  • tether-goldTether Gold(XAUT)$4,993.25-0.68%
  • MemeCoreMemeCore(M)$1.543.11%
  • pax-goldPAX Gold(PAXG)$5,025.52-0.67%
  • mantleMantle(MNT)$0.765.62%
  • uniswapUniswap(UNI)$3.93-4.08%
  • polkadotPolkadot(DOT)$1.43-5.09%
  • Circle USYCCircle USYC(USYC)$1.120.00%
  • BittensorBittensor(TAO)$239.921.24%
  • okbOKB(OKB)$96.082.74%
  • BlackRock USD Institutional Digital Liquidity FundBlackRock USD Institutional Digital Liquidity Fund(BUIDL)$1.000.00%
  • Pi NetworkPi Network(PI)$0.205571-12.49%
  • Global DollarGlobal Dollar(USDG)$1.00-0.02%
  • Falcon USDFalcon USD(USDF)$1.00-0.03%
  • AsterAster(ASTER)$0.710.23%
  • nearNEAR Protocol(NEAR)$1.31-4.41%
  • aaveAave(AAVE)$110.62-3.45%
TradePoint.io
  • Main
  • AI & Technology
  • Stock Charts
  • Market & News
  • Business
  • Finance Tips
  • Trade Tube
  • Blog
  • Shop
No Result
View All Result
TradePoint.io
No Result
View All Result

Stanford Researchers Release OpenJarvis: A Local-First Framework for Building On-Device Personal AI Agents with Tools, Memory, and Learning

March 12, 2026
in AI & Technology
Reading Time: 6 mins read
A A
Stanford Researchers Release OpenJarvis: A Local-First Framework for Building On-Device Personal AI Agents with Tools, Memory, and Learning
ShareShareShareShareShare

Stanford researchers have introduced OpenJarvis, an open-source framework for building personal AI agents that run entirely on-device. The project comes from Stanford’s Scaling Intelligence Lab and is presented as both a research platform and deployment-ready infrastructure for local-first AI systems. Its focus is not only model execution, but also the broader software stack required to make on-device agents usable, measurable, and adaptable over time.

Why OpenJarvis?

According to the Stanford research team, most current personal AI projects still keep the local component relatively thin while routing core reasoning through external cloud APIs. That design introduces latency, recurring cost, and data exposure concerns, especially for assistants/agents that operate over personal files, messages, and persistent user context. OpenJarvis is designed to shift that balance by making local execution the default and cloud usage optional.

YOU MAY ALSO LIKE

Digg shuts down for a ‘hard reset’ because it was flooded with bots

Ball x Pit on mobile, Piece by Piece x2 and other new indie games worth checking out

The research team ties this release to its earlier Intelligence Per Watt research. In that work, they report that local language models and local accelerators can accurately serve 88.7% of single-turn chat and reasoning queries at interactive latencies, while intelligence efficiency improved 5.3× from 2023 to 2025. OpenJarvis is positioned as the software layer that follows from that result: if models and consumer hardware are becoming practical for more local workloads, then developers need a standard stack for building and evaluating those systems.

https://scalingintelligence.stanford.edu/blogs/openjarvis/

The Five-Primitives Architecture

At the architectural level, OpenJarvis is organized around five primitives: Intelligence, Engine, Agents, Tools & Memory, and Learning. The research team describes these as composable abstractions that can be benchmarked, substituted, and optimized independently or used together as an integrated system. This matters because local AI projects often mix inference, orchestration, tools, retrieval, and adaptation logic into a single hard-to-reproduce application. OpenJarvis instead tries to give each layer a more explicit role.

Intelligence: The Model Layer

The Intelligence primitive is the model layer. It sits above a changing set of local model families and provides a unified model catalog so developers do not have to manually track parameter counts, hardware fit, or memory tradeoffs for every release. The goal is to make model choice easier to study separately from other parts of the system, such as the inference backend or agent logic.

Engine: The Inference Runtime

The Engine primitive is the inference runtime. It is a common interface over backends such as Ollama, vLLM, SGLang, llama.cpp, and cloud APIs. The engine layer is framed more broadly as hardware-aware execution, where commands such as jarvis init detect available hardware and recommend a suitable engine and model configuration, while jarvis doctor helps maintain that setup. For developers, this is one of the more practical parts of the design: the framework does not assume a single runtime, but treats inference as a pluggable layer.

Agents: The Behavior Layer

The Agents primitive is the behavior layer. Stanford describes it as the part that turns model capability into structured action under real device constraints such as bounded context windows, limited working memory, and efficiency limits. Rather than relying on one general-purpose agent, OpenJarvis supports composable roles. The Stanford article specifically mentions roles such as the Orchestrator, which breaks complex tasks into subtasks, and the Operative, which is intended as a lightweight executor for recurring personal workflows. The docs also describe the agent harness as handling the system prompt, tools, context, retry logic, and exit logic.

Tools & Memory: Grounding the Agent

The Tools & Memory primitive is the grounding layer. This primitive includes support for MCP (Model Context Protocol) for standardized tool use, Google A2A for agent-to-agent communication, and semantic indexing for local retrieval over notes, documents, and papers. It also support for messaging platforms, webchat, and webhooks. It also covers a narrower tools view that includes web search, calculator access, file I/O, code interpretation, retrieval, and external MCP servers. OpenJarvis is not just a local chat interface; it is intended to connect local models to tools and persistent personal context while keeping storage and control local by default.

Learning: Closed-Loop Improvement

The fifth primitive, Learning, is what gives the framework a closed-loop improvement path. Stanford researchers describe it as a layer that uses local interaction traces to synthesize training data, refine agent behavior, and improve model selection over time. OpenJarvis supports optimization across four layers of the stack: model weights, LM prompts, agentic logic, and the inference engine. Examples listed by the research team include SFT, GRPO, DPO, prompt optimization with DSPy, agent optimization with GEPA, and engine-level tuning such as quantization selection and batch scheduling.

Efficiency as a First-Class Metric

A major technical point in OpenJarvis is its emphasis on efficiency-aware evaluation. The framework treats energy, FLOPs, latency, and dollar cost as first-class constraints alongside task quality. It also emphasizes on a hardware-agnostic telemetry system for profiling energy on NVIDIA GPUs via NVML, AMD GPUs, and Apple Silicon via powermetrics, with 50 ms sampling intervals. The jarvis bench command is meant to standardize benchmarking for latency, throughput, and energy per query. This is important because local deployment is not only about whether a model can answer a question, but whether it can do so within real limits on power, memory, and response time.

Developer Interfaces and Deployment Options

From a developer perspective, OpenJarvis exposes several entry points. The official docs show a browser app, a desktop app, a Python SDK, and a CLI. The browser-based interface can be launched with ./scripts/quickstart.sh, which installs dependencies, starts Ollama and a local model, launches the backend and frontend, and opens the local UI. The desktop app is available for macOS, Windows, and Linux, with the backend still running on the user’s machine. The Python SDK exposes a Jarvis() object and methods such as ask() and ask_full(), while the CLI includes commands like jarvis ask, jarvis serve, jarvis memory index, and jarvis memory search.

The docs also state that all core functionality works without a network connection, while cloud APIs are optional. For dev teams building local applications, another practical feature is jarvis serve, which starts a FastAPI server with SSE streaming and is described as a drop-in replacement for OpenAI clients. That lowers the migration cost for developers who want to prototype against an API-shaped interface while still keeping inference local.


Check out Repo, Docs and Technical details. Also, feel free to follow us on Twitter and don’t forget to join our 120k+ ML SubReddit and Subscribe to our Newsletter. Wait! are you on telegram? now you can join us on telegram as well.

The post Stanford Researchers Release OpenJarvis: A Local-First Framework for Building On-Device Personal AI Agents with Tools, Memory, and Learning appeared first on MarkTechPost.

Credit: Source link

ShareTweetSendSharePin

Related Posts

Digg shuts down for a ‘hard reset’ because it was flooded with bots
AI & Technology

Digg shuts down for a ‘hard reset’ because it was flooded with bots

March 14, 2026
Ball x Pit on mobile, Piece by Piece x2 and other new indie games worth checking out
AI & Technology

Ball x Pit on mobile, Piece by Piece x2 and other new indie games worth checking out

March 14, 2026
OpenAI reportedly plans to add Sora video generation to ChatGPT
AI & Technology

OpenAI reportedly plans to add Sora video generation to ChatGPT

March 13, 2026
Meta is bringing more international news to its AI
AI & Technology

Meta is bringing more international news to its AI

March 13, 2026
Next Post
Trump praises Republicans for helping pass the One Big Beautiful Bill

Trump praises Republicans for helping pass the One Big Beautiful Bill

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Search

No Result
View All Result
This web app lets you ‘channel surf’ YouTube like a ’90s kid watching cable

This web app lets you ‘channel surf’ YouTube like a ’90s kid watching cable

March 12, 2026
Plaintiff begins testimony in social media addiction trial

Plaintiff begins testimony in social media addiction trial

March 10, 2026
Treasury Secretary Bessent responds to Trump’s State of the Union address

Treasury Secretary Bessent responds to Trump’s State of the Union address

March 12, 2026

About

Learn more

Our Services

Legal

Privacy Policy

Terms of Use

Bloggers

Learn more

Article Links

Contact

Advertise

Ask us anything

©2020- TradePoint.io - All rights reserved!

Tradepoint.io, being just a publishing and technology platform, is not a registered broker-dealer or investment adviser. So we do not provide investment advice. Rather, brokerage services are provided to clients of Tradepoint.io by independent SEC-registered broker-dealers and members of FINRA/SIPC. Every form of investing carries some risk and past performance is not a guarantee of future results. “Tradepoint.io“, “Instant Investing” and “My Trading Tools” are registered trademarks of Apperbuild, LLC.

This website is operated by Apperbuild, LLC. We have no link to any brokerage firm and we do not provide investment advice. Every information and resource we provide is solely for the education of our readers. © 2020 Apperbuild, LLC. All rights reserved.

No Result
View All Result
  • Main
  • AI & Technology
  • Stock Charts
  • Market & News
  • Business
  • Finance Tips
  • Trade Tube
  • Blog
  • Shop

© 2023 - TradePoint.io - All Rights Reserved!