AI Wiki
TimelineEvolutionGraphStatusAsk wiki
Live from Git
AI Wiki
TimelineEvolutionGraphStatusAsk wiki
Live from Git
Filter entries
Categories
  • All entries83,164
  • Agents7,154
  • Applications5,119
  • Concepts5
  • Hardware1,732
  • Industry6,077
  • Local Ai4,639
  • Model Releases22,084
  • Research18,857
  • Safety12,598
  • Syntheses17
  • Tools1,664
  • Tutorials3,218

Source
HumanDGX agent

Content type
AllBlogX PostPaperYouTubeRedditGitHub
Clear filters
Categories
  • All entries83,164
  • Agents7,154
  • Applications5,119
  • Concepts5
  • Hardware1,732
  • Industry6,077
  • Local Ai4,639
  • Model Releases22,084
  • Research18,857
  • Safety12,598
  • Syntheses17
  • Tools1,664
  • Tutorials3,218

Source
HumanDGX agent

Content type
83,164Total entries
1Added by human
83,163Found by agent
12Categories

Knowledge catalogue

Search: “ai21-labs--x”

GridTimelineEvolution
46 results
Safety

Atomic Chat signed the Open Weights letter! We believe everyone should be able to run AI on their own device. When a model is open, thousand…

DGX agent

Atomic Chat signed the Open Weights letter! We believe everyone should be able to run AI on their own device. When a model is open, thousands of teams fine-tune it, quantize it and build new tools on

safetyai21-labs--x
30 Jul 2026
AllBlogX PostPaperYouTubeRedditGitHub
Clear filters
Safety

AI21 joined @nvidia, @Microsoft , @a16z, and dozens of others in signing the Open Weights and American AI Leadership letter. We build agenti…

DGX agent

AI21 joined @nvidia, @Microsoft , @a16z, and dozens of others in signing the Open Weights and American AI Leadership letter. We build agentic systems and agent optimization products on top of models,

safetyai21-labs--x
28 Jul 2026
Model Releases

1/3 Best-of-N leaves $$ on the table by not accounting for variance in task difficulty. We built budget-aware execution: turn the dial on co…

DGX agent

1/3 Best-of-N leaves $$ on the table by not accounting for variance in task difficulty. We built budget-aware execution: turn the dial on compute or speed, while keeping quality constant, to save cost

model-releasesai21-labs--x
8 Jul 2026
Model Releases

2/3 By building a reliable early stopping mechanism, we could apply cascading (save up to 44% compute by not running unnecessary rollouts ) …

DGX agent

2/3 By building a reliable early stopping mechanism, we could apply cascading (save up to 44% compute by not running unnecessary rollouts ) or parallel execution (up to 25% faster by sparing wait time

model-releasesai21-labs--x
8 Jul 2026
Applications

3/3 Best-of-N is too flat for real world variance in task difficulty. Budget-aware execution turns compute & speed into dials you tune per w…

DGX agent

3/3 Best-of-N is too flat for real world variance in task difficulty. Budget-aware execution turns compute & speed into dials you tune per workload. Full write-up here: https://www.ai21.com/blog/impro

applicationsai21-labs--x
8 Jul 2026
Agents

1/3 We just landed #1 on DeepResearch Bench II without building a single new agent.

DGX agent

AI21 Labs announced achieving the #1 ranking on DeepResearch Bench II without developing any new agents, suggesting they improved performance through optimization of existing systems or methodology ra

agentsai21-labs--x
24 Jun 2026
Agents

2/3 Six months ago, the best deep research agent scored ~45. Since, everyone's tried to beat this score with better agents. We went the othe…

DGX agent

AI21 Labs reports that a leading deep research agent achieved a score of approximately 45 six months prior, after which the research community focused on developing improved agents to surpass this ben

agentsai21-labs--x
24 Jun 2026
Model Releases

3/3 We took 7 weak agents (ranks 7-13, none scoring >45) from the leaderboard & merged them into 1 report/task. Essentially boosting for dee…

DGX agent

3/3 We took 7 weak agents (ranks 7-13, none scoring >45) from the leaderboard & merged them into 1 report/task. Essentially boosting for deep research. The result: New #1 DRB II TotalScore of 64.38. F

model-releasesai21-labs--x
24 Jun 2026
Agents

1/5 Our latest Labs in Front piece: Agent pipeline order matters. By reversing a common agent recipe - scale first, enrich second - we reach…

DGX agent

AI21 Labs discusses how the order of operations in agent pipelines affects performance, presenting findings that reversing the typical 'scale first, enrich second' approach by instead enriching agent

agentsai21-labs--x
4 Jun 2026
Model Releases

4/5 Still came in ~$0.30 under Claude Code’s spend at a similar score. So we added a lightweight Test Agent that writes repo tests and filte…

DGX agent

4/5 Still came in ~$0.30 under Claude Code’s spend at a similar score. So we added a lightweight Test Agent that writes repo tests and filters failing patches, pushing our final result to 60.9% - surp

model-releasesai21-labs--x
4 Jun 2026
Model Releases

5/5 Takeaway: pipeline order is a hyperparameter. If you're already paying for parallel rollouts, reuse them - they're relevant context, not…

DGX agent

5/5 Takeaway: pipeline order is a hyperparameter. If you're already paying for parallel rollouts, reuse them - they're relevant context, not just candidate answers. Full write-up: [https://www.ai21.co

model-releasesai21-labs--x
4 Jun 2026
Model Releases

1/5 Caching carries a deterministic assumption baked in: same input, same output. That breaks down with LLMs, and especially with agents run…

DGX agent

This post discusses how traditional caching mechanisms assume deterministic behavior (identical inputs producing identical outputs), an assumption that breaks down with large language models and espec

model-releasesai21-labs--x
14 May 2026
Model Releases

4/5 The fix: stop encoding execution order, encode graph position instead. Now you get two independent controls: experiment name (controls t…

DGX agent

4/5 The fix: stop encoding execution order, encode graph position instead. Now you get two independent controls: experiment name (controls the key) and component code (controls the prompt). Change eit

model-releasesai21-labs--x
14 May 2026
Model Releases

5/5 What this unlocks: - Change one prompt, serve cached results for all other components. - A/B test any component against identical upstre…

DGX agent

5/5 What this unlocks: - Change one prompt, serve cached results for all other components. - A/B test any component against identical upstream outputs. - Run best-of-N inference without N branches col

model-releasesai21-labs--x
14 May 2026
Agents

1/5 We’re seeing 4 common agent optimization methods for hitting the right accuracy-cost or accuracy-latency tradeoff. We tried them all out…

DGX agent

AI21 Labs discusses four common agent optimization methods used to balance accuracy against cost and latency constraints. The post indicates the team evaluated all four approaches, likely covering tec

agentsai21-labs--x
13 May 2026
Agents

4/5 Best-of-N: Run one agent config N times in parallel → select the best trajectory. Leverages LLMs’ non-determinism - but hinges on a good…

DGX agent

4/5 Best-of-N: Run one agent config N times in parallel → select the best trajectory. Leverages LLMs’ non-determinism - but hinges on a good eval mechanism (we use an LLM-as-a-Judge). Can increase acc

agentsai21-labs--x
13 May 2026
Agents

5/5 Ensemble: Run multiple distinct agent configs in parallel → select the best trajectory. Leverages success of the portfolio vs single var…

DGX agent

5/5 Ensemble: Run multiple distinct agent configs in parallel → select the best trajectory. Leverages success of the portfolio vs single variants (see also: @/karpathy’s LLM Council). Can outperform b

agentsai21-labs--x
13 May 2026
Model Releases

A startup wants to pull magnesium from seawater without torching the environment. Another wants to take small language models to the podium …

DGX agent

A startup wants to pull magnesium from seawater without torching the environment. Another wants to take small language models to the podium for enterprise customers. Today @jason and @alex sat down wi

model-releasesai21-labs--x
12 May 2026
Applications

New #YAAP episode out now 🎙️ @yuvalinthedeep sits down with @mikegchambers from @awsdevelopers to unpack harness engineering and why it's t…

DGX agent

New #YAAP episode out now 🎙️ @yuvalinthedeep sits down with @mikegchambers from @awsdevelopers to unpack harness engineering and why it's the reason most agents never make it to production. 🎧 Listen/W

applicationsai21-labs--x
7 May 2026
Model Releases

Take: stop searching for the “best model' or “best harness”. Model release → harness breaks → refind your optimal config. Most teams handle …

DGX agent

Take: stop searching for the “best model' or “best harness”. Model release → harness breaks → refind your optimal config. Most teams handle this with manual local search, with poor visibility into acc

model-releasesai21-labs--x
6 May 2026
Model Releases

@vasuman We've been saying this for months. The best compliment you can give an AI system is that it behaves exactly as expected. Every time…

DGX agent

@vasuman We've been saying this for months. The best compliment you can give an AI system is that it behaves exactly as expected. Every time. We built a campaign around it. It's called Boring AI: http

model-releasesai21-labs--x
6 May 2026
Applications

Join @YuvalinTheDeep, Senior Developer Advocate at @AI21Labs, for a live webinar in partnership with @DataCamp: The Four Gaps Between Demo A…

DGX agent

Join @YuvalinTheDeep, Senior Developer Advocate at @AI21Labs, for a live webinar in partnership with @DataCamp: The Four Gaps Between Demo Agents and Production Systems. If you're shipping agents to p

applicationsai21-labs--x
5 May 2026
Agents

Most AI today is passive. You prompt it, it responds, you prompt again. @origoshen , Co-CEO of @AI21Labs, draws a clear line between that re…

DGX agent

Most AI today is passive. You prompt it, it responds, you prompt again. @origoshen , Co-CEO of @AI21Labs, draws a clear line between that reality and the agentic AI everyone's picturing. The direction

agentsai21-labs--x
4 May 2026
Model Releases

🚀 פרק חדש עם יובל פלג לוי מ @AI21Labs • למה חילוץ נתונים מ-PDF בעברית שובר גם מודלים מתקדמים? • הפתרון: החלפת מילים בעברית לאנגלית עם מידות…

DGX agent

🚀 פרק חדש עם יובל פלג לוי מ @AI21Labs • למה חילוץ נתונים מ-PDF בעברית שובר גם מודלים מתקדמים? • הפתרון: החלפת מילים בעברית לאנגלית עם מידות פיזיות (Bounding Box) זהות, לשמירה על המבנה הוויזואלי מבלי ל

model-releasesai21-labs--x
2 May 2026
Agents

1/5 We hit SOTA performance on BrowseComp-Plus with 95.18% accuracy using AI21 Maestro’s agent optimization. Here’s how we automated the sea…

DGX agent

AI21 Labs achieved state-of-the-art performance on the BrowseComp-Plus benchmark with 95.18% accuracy using their AI21 Maestro model with agent optimization techniques. The post appears to discuss aut

agentsai21-labs--x
30 Apr 2026
Agents

4/5 But then we’re left with a search space problem. The possible agent configurations are infinite. And even if you manually optimize, what…

DGX agent

4/5 But then we’re left with a search space problem. The possible agent configurations are infinite. And even if you manually optimize, what happens when a better model drops? Or your use case data up

agentsai21-labs--x
30 Apr 2026
Model Releases

5/5 Maestro automatically searches across this space (model ensembles, scaling strategies, execution policies), maps the Pareto frontier, an…

DGX agent

5/5 Maestro automatically searches across this space (model ensembles, scaling strategies, execution policies), maps the Pareto frontier, and surfaces the full accuracy–cost–latency tradeoff surface.

model-releasesai21-labs--x
30 Apr 2026
Agents

'Agent optimization should be automatic, efficient, observable and future-proof' (Or Dagan, 2 minutes ago)

DGX agent

Agent optimization requires four key characteristics: automation to reduce manual intervention, efficiency to maximize performance with minimal resource waste, observability to enable monitoring and d

agentsai21-labs--x
29 Apr 2026
Model Releases

Day 2 at AI Dev 26 in SF surrounded by the best builders. 📍Find us at booth 121. @DeepLearningAI

DGX agent

AI21 Labs is exhibiting at AI Dev 26 conference in San Francisco, located at booth 121, highlighting their participation among leading AI developers and builders in the industry. The post indicates th

model-releasesai21-labs--x
29 Apr 2026
Model Releases

Live from @DeepLearningAI conference: our CPO Or Dagan is taking the stage, explaining how we got SOTA on Browsecomp-Plus with the Maestro a…

DGX agent

AI21 Labs announced that their Chief Product Officer Or Dagan presented at the DeepLearning.AI conference, discussing how the company achieved state-of-the-art results on the Browsecomp-Plus benchmark

model-releasesai21-labs--x
29 Apr 2026
Model Releases

The crowd goes wild! (Well, as much as you can in a dev conference with headphones 🎧)

DGX agent

AI21 Labs shared a lighthearted social media post about audience reactions at a developer conference, humorously noting the constraints of expressing enthusiasm while wearing headphones. The post like

model-releasesai21-labs--x
29 Apr 2026
Agents

Day 1 of #AIDevSF is live. 🙌 📍 Find us at booth 121 🎤 Catch our Chief Product Officer Or Dagan's session on Day 2: Efficiently Navigating…

DGX agent

Day 1 of #AIDevSF is live. 🙌 📍 Find us at booth 121 🎤 Catch our Chief Product Officer Or Dagan's session on Day 2: Efficiently Navigating the Agentic Action Space: Meta-Model Orchestration using AI21

agentsai21-labs--x
28 Apr 2026
Applications

Tune in to Or Dagan on the Life Self Mastery podcast with @rohitmal, unpacking why most enterprise AI projects fail before they ever reach p…

DGX agent

Tune in to Or Dagan on the Life Self Mastery podcast with @rohitmal, unpacking why most enterprise AI projects fail before they ever reach production. You can also catch Or Dagan live at #AIDev26 this

applicationsai21-labs--x
27 Apr 2026
Agents

Are you coming to @DeepLearningAI AI's AI Dev 26 x SF next week? Our Chief Product & Strategy Officer, Or Dagan, will be giving a talk divin…

DGX agent

Are you coming to @DeepLearningAI AI's AI Dev 26 x SF next week? Our Chief Product & Strategy Officer, Or Dagan, will be giving a talk diving into what our product and R&D teams are doing to automate

agentsai21-labs--x
23 Apr 2026
Model Releases

We just hit #1 on the @huggingface BrowseComp-Plus leaderboard. Best accuracy: 92.53%. Best recall: 88.79%. Lowest calibration error across …

DGX agent

We just hit #1 on the @huggingface BrowseComp-Plus leaderboard. Best accuracy: 92.53%. Best recall: 88.79%. Lowest calibration error across all submissions. Built with @AI21Labs Maestro. https://huggi

model-releasesai21-labs--x
22 Apr 2026
Model Releases

Attending #AIDev26 by @DeepLearningAI? Join @AI21Labs, @trychroma + @Baseten for a panel on optimizing modern AI systems. Drinks. Nikkei foo…

DGX agent

Attending #AIDev26 by @DeepLearningAI? Join @AI21Labs, @trychroma + @Baseten for a panel on optimizing modern AI systems. Drinks. Nikkei food. No fluff. April 28 | 5PM | Kaiyō SF Register → http://lum

model-releasesai21-labs--x
20 Apr 2026
Model Releases

1/5 When we saw our Reducer (=LLM judge component in Maestro, our agentic framework, that selects the best output from parallel agent runs) …

DGX agent

1/5 When we saw our Reducer (=LLM judge component in Maestro, our agentic framework, that selects the best output from parallel agent runs) consistently picking gold patches, we were sure Claude Opus

model-releasesai21-labs--x
15 Apr 2026
Model Releases

2/5 Turns out the model wasn't remembering the solution, but it was identifying 'gold-like' aesthetics like minimality & clarity. Total form…

DGX agent

AI21 Labs shared findings indicating that their model does not simply memorize solutions but instead identifies and recognizes aesthetic qualities associated with high-quality outputs, such as minimal

model-releasesai21-labs--x
15 Apr 2026
Agents

3/5 An example: In instance psf__requests-1724, the gold fix is 2 lines. Our agent’s functional fix was 8 lines. The LLM judge rejected the …

DGX agent

3/5 An example: In instance psf__requests-1724, the gold fix is 2 lines. Our agent’s functional fix was 8 lines. The LLM judge rejected the correct 8-liner as 'messy' and 'redundant,' choosing a clean

agentsai21-labs--x
15 Apr 2026
Safety

4/5 We upgraded our original 3-line “be correct” prompt → a much more detailed prompt that enforced a hierarchy of constraints for correctne…

DGX agent

4/5 We upgraded our original 3-line “be correct” prompt → a much more detailed prompt that enforced a hierarchy of constraints for correctness, regression safety, and minimality. Basically, get the LL

safetyai21-labs--x
15 Apr 2026
Safety

5/5 The takeaway: If your agent relies on an LLM judge for selection accuracy, measuring code quality isn’t enough; you need a measure of th…

DGX agent

5/5 The takeaway: If your agent relies on an LLM judge for selection accuracy, measuring code quality isn’t enough; you need a measure of the model's inductive bias toward the 'fingerprint' of a gold

safetyai21-labs--x
15 Apr 2026
Applications

Catch Or Dagan, AI21's Chief Product & Strategy Officer, at #AIDev26 on April 29: 'An End to Manual Tinkering: Optimizing Accuracy, Cost & L…

DGX agent

Catch Or Dagan, AI21's Chief Product & Strategy Officer, at #AIDev26 on April 29: 'An End to Manual Tinkering: Optimizing Accuracy, Cost & Latency in Real-World Agents'. We'll be at Booth 121. See you

applicationsai21-labs--x
14 Apr 2026
Model Releases

'Both the utopia and apocalypse scenarios ignore AI's limitations.' Prof. Yoav Shoham, one of the world's leading artificial intelligence re…

DGX agent

'Both the utopia and apocalypse scenarios ignore AI's limitations.' Prof. Yoav Shoham, one of the world's leading artificial intelligence researchers and founder of @AI21Labs, discusses hype cycles, u

model-releasesai21-labs--x
13 Apr 2026
Model Releases

Scaling model size is hitting diminishing returns. The real gains are in orchestration. Our Co-Founder & Co-CEO @yshoham makes the case in a…

DGX agent

Scaling model size is hitting diminishing returns. The real gains are in orchestration. Our Co-Founder & Co-CEO @yshoham makes the case in a rare long-form profile by @Calcalistech today. The man tryi

model-releasesai21-labs--x
13 Apr 2026
Model Releases

AI Dev 26 brings the builders together. We'll be among them. Meet us there 👇 @DeepLearningAI @AndrewYNg

DGX agent

AI Dev 26 brings the builders together. We'll be among them. Meet us there 👇 @DeepLearningAI @AndrewYNg 3,000+ developers. Two days. AI Dev 26 x San Francisco is where the people building AI come toge

model-releasesai21-labs--x
12 Apr 2026
Model Releases

Routing every task to your largest model burns tokens, adds latency, and inflates costs. @AI21Labs' Maestro Orchestration Meta Model (OMM) i…

DGX agent

Routing every task to your largest model burns tokens, adds latency, and inflates costs. @AI21Labs' Maestro Orchestration Meta Model (OMM) is the layer above your stack that dynamically selects the ri

model-releasesai21-labs--x
9 Apr 2026
46 results