• bitcoinBitcoin(BTC)$64,784.00-0.20%
  • ethereumEthereum(ETH)$1,916.460.00%
  • tetherTether(USDT)$1.000.00%
  • binancecoinBNB(BNB)$602.781.70%
  • usd-coinUSDC(USDC)$1.000.00%
  • rippleXRP(XRP)$1.040.70%
  • solanaSolana(SOL)$76.262.30%
  • tronTRON(TRX)$0.3296930.70%
  • Figure HelocFigure Heloc(FIGR_HELOC)$1.00-2.70%
  • HyperliquidHyperliquid(HYPE)$54.770.60%
  • dogecoinDogecoin(DOGE)$0.070095-0.10%
  • USDSUSDS(USDS)$1.000.00%
  • RainRain(RAIN)$0.012623-0.60%
  • leo-tokenLEO Token(LEO)$9.750.40%
  • zcashZcash(ZEC)$511.850.50%
  • cardanoCardano(ADA)$0.198718-1.10%
  • moneroMonero(XMR)$380.410.00%
  • whitebitWhiteBIT Coin(WBT)$56.03-0.30%
  • chainlinkChainlink(LINK)$8.330.90%
  • stellarStellar(XLM)$0.1631620.50%
  • daiDai(DAI)$1.000.00%
  • bitcoin-cashBitcoin Cash(BCH)$214.93-0.40%
  • USD1USD1(USD1)$1.00-0.10%
  • Ethena USDeEthena USDe(USDE)$1.000.00%
  • CantonCanton(CC)$0.0987678.90%
  • the-open-networkGram (prev. Toncoin)(GRAM)$1.34-0.20%
  • litecoinLitecoin(LTC)$46.131.20%
  • Global DollarGlobal Dollar(USDG)$1.000.00%
  • hedera-hashgraphHedera(HBAR)$0.0693821.90%
  • Circle USYCCircle USYC(USYC)$1.130.00%
  • suiSui(SUI)$0.691.50%
  • paypal-usdPayPal USD(PYUSD)$1.000.00%
  • avalanche-2Avalanche(AVAX)$6.48-0.60%
  • BlackRock USD Institutional Digital Liquidity FundBlackRock USD Institutional Digital Liquidity Fund(BUIDL)$1.000.00%
  • shiba-inuShiba Inu(SHIB)$0.000005-0.50%
  • tether-goldTether Gold(XAUT)$4,335.170.10%
  • uniswapUniswap(UNI)$3.96-1.40%
  • crypto-com-chainCronos(CRO)$0.049032-1.30%
  • Ondo US Dollar YieldOndo US Dollar Yield(USDY)$1.140.20%
  • nearNEAR Protocol(NEAR)$1.621.90%
  • BittensorBittensor(TAO)$205.875.00%
  • okbOKB(OKB)$93.510.90%
  • pax-goldPAX Gold(PAXG)$4,351.220.20%
  • OndoOndo(ONDO)$0.347384-0.90%
  • World Liberty FinancialWorld Liberty Financial(WLFI)$0.0518930.70%
  • HTX DAOHTX DAO(HTX)$0.0000020.70%
  • AsterAster(ASTER)$0.600.00%
  • Ripple USDRipple USD(RLUSD)$1.000.00%
  • usddUSDD(USDD)$1.000.00%
  • MemeCoreMemeCore(M)$1.10-1.30%
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

NVIDIA AI Releases NOOA: An Object-Oriented Python Framework That Turns an AI Agent Into a Single Python Class

August 7, 2026
in AI & Technology
Reading Time: 18 mins read
A A
NVIDIA AI Releases NOOA: An Object-Oriented Python Framework That Turns an AI Agent Into a Single Python Class
ShareShareShareShareShare

NVIDIA Labs has open-sourced NOOA (NVIDIA Object-Oriented Agents), a model-agnostic Python framework for building AI agents. Agent development today is split across prompt templates, tool schemas, callback code, and workflow graphs. NOOA collapses all of it into one Python class. Methods are the actions the model can take. Fields are agent state. Docstrings are prompts. Type annotations are contracts the runtime enforces. A method whose body is ... is completed at runtime by an LLM-driven loop, while a method with a normal body stays deterministic Python. Developers and models therefore share one interface, so agent behavior can be tested, traced, refactored, and version-controlled like ordinary software. NVIDIA reports 82.2% on SWE-bench Verified, 86.8% on CyberGym L1, and 85.1% mean RHAE on ARC-AGI-3 — at roughly half the tokens of the open harnesses it was compared against.

Is it deployable?

Yes, but only inside OS-level isolation. NOOA is Apache 2.0, installs with pip install nooa (v0.0.8, released July 30, 2026), and requires Python 3.12–3.13. PyPI classifies it as alpha, and NVIDIA describes it as a research preview. Agents can execute LLM-generated code, and NVIDIA states directly that its AST checks and module deny-lists are defense-in-depth guardrails, not a containment boundary. The containment boundary is a container, a VM, or NVIDIA OpenShell. Models are pluggable through LiteLLM, so hosted APIs, Ollama, and vLLM endpoints all work.

YOU MAY ALSO LIKE

IMDb Sentiment Analysis with DistilBERT LoRA, TF-IDF Baselines, Calibration, Interpretability, Robustness Testing, and Semi-Supervised Learning

Firebird Takes Its AI Factory Platform Global With a 2-Gigawatt Pipeline – Unite.AI

  • Company level: AI-native startups and mid-market platform teams building internal agents. Enterprise AI platform and applied-research groups running evaluations or pilots. Regulated production workloads should wait for a stable release.
  • Industries: developer tooling, cybersecurity, cloud and DevOps, data analytics, financial services operations, customer support.
  • Applications: repository issue triage and patching, terminal and infrastructure automation, vulnerability validation pipelines, large-batch classification and extraction over in-memory data, typed multi-agent orchestration.

An agent is a Python object

NVIDIA Labs released NOOA (NVIDIA Object-Oriented Agents), a model-agnostic Python framework for building agents. Traditional agent development splits source across prompt templates, tool schemas, callbacks, and workflow graphs. NOOA collapses that into one class.

Methods are the actions the model can take. Fields are state. Docstrings are prompts. Type annotations are contracts enforced by the runtime. A method whose body is ... becomes an agentic method, completed at runtime by an LLM-driven loop; a method with a normal body stays deterministic Python the model can call as a tool.

Two strategies ship. PredictStrategy is a single typed LLM call with a local retry loop on validation failure. CodeActStrategy runs an iterative Python REPL where the model calls execute_python(...) until it submits return_result(...), which is validated against the return annotation.

Six capabilities on one surface

The research team identifies six model-facing ideas it claims to be the first to combine: typed input/output, pass by reference over live objects, code as action, programmable loop engineering, explicit object state, and model-callable harness APIs. NVIDIA scored fourteen frameworks and harnesses—LangGraph, Google ADK, PydanticAI, smolagents, Claude Agent SDK, OpenAI Codex, OpenHands, and others—against the same axes, and reports partial coverage everywhere else.

Pass by reference is the load-bearing one. Arguments arrive as live Python objects; the model sees only a bounded preview with the concrete type, true length, and a head/tail sample. A hundred-element list renders in about thirty tokens while the full variable stays in the REPL. Context is split into a cacheable static prefix, an append-only typed event history, and dynamic blocks at the tail, which preserves KV-cache reuse across turns.

An optional memory subsystem attaches to an unmodified agent. Seven model-callable tools write and recall records ranked by ACT-R activation, all in one human-inspectable SQLite file.

Performance

Capability tests ran 88 tests five times across ten models: 4,309 of 4,400 records passed (97.9%). A six-family stress subset covering batching, error recovery, and decomposition passed 84.7%, where the gap between small and frontier models widens from 3.2 to 23 points.

End-to-end, a benchmark-agnostic 253-line agent reaches 82.2% on SWE-bench Verified with GPT-5.5 at xhigh effort, against 78.6% for OpenCode and 78.2% for PI, and 79.8% with Opus 4.6. On Terminal-Bench 2.0 it reaches 73.0% at high effort versus 60.7% and 68.5%, though PI leads at xhigh with 75.3%. On CyberGym L1 it solves 86.8% with network access blocked, the top open-source result reported. On ARC-AGI-3, one agent with a one-page world-model skill reaches 50.2% mean RHAE with GPT-5.5 and 85.1% with GPT-5.6-sol, under $20 per game.

Efficiency is the more interesting result: 82.2% at roughly 1.1M tokens and ~28 model calls per task, against 2.2M tokens and 66 calls for PI at 78.2%. Trace analysis also credits validated termination—OpenCode stops when the model replies without a tool call, while NOOA requires a typed TaskResult carrying evidence and a verification command.

Key Takeaways

  • An agent is one Python class—methods are actions, fields are state, docstrings are prompts, annotations are enforced contracts.
  • A ... method body becomes an LLM loop; a real body stays deterministic Python the model can call.
  • Pass by reference keeps large data live in the REPL, so no context compaction was needed on SWE-bench.
  • 82.2% SWE-bench Verified and 86.8% CyberGym L1 at roughly half the tokens of the compared open harnesses.
  • Apache 2.0 and pip-installable, but alpha—execute generated code only inside OS-level isolation.

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

Need to partner with us for promoting your GitHub Repo OR Hugging Face Page OR Product Release OR Webinar etc.? Connect with us


Asif Razzaq is the CEO of Marktechpost Media Inc.. As a visionary entrepreneur and engineer, Asif is committed to harnessing the potential of Artificial Intelligence for social good. His most recent endeavor is the launch of an Artificial Intelligence Media Platform, Marktechpost, which stands out for its in-depth coverage of machine learning and deep learning news that is both technically sound and easily understandable by a wide audience. The platform boasts of over 2 million monthly views, illustrating its popularity among audiences.

Credit: Source link

ShareTweetSendSharePin

Related Posts

IMDb Sentiment Analysis with DistilBERT LoRA, TF-IDF Baselines, Calibration, Interpretability, Robustness Testing, and Semi-Supervised Learning
AI & Technology

IMDb Sentiment Analysis with DistilBERT LoRA, TF-IDF Baselines, Calibration, Interpretability, Robustness Testing, and Semi-Supervised Learning

August 9, 2026
Firebird Takes Its AI Factory Platform Global With a 2-Gigawatt Pipeline – Unite.AI
AI & Technology

Firebird Takes Its AI Factory Platform Global With a 2-Gigawatt Pipeline – Unite.AI

August 8, 2026
Meet Shepherd: An Open-Source Python Substrate That Lets Meta-Agents Fork, Replay, and Revert Any Agent Run
AI & Technology

Meet Shepherd: An Open-Source Python Substrate That Lets Meta-Agents Fork, Replay, and Revert Any Agent Run

August 8, 2026
OpenAI Acquires NextSlide, the AI Presentation Startup – Unite.AI
AI & Technology

OpenAI Acquires NextSlide, the AI Presentation Startup – Unite.AI

August 8, 2026
Next Post
Airbnb CEO Brian Chesky says AI is super-charging company after he ‘underestimated’ tech

Airbnb CEO Brian Chesky says AI is super-charging company after he 'underestimated' tech

Leave a Reply Cancel reply

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

Search

No Result
View All Result
Supernatural’s Head Of Fitness On Rebooting The VR Exercise App After Leaving Meta

Supernatural’s Head Of Fitness On Rebooting The VR Exercise App After Leaving Meta

August 8, 2026
Fans react to Trump calling FIFA before Folarin Balogun red card suspension reversal

Fans react to Trump calling FIFA before Folarin Balogun red card suspension reversal

August 3, 2026
Texas Governor Orders Audit Of New Data Centers After Realizing Over 400 Gigawatts Of Power Is A Lot

Texas Governor Orders Audit Of New Data Centers After Realizing Over 400 Gigawatts Of Power Is A Lot

August 4, 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!