• bitcoinBitcoin(BTC)$64,714.002.31%
  • ethereumEthereum(ETH)$1,920.032.28%
  • tetherTether(USDT)$1.000.02%
  • binancecoinBNB(BNB)$591.944.75%
  • usd-coinUSDC(USDC)$1.00-0.01%
  • rippleXRP(XRP)$1.091.88%
  • solanaSolana(SOL)$74.442.76%
  • tronTRON(TRX)$0.3286891.04%
  • Figure HelocFigure Heloc(FIGR_HELOC)$1.032.95%
  • HyperliquidHyperliquid(HYPE)$55.093.37%
  • dogecoinDogecoin(DOGE)$0.0705371.97%
  • USDSUSDS(USDS)$1.000.00%
  • RainRain(RAIN)$0.013359-1.53%
  • leo-tokenLEO Token(LEO)$9.770.03%
  • zcashZcash(ZEC)$472.023.11%
  • moneroMonero(XMR)$364.884.09%
  • whitebitWhiteBIT Coin(WBT)$56.511.97%
  • cardanoCardano(ADA)$0.1705226.00%
  • chainlinkChainlink(LINK)$8.453.34%
  • stellarStellar(XLM)$0.1720461.81%
  • CantonCanton(CC)$0.1220251.54%
  • daiDai(DAI)$1.000.00%
  • bitcoin-cashBitcoin Cash(BCH)$217.386.00%
  • USD1USD1(USD1)$1.000.02%
  • the-open-networkGram (prev. Toncoin)(GRAM)$1.422.63%
  • Ethena USDeEthena USDe(USDE)$1.000.01%
  • litecoinLitecoin(LTC)$45.632.77%
  • Global DollarGlobal Dollar(USDG)$1.00-0.19%
  • Circle USYCCircle USYC(USYC)$1.13-0.13%
  • hedera-hashgraphHedera(HBAR)$0.0683742.01%
  • suiSui(SUI)$0.692.39%
  • avalanche-2Avalanche(AVAX)$6.451.93%
  • uniswapUniswap(UNI)$4.3913.39%
  • shiba-inuShiba Inu(SHIB)$0.0000051.35%
  • paypal-usdPayPal USD(PYUSD)$1.000.00%
  • BlackRock USD Institutional Digital Liquidity FundBlackRock USD Institutional Digital Liquidity Fund(BUIDL)$1.000.00%
  • crypto-com-chainCronos(CRO)$0.0549110.50%
  • tether-goldTether Gold(XAUT)$4,091.790.96%
  • nearNEAR Protocol(NEAR)$1.696.68%
  • Ondo US Dollar YieldOndo US Dollar Yield(USDY)$1.140.00%
  • OndoOndo(ONDO)$0.4173545.93%
  • BittensorBittensor(TAO)$192.973.10%
  • pax-goldPAX Gold(PAXG)$4,097.140.96%
  • okbOKB(OKB)$85.601.57%
  • World Liberty FinancialWorld Liberty Financial(WLFI)$0.054859-0.39%
  • AsterAster(ASTER)$0.612.27%
  • HTX DAOHTX DAO(HTX)$0.0000021.11%
  • usddUSDD(USDD)$1.000.03%
  • Ripple USDRipple USD(RLUSD)$1.000.00%
  • aaveAave(AAVE)$98.763.77%
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

Kimi AI and kvcache-ai Open Sources ‘AgentENV’: A Distributed System that Powers Agentic Reinforcement Learning (RL) Training for Kimi K3

July 27, 2026
in AI & Technology
Reading Time: 42 mins read
A A
Kimi AI and kvcache-ai Open Sources ‘AgentENV’: A Distributed System that Powers Agentic Reinforcement Learning (RL) Training for Kimi K3
ShareShareShareShareShare

Moonshot AI’s Kimi team and kvcache-ai have open-sourced AgentENV (AENV), a distributed platform for running agent environments at scale. AgentENV powers agentic reinforcement learning (RL) training for Kimi K3, Moonshot’s 2.8-trillion-parameter Mixture-of-Experts model. The code ships under an MIT license.

Why Environment Infra Holds Back Agentic RL

Agentic RL does not just sample text. It requires the model to act inside a real computer. Every rollout needs an isolated Linux environment with a filesystem, a network stack, and live processes.

YOU MAY ALSO LIKE

Big Tech Makes the Case for Open-Weight AI | Bloomberg Tech 7/24/2026

Scribe Bets on a New Era of Gene Editing

That requirement creates a hard trade-off. Containers start fast but share the host kernel, which weakens isolation for model-generated code. Full virtual machines isolate properly but boot slowly and hold memory while idle.

AgentENV targets exactly that gap. It runs Firecracker microVMs, then makes idle, restart, and branching cheap enough to run at training scale.

Inside AgentENV’s Firecracker Architecture

Each sandbox is a Firecracker microVM with its own Linux kernel, filesystem, and network namespace. Requests hit an Axum HTTP API, which forwards to an orchestrator that manages the sandbox lifecycle.

Storage is where the design gets interesting. The rootfs is served through a ublk userspace block device backed by overlaybd layered images. Read-only base layers are shared across sandboxes, and each sandbox writes into its own upper layer.

Inside every guest, a daemon called envd handles command execution, file operations, and health reporting on port 49983. A reverse proxy routes HTTP and WebSocket traffic from clients to services running inside the VM.

The project also lists two density mechanisms. The host page cache is shared across storage and memory-snapshot data. Memory ballooning returns reclaimable guest memory to the host, which sustains overcommit as environments diverge over time.

Snapshot, pause, resume, fork

These four features are the reason the project exists. AgentENV snapshots memory and filesystem changes incrementally rather than writing a full image each time.

The reported figures are as follows. Snapshot-backed environments boot or resume in under 50 ms and pause in under 100 ms. Incremental snapshot capture completes in under 100 ms, even under heavy disk modification.

Fork is the feature most specific to RL. A running sandbox can clone into up to 16 independent child sandboxes on the same node. The source pauses briefly during capture, then resumes. Every child inherits the source filesystem, memory, and resource configuration.

The practical effect is that expensive setup runs once. A team can install dependencies, clone a repository, and reach a task state. That exact state then branches into parallel rollouts. Snapshots persist to S3-compatible object storage or a shared distributed filesystem.

One default is worth noting. Every sandbox carries a TTL, and expiry triggers a pause, not a delete. Deletion requires passing autoPause: false on the create API.

On-demand loading and the snapshot repository

Images load on demand through overlaybd. Local disk acts as a bounded cache that retains hot data and evicts cold data.

This is what makes the fleet-level story work. Nodes do not need to pre-warm every image or hold a complete copy of every snapshot. The addressable image set can therefore exceed local disk capacity while startup stays fast cluster-wide.

Snapshot state is organized in three layers. A builder staging workspace holds artifacts during a build. A committed snapshot repository is the durable source of truth. A node-local runtime cache holds launch-time derived configs.

Two repository backends are supported: posix_fs (default) and oss. The oss path runs through a shared S3-compatible client, so an explicit region is required.

An optional peer-to-peer transport based on iroh can advertise committed artifacts to peer nodes. It is disabled by default. The documentation is explicit that P2P does not change the committed snapshot model. For shared storage, the docs ask for at least 1 Gbps and strongly recommend 10 Gbps or faster.

E2B compatibility is the adoption lever

AgentENV exposes an E2B-compatible HTTP API. Point E2B_API_URL at your server and the official E2B Python or TypeScript SDK works without code changes.

This is a deliberate distribution choice. Teams already running agents on E2B can self-host the runtime without rewriting their agent code. A native aenv CLI is also provided, and the docs recommend it for AgentENV-specific workflows.

Deployment paths

Prerequisites are Linux kernel 6.8+ and /dev/kvm access; the install script additionally requires Ubuntu 24.04. The aenv CLI supports Linux and macOS on x86_64 and arm64. The server itself is Linux-only, because it needs KVM.

Five paths are documented:

  • An install script that runs the server as a systemd service
  • A Docker image published at ghcr.io/kvcache-ai/aenv-server
  • A Docker Compose stack that simulates a multi-node cluster
  • Kubernetes manifests with a gateway, scheduler, and node DaemonSet
  • A build-from-source route using the Rust toolchain

Multi-node deployments add a gateway on :8080 and a scheduler on :9090.

Key Takeaways

  • Deployment covers install script, Docker, Docker Compose, and Kubernetes; the multi-node control plane is documented as a prototype.
  • AgentENV runs each agent environment as a Firecracker microVM, not a container, so isolation is kernel-level.
  • The project reports boot or resume under 50 ms, and pause under 100 ms, from snapshots.
  • A running sandbox can fork into up to 16 independent children on the same node.
  • The HTTP API is E2B-compatible, so existing E2B Python and TypeScript SDK code runs unchanged.

Check out the GitHub repository and documentation. All credit for this research goes to the researchers of this project.


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

Big Tech Makes the Case for Open-Weight AI | Bloomberg Tech 7/24/2026
AI & Technology

Big Tech Makes the Case for Open-Weight AI | Bloomberg Tech 7/24/2026

July 30, 2026
Scribe Bets on a New Era of Gene Editing
AI & Technology

Scribe Bets on a New Era of Gene Editing

July 30, 2026
‘The Real Debate Isn’t Open-Weight AI, It’s Chinese AI’: Krach Institute’s Giuda
AI & Technology

‘The Real Debate Isn’t Open-Weight AI, It’s Chinese AI’: Krach Institute’s Giuda

July 30, 2026
SpaceX Is Betting Its Future on Starship
AI & Technology

SpaceX Is Betting Its Future on Starship

July 30, 2026
Next Post
Nvidia in talks to back 0B OpenAI data center

Nvidia in talks to back $500B OpenAI data center

Leave a Reply Cancel reply

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

Search

No Result
View All Result
L.A. Mayor Karen Bass gets booed over warehouse fire

L.A. Mayor Karen Bass gets booed over warehouse fire

July 28, 2026
Iran’s supreme leader vows revenge for father’s killing

Iran’s supreme leader vows revenge for father’s killing

July 27, 2026
Lin-Manuel Miranda on how immigrants make the U.S. great

Lin-Manuel Miranda on how immigrants make the U.S. great

July 28, 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!