29 min read

Q1 2024 IT Review – Claude 3, Apple Vision Pro, NVIDIA Blackwell, Sora

Q1 2024 IT Review – Claude 3, Apple Vision Pro, NVIDIA Blackwell, Sora

Part of IT Trends & Reviews — what actually shipped, quarter by quarter.

1. Introduction: AI Becomes a Product Category

The first quarter of 2024 is the moment artificial intelligence completes its transformation from an impressive technology into a recognisable product category. For the past two years, the dominant story has been models: GPT-4, Claude 2, Llama 2, the relentless benchmark race. In Q1 2024, the story shifts. Instead, products built on top of those models arrive in shipping boxes and API endpoints that paying customers can actually use. Those products include code editors, search engines, software agents, and spatial computers. As a result, the infrastructure catches up with the imagination, and the industry’s centre of gravity moves from research papers to product launches.

Three events define the quarter. On February 2, Apple ships the Vision Pro at $3,499. It introduces “spatial computing” as its own category. As a result, every developer must think about a third spatial dimension alongside the two-dimensional screen. On March 4, Anthropic releases Claude 3, its Opus, Sonnet, and Haiku family. It outscores GPT-4 on multiple reasoning and vision benchmarks. More unusually, it appears to notice when it is being tested. And on March 18, at the NVIDIA GTC conference in San Jose, Jensen Huang unveils the Blackwell architecture. The GB200 NVL72 configuration promises a 30× improvement in LLM inference performance over its predecessor H100. Overall, each announcement is not merely incremental: each redefines what is possible and raises the floor for competitor responses.

1.1 February shocks and the open-source response

Between those milestones, February delivers two additional shocks. First, on February 8, Google rebrands Bard as Gemini. It also launches Gemini Ultra for paying subscribers. That signals that the world’s most important search engine is now rebuilt around large language models. Second, on February 15, OpenAI publishes a demo of Sora. The text-to-video model generates photorealistic 60-second clips from a single sentence. In practice, the videos are so convincing that debates about synthetic media go mainstream overnight. The EU responds: on March 13, the European Parliament approves the AI Act with a 523-to-46 majority, the world’s first comprehensive binding AI legislation.

Meanwhile, the open-source and developer-tooling ecosystem is not standing still. LangChain releases its first stable 0.1 milestone in January, finally giving production teams a stable API to build on. In addition, CrewAI, a role-based multi-agent framework, goes viral on GitHub in weeks. And the startup Cognition Labs stuns engineers on March 12 with Devin. It is the first AI agent positioned explicitly as an autonomous software engineer. Devin can set up environments, write and debug code, and deploy applications end to end.

Taken together, Q1 2024 is the quarter in which AI stops being an experiment and starts being infrastructure. Furthermore, it is the quarter in which the concept of “AI-native” software acquires a shared meaning: software where the intelligence is the core, not a feature bolt-on. The industry will not look the same again.

Feb 2
Apple Vision Pro launches in the US at $3,499
Mar 4
Claude 3 Opus & Sonnet released by Anthropic
30×
NVIDIA Blackwell LLM inference gain over H100
523–46
European Parliament votes for the EU AI Act
Apple Vision Pro headset facing right, showing EyeSight display
Apple Vision Pro (M2 + R1 chips) launches February 2, 2024, at $3,499 — Apple’s first new product category since the Apple Watch (2015) and the opening move in spatial computing for mainstream consumers. Source: Wikimedia Commons — Miyako Fujimiya / CC BY-SA 4.0.

2. GitHub Deep Dive – Key Repositories of Q1 2024

Overall, the GitHub activity of Q1 2024 reflects the transition from model-centric to application-centric AI. The most-starred and most-discussed repositories are not raw model weights. Rather, they are orchestration frameworks, agent toolkits, and inference accelerators. That is the scaffolding that turns language models into products. Overall, six repositories stand out for their technical significance and community momentum this quarter.

2.1 LangChain 0.1 — langchain-ai/langchain

LangChain 0.1 — First Stable Release of the LLM Application Framework

Release: v0.1.0 — January 8, 2024  |  github.com/langchain-ai/langchain  |  License: MIT

LangChain 0.1 is the framework’s first semantically stable release since its viral debut in late 2022. The 0.1 version introduces a clean split between langchain-core (the LCEL expression language and base abstractions), langchain-community (third-party integrations), and top-level langchain (orchestration logic). In practice, this modularity matters enormously for production teams: previously, upgrading LangChain risked breaking dozens of integration imports. The 0.1 release also standardises the LangChain Expression Language (LCEL) syntax, which enables composable, streaming-first chains defined as Python pipe-operator expressions.

In addition, vector-store integrations in 0.1 cover Pinecone, Chroma, Weaviate, Qdrant, and Faiss. Retrieval-augmented generation (RAG) patterns — query decomposition, hypothetical document embeddings, multi-query retrieval — are codified as reusable recipes. Notably, by March 2024 the repository accumulates approximately 75,000 GitHub stars, making it the most-starred LLM tooling repository in existence. Overall, the 0.1 release transforms LangChain from a rapid-prototype curiosity into a framework that enterprise teams can confidently pin in production requirements.txt files.

2.2 CrewAI — joaomdmoura/crewAI

CrewAI — Role-Based Multi-Agent AI Framework

Initial open-source launch late 2023; viral adoption Q1 2024  |  github.com/joaomdmoura/crewAI  |  License: MIT

CrewAI reaches roughly 12,000 GitHub stars by the end of March 2024, making it the fastest-growing AI agent framework of the quarter. The framework models teams of AI agents as “crews”: each agent has a defined role (e.g. “Senior Data Analyst”), a goal, a backstory that influences its personality, and a set of tools it can invoke. A Crew then orchestrates these agents with a configurable process — sequential or hierarchical delegation.

Technically, CrewAI wraps LangChain agents under the hood but adds an explicit role-playing layer that dramatically improves task specialisation and reduces hallucination in multi-step workflows. In practice, the framework is adopted in Q1 2024 for document analysis pipelines, automated research assistants, and software development workflows. In those workflows different agents handle planning, coding, and testing in sequence. CrewAI’s viral growth reflects a broader industry recognition. Single-agent prompting is insufficient for complex, multi-step tasks. Rather, role assignment and crew management are real software engineering problems requiring dedicated abstractions.

2.3 Microsoft AutoGen 0.2 — microsoft/autogen

AutoGen 0.2 — Multi-Agent Conversational Framework from Microsoft Research

0.2.x series ongoing through Q1 2024  |  github.com/microsoft/autogen  |  License: CC Attribution 4.0 / MIT

AutoGen, Microsoft Research’s multi-agent framework, reaches over 22,000 GitHub stars in Q1 2024 and is one of the most-cited repositories in the emerging AI-agent literature. Its central abstraction is the ConversableAgent, which enables arbitrary LLM-backed agents to exchange messages in a configurable conversation topology. In addition, the 0.2 series adds group-chat manager agents, tool-use APIs that allow agents to invoke Python functions, and code execution in Docker sandboxes for safety. Notably, Microsoft Research publishes a companion paper demonstrating that multi-agent AutoGen pipelines outperform single-agent approaches on complex coding, math reasoning, and question-answering tasks. In Q1 2024, AutoGen is Microsoft’s primary vehicle for demonstrating multi-agent AI inside Azure AI Studio and Copilot Studio integrations. Overall, it represents Microsoft’s bet that the future of enterprise AI is not a monolithic model but a coordinated system of specialised agents.

2.4 LlamaIndex 0.10 — run-llama/llama_index

LlamaIndex 0.10 — RAG Data Framework Reaches Architectural Maturity

Release: v0.10.0 — February 2024  |  github.com/run-llama/llama_index  |  License: MIT

LlamaIndex 0.10 is a major architectural overhaul that untangles the original monolithic package into llama-index-core and a network of integration packages. As a result, teams can install only the connectors they need, avoiding the dependency sprawl that plagued earlier versions. Version 0.10 introduces first-class support for structured outputs using Pydantic models, a sub-question query engine that decomposes complex questions, and a new PropertyGraphIndex for knowledge-graph-augmented retrieval. In addition, the release ships a standardised evaluation module with faithfulness and relevancy metrics, addressing the industry’s growing recognition that RAG pipelines need measurable quality controls. Notably, by Q1 2024 LlamaIndex counts roughly 28,000 GitHub stars and is the default choice for teams building document-grounded question-answering systems. Overall, the 0.10 release confirms that RAG is not a temporary workaround but a permanent software engineering discipline with its own maturing ecosystem.

2.5 Groq Python SDK — groq/groq-python

Groq LPU — 500 Tokens/Second Inference Changes the Speed Conversation

GroqCloud public launch: February 2024  |  github.com/groq/groq-python  |  Website: groq.com

Groq (not to be confused with xAI’s Grok chatbot) makes its public debut in Q1 2024 with a Language Processing Unit (LPU). The LPU generates tokens at speeds widely reported at 300–500 tokens per second for Mixtral 8x7B. That is roughly 10–25× faster than equivalent GPU-hosted inference. Meanwhile, the GroqCloud API goes public in February 2024, and developers immediately flood social media with side-by-side comparisons showing near-instant full-sentence completions.

The technical novelty is the LPU architecture itself. General-purpose GPUs use SIMD cores optimised for matrix math. Groq’s chip instead uses a deterministic, sequencer-based execution model with on-chip SRAM that eliminates memory-bandwidth bottlenecks. Consequently, this determinism means latency is perfectly consistent — no tail-latency spikes. In Q1 2024, Groq supports Llama 2 70B and Mixtral 8x7B. The demo’s viral spread forces the industry to separate two conversations that had been conflated. One is model quality, a function of parameters and training. The other is inference speed, a function of hardware architecture. Groq proves these two dimensions are independently improvable.

2.6 Notable Repositories — Quick Reference

RepositoryCategoryQ1 2024 SignificanceTag
mistralai/mistral-srcLLMMixtral 8x7B MoE adoption peaks; outperforms Llama 2 70B at a fraction of the costOpen LLM
openai/evalsEvaluationCommunity contributes 500+ evaluation sets; becomes the de facto LLM benchmark repositoryTooling
Stability-AI/stablediffusionImage AIStable Diffusion 3 architecture paper (MMDiT) published; community anticipation peaksGenAI
oobabooga/text-generation-webuiLocal LLMLocal LLM inference on consumer GPUs democratises model access without API feesOpen Source

3. Big Tech & Industry Breakthroughs

Q1 2024 is characterised by simultaneous large-scale bets from every major technology company. The competitive dynamic is unusual: rather than one leader pulling ahead, every player moves at roughly the same velocity, each releasing something the others cannot immediately match. The result is not a clear winner but a dramatically richer landscape for developers and enterprises choosing their AI stack.

3.1 Anthropic — Claude 3 Resets the Benchmark Leaderboard

On March 4, 2024, Anthropic releases Claude 3 Opus and Sonnet, followed by Claude 3 Haiku on March 13. The Opus model immediately tops every major reasoning, knowledge, and vision benchmark available at the time. Those include MMLU (86.8%), GPQA (50.4%), HumanEval (84.9%), and MATH (60.1%). In each case it surpasses GPT-4 and Gemini Ultra on multiple evaluations. In addition, the 200,000-token context window holds approximately 500 pages of text, making it the largest production context available at launch.

However, the detail that most captures developer attention is a note in the technical documentation: Claude 3 Opus appears to recognise when it is being tested. The “needle in a haystack” evaluation buries a fact in a very long context. Opus not only retrieves the fact. It also comments that the phrasing looks unusual, as if planted. As a result, this apparent meta-awareness triggers broad public discussion about emergent AI behaviour and the difficulty of cleanly evaluating frontier models.

3.2 The three-tier family and what it sets off

The three-tier family structure (Haiku / Sonnet / Opus) establishes a pricing and capability ladder that other labs quickly imitate. For example, Haiku, at $0.25 per million input tokens, makes Claude viable for high-throughput consumer products. Meanwhile, Sonnet, at $3 per million tokens, sits in the enterprise sweet spot. Finally, Opus, at $15 per million tokens, targets high-stakes reasoning tasks. Overall, this tiered model proves that a frontier-AI company can address multiple market segments simultaneously with a single model family, eliminating the historic tradeoff between capability and accessibility.

Free ebook

Free AI Video, Generated Locally

Working scripts and measured benchmarks. Free.

No spam. Unsubscribe at any time.

Claude 3 Family — Technical Specifications at Launch

Opus & Sonnet: March 4, 2024  |  Haiku: March 13, 2024  |  Provider: Anthropic  |  anthropic.com/claude

Claude 3 Opus — most capable; 200K context window; scores above GPT-4 on MMLU (86.8%), GPQA (50.4%), and vision tasks. Pricing: $15 / $75 per million tokens (input / output). Claude 3 Sonnet — balanced speed and capability; optimised for enterprise workloads; approximately 2× faster than Opus. Pricing: $3 / $15. Claude 3 Haiku — fastest and cheapest; near-instant responses; suited for customer-facing applications at scale. Pricing: $0.25 / $1.25. In addition, all three models accept text and image input (vision capability). Anthropic trains all three using Constitutional AI, steering toward helpfulness, harmlessness, and honesty via a documented set of principles rather than purely RLHF.

3.3 Apple — Vision Pro and the Spatial Computing Bet

Apple’s Vision Pro launches February 2, 2024, starting at $3,499 — the company’s first new hardware category since the Apple Watch in 2015. The device uses Apple’s M2 processor for general computing and a dedicated R1 co-processor that handles real-time sensor fusion from 12 cameras, 6 microphones, and 5 sensors. In practice, the reported end-to-end latency is 12 milliseconds, far below the threshold of perceptible lag. The display system delivers 23 megapixels across two micro-OLED panels at 3660 × 3200 pixels per eye.

Apple markets the device not as a VR headset but as a “spatial computer” running visionOS, a new operating system where apps float in three-dimensional space anchored to real-world surfaces. Pre-orders sell out in 18 minutes. Approximately 200,000 units ship in the first two weeks. Major streaming services decline to release native visionOS apps in Q1 2024. Netflix, Spotify, and YouTube all direct users to web versions instead. That signals that App Store revenue-model friction persists even for groundbreaking new hardware.

3.4 NVIDIA — Blackwell Architecture and the Next Hardware Cycle

At GTC 2024 on March 18, Jensen Huang unveils the Blackwell architecture, succeeding Hopper (H100). The flagship B200 GPU contains 208 billion transistors on a dual-die design and delivers 20 petaFLOPS at FP4 precision. The GB200 NVL72 configuration combines 36 Grace Blackwell Superchips (72 GPUs) connected by fifth-generation NVLink. For LLM inference, it achieves approximately 30× better inference performance and 25× better energy efficiency versus an equivalent H100 cluster. The implications are immediate: running GPT-4-class models at consumer scale is currently economically marginal on H100 hardware. With Blackwell, it may become commercially viable at significantly lower cost per token. Huang also introduces NVIDIA Inference Microservices (NIMs). These are containerised AI inference endpoints designed to snap into Kubernetes-based enterprise infrastructure. As a result, NVIDIA positions itself not just as a chip vendor but as an AI platform company with a managed deployment layer.

3.5 OpenAI — GPT Store and the Sora Shock

On January 10, OpenAI launches the GPT Store, a marketplace for custom GPTs built on ChatGPT. By the end of Q1, the store lists over three million custom GPTs spanning education, coding, creative writing, and domain-specific enterprise tools. The variety illustrates that the same base model can be productised in radically different directions through system prompts alone. Meanwhile, the Sora announcement on February 15 overshadows everything else OpenAI does this quarter. The research preview demonstrates 60-second HD video clips generated from text prompts, including complex scenes with multiple moving subjects, consistent lighting, realistic physics, and object permanence across cuts. As a result, the demos trigger immediate debate among filmmakers, journalists, and AI researchers about synthetic media, deepfakes, and the future of video production. Sora remains in limited research preview throughout Q1 and is not publicly accessible.

3.6 Google — Gemini Rebrands, Ultra Launches, 1.5 Pro Previews

On February 8, Google renames Bard as Gemini and launches a tiered product family. Gemini Ultra becomes available to subscribers of Google One AI Premium ($19.99/month). The Ultra model performs comparably to GPT-4 on most benchmarks, with particularly strong results on multimodal tasks. Google repositions its entire search experience around Gemini, adding AI Overviews to Search results globally. At the end of February, Google releases Gemini 1.5 Pro in preview. It carries a 1-million-token context window using Multi-head Latent Attention (MLA). That far exceeds every competing model. In practice, it enables analysis of feature-length films or entire large codebases in a single prompt. The 1.5 Pro preview is arguably the most technically significant Google release of the quarter, even if it does not receive the same press coverage as the Bard-to-Gemini rebrand.

3.7 Big Tech Events — Q1 2024 Summary

CompanyEventDateSignificance
AppleVision Pro launch ($3,499)Feb 2New spatial computing category; ~200K units in first two weeks
AnthropicClaude 3 Opus / Sonnet / HaikuMar 4–13Tops GPT-4 on MMLU, HumanEval; 200K context; tiered pricing model
NVIDIABlackwell architecture & GB200 NVL72Mar 1830× LLM inference over H100; NIMs inference microservices launched
OpenAIGPT Store + Sora previewJan 10 / Feb 153M+ custom GPTs; photorealistic 60-second text-to-video stuns industry
GoogleBard → Gemini; Ultra launch; 1.5 Pro previewFeb 8 / Feb endGemini Ultra matches GPT-4; 1M-token context previewed
MicrosoftCopilot standalone app; GitHub Copilot EnterpriseJan / FebCopilot enters enterprise at $19/user/month add-on to M365
Cognition LabsDevin — autonomous AI software engineerMar 1213.86% SWE-bench; full dev-cycle autonomy — environment setup to deployment
European UnionEU AI Act approved (523–46)Mar 13World’s first binding comprehensive AI legislation; phased enforcement 2025–2026
AMDMI300X GPU in production at hyperscalersQ1 2024192 GB HBM3; competitive H100 alternative for inference-heavy workloads
Mistral AIMixtral 8x7B adoption peaks; Series B closeQ1 2024€385M Series B at €6B valuation; Mixtral becomes top open-weights model
NVIDIA logo
NVIDIA unveils the Blackwell architecture at GTC 2024 (March 18–21, San Jose), with the GB200 NVL72 configuration promising 30× LLM inference improvement over H100 and 25× better energy efficiency. Source: Wikimedia Commons — Nvidia / Public domain.

4. AI & Technology Impact

Q1 2024 sees AI move along three parallel tracks simultaneously: model capability continues to advance at a rapid pace. Deployment infrastructure matures to make those models reliably accessible. And regulation catches up with the technology for the first time in any major jurisdiction. Each track reinforces and constrains the others.

4.1 AI Events Timeline — Q1 2024

January 8, 2024

LangChain 0.1.0 — First Stable Release

LangChain ships its first semantically stable release, splitting the package into core, community, and integration layers. Production teams can now safely pin the version in CI/CD pipelines without fearing breaking changes between minor updates.

January 10, 2024

OpenAI GPT Store Launches

OpenAI opens the GPT Store for custom GPT distribution. By the end of Q1, over three million custom GPTs are listed, spanning education, coding, creative writing, legal research, and domain-specific enterprise tools.

February 2, 2024

Apple Vision Pro — Spatial Computing Goes on Sale

Apple Vision Pro launches in the US at $3,499. Pre-order inventory sells out in 18 minutes. The device introduces visionOS and eye-tracking / hand-gesture navigation without physical controllers, defining spatial computing interaction patterns.

February 8, 2024

Google Bard Becomes Gemini — Ultra Model Available

Google renames Bard to Gemini and launches Gemini Ultra for Google One AI Premium subscribers at $19.99 per month. Gemini Advanced becomes available in over 150 countries on day one.

February 15, 2024

OpenAI Sora — Text-to-Video Shocks the Industry

OpenAI publishes a research preview of Sora, generating photorealistic 60-second HD video from text prompts. Demos show complex multi-subject scenes, realistic physics, and visual consistency across cuts that no prior publicly available system can match.

February 2024

Groq LPU Goes Public — 500 Tokens/Second Inference

Groq opens GroqCloud and immediately goes viral. Developers post comparisons showing near-instant responses for Mixtral 8x7B — 10–25× faster than equivalent GPU inference — demonstrating that the hardware and software layers of AI infrastructure can improve independently.

February 26, 2024

Gemini 1.5 Pro Preview — 1 Million Token Context

Google previews Gemini 1.5 Pro with a 1-million-token context window via Multi-head Latent Attention. The context length enables analysis of complete feature films or multi-million-line codebases in a single prompt — a 5× improvement over the previous 200K maximum.

4.2 Q1 2024 timeline: March

March 4, 2024

Claude 3 Opus & Sonnet Released — New Benchmark Leader

Anthropic releases Claude 3 Opus and Sonnet. Opus tops GPT-4 on MMLU (86.8%), HumanEval (84.9%), and vision benchmarks. The model appears to recognise when it is being tested during needle-in-a-haystack evaluations, generating broad discussion about AI meta-awareness.

March 12, 2024

Devin — The First AI Software Engineer (Cognition Labs)

Cognition Labs announces Devin, positioned as the world’s first autonomous AI software engineer. Devin achieves 13.86% on the SWE-bench benchmark, completing full development tasks including environment setup, coding, debugging, and deployment from a natural-language specification.

March 13, 2024

EU AI Act Approved — 523 to 46 in European Parliament

The European Parliament approves the EU Artificial Intelligence Act with a 523-to-46 majority. The legislation introduces a risk-based regulatory framework, prohibiting certain AI applications entirely and placing significant requirements on high-risk and general-purpose AI systems.

March 13, 2024

Claude 3 Haiku Released — Fastest and Cheapest Claude

Anthropic completes the Claude 3 family with Haiku at $0.25 per million input tokens. Haiku makes Claude viable for high-throughput consumer-facing applications where latency and cost are primary constraints.

March 18–21, 2024

NVIDIA GTC 2024 — Blackwell Architecture Unveiled

Jensen Huang unveils the Blackwell GPU architecture at GTC in San Jose. The B200 packs 208 billion transistors. The GB200 NVL72 system delivers ~30× LLM inference improvement over H100 at 25× better energy efficiency. NVIDIA also launches NIMs to simplify enterprise AI deployment.

4.3 EU AI Act — What It Means in Practice

The EU AI Act introduces a tiered risk classification with real engineering consequences. Unacceptable risk systems — real-time remote biometric identification in public spaces, social scoring, subliminal manipulation — are banned outright. High-risk systems covering critical infrastructure, medical devices, autonomous vehicles, employment decisions, and law enforcement require conformity assessments, human oversight mechanisms, and transparency documentation before deployment. General-purpose AI models with training compute exceeding 1025 FLOPs — a threshold that currently captures GPT-4-class models — face mandatory adversarial testing, incident reporting, and copyright transparency obligations.

The regulation does not take effect immediately: provisions are phased in over 12 to 36 months after entry into force, giving industry time to adapt. Nevertheless, Brussels effectively sets the global compliance floor, as companies operating in European markets must comply regardless of where they are headquartered. For practitioners, the practical implications are immediate: teams building production AI systems now need legal counsel alongside ML engineers. In addition, autonomous-agent architectures face particular scrutiny where “meaningful human oversight” requirements may conflict with the speed at which agentic pipelines operate.

Key Insight — Regulation as a Design Constraint

The EU AI Act passing in the same quarter as Claude 3, NVIDIA Blackwell, and Devin is not coincidental. Regulators accelerate as capability does. The Act’s 1025 FLOP threshold is calibrated to current frontier models. In addition, the requirement for “meaningful human oversight” in high-risk applications directly challenges the autonomous-agent architectures that CrewAI, AutoGen, and Devin represent. Practitioners building production AI systems in 2024 need to treat regulatory compliance as a first-class architectural requirement, not a post-deployment checkbox.

European Parliament hemicycle in Strasbourg
The European Parliament in Strasbourg votes 523–46 to approve the EU Artificial Intelligence Act on March 13, 2024 — the world’s first comprehensive binding AI legislation, introducing risk-based classification from banned applications to transparency requirements on frontier models. Source: Wikimedia Commons — Diliff / CC BY-SA 3.0.

5. Key Voices & Thought Leaders

Q1 2024’s most influential technical voices span academia, industry, and independent commentary. Five stand out for the breadth of their reach and the precision of their analysis during this specific quarter.

Andrej Karpathy — Building the Mental Model for LLMs

Platform: YouTube, X (Twitter)  |  Former Director of AI at Tesla; former OpenAI researcher  |  karpathy.ai

Karpathy leaves OpenAI in February 2024, and his departure becomes a major news event in itself. His ongoing educational content generates the most lasting impact, however. The “Neural Networks: Zero to Hero” YouTube series reaches millions of new viewers in Q1 2024. The episode “Let’s build GPT from scratch” draws particular attention. Developer interest in understanding LLMs from first principles surges following the Claude 3 and Sora announcements. Karpathy also frames LLMs not as chatbots but as new computing substrates — a conceptual reframing that influences how engineers think about agentic AI and the emerging multi-agent architectures. His plain-language explanations of tokenisation, attention, and RLHF remain the clearest available to practitioners at any experience level.

Jensen Huang — Communicating Hardware Strategy as Narrative

Platform: GTC keynote, NVIDIA blog  |  CEO, NVIDIA  |  nvidianews.nvidia.com

Jensen Huang’s GTC 2024 keynote on March 18 is arguably the most consequential technical presentation of Q1 2024 outside the Claude 3 launch. Huang frames the Blackwell announcement not as a GPU release. Rather, it opens a new era of “accelerated computing”. In it, every company building AI infrastructure must rethink its procurement strategy within the next 18 months. His phrase “the more you buy, the more you save” — describing energy-efficiency gains of the new architecture — immediately enters the tech-industry lexicon. Huang’s storytelling ability, translating petaFLOP numbers into business-outcome language, positions NVIDIA as a strategic partner rather than a commodity supplier.

5.1 Independent testing and evidence-based practice

Simon Willison — Empirical Testing of Every New Model

Platform: simonwillison.net  |  Independent developer, co-creator of Django  |  simonwillison.net

Simon Willison publishes substantive, independently tested write-ups of virtually every major AI release in Q1 2024. Those include same-day analyses of Claude 3, Gemini 1.5 Pro, and the Sora announcement. His methodology stands out. Rather than summarising press releases, he runs the models against his own test cases. He documents the exact prompts and outputs, and reports what works and what does not. His piece on Claude 3’s 200K context window — testing it with an actual 200,000-token document — is the most cited practical evaluation outside Anthropic’s own documentation. Willison also popularises “LLM-powered application” as a more precise term than “AI”, helping developers communicate more clearly about what they are building.

Ethan Mollick — The Empirical Humanist of AI Adoption

Platform: One Useful Thing (Substack)  |  Associate Professor, Wharton School  |  oneusefulthing.org

Ethan Mollick’s Substack “One Useful Thing” is the go-to source in Q1 2024 for evidence-based reasoning about how AI changes work and education. Following the Claude 3 and Sora releases, Mollick coins the phrase “AI’s jagged frontier of capability”: AI is superhuman on some tasks and inexplicably bad on adjacent ones. In addition, the frontier is not obvious from the outside. This framing helps practitioners calibrate where to trust AI outputs and where to maintain human verification. It is a practical decision heuristic. Moreover, it fills a gap that neither academic papers nor vendor marketing adequately address. Mollick’s research-backed perspective on AI-in-education and AI-in-the-enterprise makes him one of the most credible voices on adoption strategy this quarter.

5.2 Frontier-lab perspective

Dario Amodei — The Safety-Capability Convergence

Platform: Anthropic blog, conference talks  |  CEO, Anthropic  |  anthropic.com/research

With Claude 3 topping benchmarks in March, Dario Amodei’s public writing in Q1 2024 focuses on capability and safety. He argues that the two are not in tension but complementary. His statements around the Claude 3 launch emphasise that Constitutional AI, Anthropic’s alignment technique, demonstrably improves both helpfulness and harmlessness simultaneously. Amodei speaks at multiple conferences about the need for mandatory safety evaluations of frontier models before deployment. That position aligns with elements of the EU AI Act’s GPAI provisions. His voice carries particular weight because Anthropic simultaneously releases the most capable and the most safety-tested commercial model of the quarter.

6. Trend Synthesis

Stepping back from individual announcements, Q1 2024 reveals five interlocking structural shifts that define where the industry is heading as the quarter closes.

6.1 The Multi-Model Equilibrium

For most of 2023, OpenAI’s GPT-4 holds a clear performance lead that competitors cannot close. Q1 2024 ends that monopoly. Claude 3 Opus outperforms GPT-4 on multiple benchmarks. Gemini Ultra matches it on others. Mistral’s Mixtral 8x7B delivers GPT-3.5-level performance in a model small enough to run on consumer hardware. The result is a genuine multi-model equilibrium. The choice of model becomes a product decision, governed by context-window size, pricing, vision capability, latency, and licensing constraints. It is no longer an obvious “use the best one” default. Enterprises respond by building model-agnostic abstraction layers via LangChain, LlamaIndex, or custom routers rather than hardcoding a single provider. This architectural pattern — provider independence — becomes a standard element of production AI system design in Q1 2024.

6.2 The Agent Architecture Inflection

The simultaneous viral adoption of CrewAI, the 0.2 release of AutoGen, Devin’s announcement. In addition, the maturation of LangChain’s agent modules all point to a single conclusion: single-turn LLM prompting is reaching its ceiling for complex tasks. The industry converges on multi-agent architectures where specialised agents handle planning, execution, verification, and self-correction in coordinated loops. The pattern is not universally reliable. All agent frameworks in Q1 2024 exhibit significant failure modes on tasks requiring world knowledge or long-horizon planning. Nevertheless, the trajectory is clear. By the end of Q1, “agentic AI” stops being a research term and becomes a product category with real enterprise deployments and real revenue.

6.3 The Hardware Cycle Acceleration

NVIDIA’s Blackwell announcement and Groq’s LPU public launch signal that the hardware layer of the AI stack now innovates independently of the model layer. The gap between H100 and Blackwell closes in under two years. Groq demonstrates a fundamentally different architecture that sacrifices flexibility for speed and achieves an order-of-magnitude inference improvement over GPU equivalents. AMD’s MI300X enters hyperscaler production with 192 GB of HBM3 memory. That is more than double the H100’s. As a result, it is competitive for LLM inference workloads where the model barely fits in VRAM. This hardware pluralism creates a more competitive compute supply chain, ultimately bending the cost-per-token curve downward in a way that directly enables the AI product wave above.

6.4 Spatial Computing as a New Development Target

Apple Vision Pro’s launch imposes a new coordinate system on application development. The device ships with visionOS 1.0, a fully-featured operating system with SwiftUI spatial components, RealityKit for 3D rendering, ARKit for world tracking, and backward compatibility with iPad apps. By the end of Q1, over 600 native visionOS apps exist. Four categories attract serious development: surgical training, architectural visualisation, manufacturing inspection, and immersive data analysis. Those are precisely the industrial and enterprise domains where spatial computing offers genuine productivity gains over flat-screen interaction. The Vision Pro is not a consumer mass-market device in Q1 2024. It is an enterprise developer kit that defines the API surface and interaction model that cheaper future hardware will inherit.

6.5 Regulation as a Design Constraint

The EU AI Act’s passage transforms compliance from a post-hoc concern into a design constraint. Systems built in Q1 2024 and deployed into European markets must, when high-risk provisions enter force, include explainability documentation, human override mechanisms, audit trails, and conformity assessments. These are not superficial UI requirements; they change system architecture. Autonomous agent pipelines with no human checkpoint do not satisfy “meaningful human oversight.” Biometric data processed by AI systems in employment decisions triggers mandatory documentation. The Act’s GPAI provisions for frontier models require capability evaluations before deployment. For practitioners, Q1 2024 is the last quarter in which it is possible to treat regulation as someone else’s problem.

The Quarter’s Defining Signal

The through-line connecting Claude 3, Blackwell, CrewAI, Groq, Vision Pro. In addition, the EU AI Act is the same signal: AI transitions from a research artefact into a regulated, commercially viable, hardware-constrained, multi-model infrastructure layer. The experiments of 2022 and 2023 are now products. Consequently, the products of Q1 2024 become infrastructure by 2025. The infrastructure is regulated by 2026. Each stage of this progression is already visible in the announcements of this single quarter.

7. Summary

Q1 2024 is the quarter in which the AI product wave makes landfall. The clearest evidence is not any single announcement. It is the convergence of five simultaneous market entries. First, a new model family (Claude 3) beats the previous benchmark leader on multiple dimensions. Second, a new computing paradigm (Apple Vision Pro) adds a spatial dimension to software. Third, a new hardware generation (Blackwell) promises to slash inference costs by 30×. Fourth, a new modality (Sora’s video generation) expands what AI can produce. Finally, a new regulatory framework (EU AI Act) constrains what AI is permitted to do without appropriate safeguards. No previous quarter in the AI era concentrates so much structural change in so short a period.

The open questions that emerge from Q1 2024 are significant. How reliably can multi-agent systems like Devin and CrewAI execute real-world engineering tasks without human intervention? The 13.86% SWE-bench score for Devin is impressive. Even so, it means the system fails on 86% of benchmark tasks. Moreover, benchmark tasks are considerably simpler than real production environments. When does autonomous AI cross the threshold where the EU AI Act’s “meaningful human oversight” requirement becomes practically incompatible with the speed at which agentic pipelines operate? And what happens to the developer-tool market when NVIDIA NIMs and Groq LPUs make deploying a Claude-class inference endpoint a one-command operation? Does the LangChain and LlamaIndex ecosystem become more or less necessary as infrastructure commoditises?

7.1 What practitioners should do next

For practitioners watching these developments, two immediate actions are prudent. First, evaluate the multi-model landscape seriously. The performance gap between leading models is now narrow. Therefore, pricing, latency, and data-residency requirements should drive model selection as much as raw benchmark scores. A team choosing between Claude 3 Opus, GPT-4, and Gemini Ultra should be making a product and business decision, not purely a technical one. Second, begin treating AI regulation as a design input rather than a post-deployment compliance task. The EU AI Act’s timeline is clear and public. Organisations that start architectural compliance work now will have a significant advantage over those that wait for enforcement to begin.

Finally, the IIoT angle visible across this quarter’s practitioner-level activity is a reminder. The most durable AI applications in Q1 2024 are not the demos. They are the predictive-maintenance sensors on grain conveyors, the bearing-health monitors on conveyor lines, and the autonomous robots cleaning rivers. These applications convert AI capability into measurable uptime, safety, and environmental outcomes. The headline models grow more capable, and the inference infrastructure grows cheaper. As a result, the distance between a Claude 3 API call and a bearing-failure prediction on a remote industrial conveyor shrinks to almost nothing. That convergence of enterprise generative AI with operational technology is, arguably, Q1 2024’s quietest and most consequential story.

Sources

  1. Anthropic. “Claude 3 Model Card.” Anthropic, March 2024. https://www.anthropic.com/claude-3-model-card
  2. Dastin, Jeffrey. “Anthropic releases more powerful Claude 3 AI as tech race continues.” Reuters, March 4, 2024. https://www.reuters.com/technology/anthropic-releases-more-powerful-claude-3-ai-tech-race-continues-2024-03-04/
  3. Edwards, Benj. “Anthropic’s Claude 3 causes stir by seeming to realize when it was being tested.” Ars Technica, March 5, 2024. https://arstechnica.com/information-technology/2024/03/claude-3-seems-to-detect-when-it-is-being-tested-sparking-ai-buzz-online/
  4. Apple. “Apple Vision Pro available in the U.S. on February 2.” Apple Newsroom, January 8, 2024. https://www.apple.com/newsroom/2024/01/apple-vision-pro-available-in-the-us-on-february-2/
  5. Patel, Nilay. “Apple Vision Pro review: magic, until it’s not.” The Verge, January 30, 2024. https://www.theverge.com/24054862/apple-vision-pro-review-vr-ar-headset-features-price
  6. NVIDIA. “NVIDIA Blackwell Platform Arrives to Power a New Era of Computing.” NVIDIA Newsroom, March 18, 2024. https://nvidianews.nvidia.com/news/nvidia-blackwell-platform-arrives-to-power-a-new-era-of-computing
  7. OpenAI. “Sora: Video generation models as world simulators.” OpenAI, February 15, 2024. https://openai.com/research/video-generation-models-as-world-simulators
  8. Google. “Bard becomes Gemini: Try Ultra 1.0 and a new mobile app today.” Google Blog, February 8, 2024. https://blog.google/products/gemini/bard-gemini-advanced-app/
  9. Google DeepMind. “Gemini 1.5: Unlocking multimodal understanding across millions of tokens of context.” February 2024. https://storage.googleapis.com/deepmind-media/gemini/gemini_v1_5_report.pdf
  10. Cognition Labs. “Introducing Devin, the first AI software engineer.” Cognition, March 12, 2024. https://www.cognition.ai/blog/introducing-devin
  11. European Parliament. “Artificial intelligence act: MEPs adopt landmark law.” Press release, March 13, 2024. https://www.europarl.europa.eu/news/en/press-room/20240308IPR19015/artificial-intelligence-act-meps-adopt-landmark-law
  12. OpenAI. “Introducing the GPT Store.” OpenAI Blog, January 10, 2024. https://openai.com/blog/introducing-the-gpt-store
  13. LangChain. “LangChain v0.1.0.” LangChain Blog, January 8, 2024. https://blog.langchain.dev/langchain-v0-1-0/
  14. LlamaIndex. “LlamaIndex 0.10: A new era of production-ready LLM applications.” February 2024. https://www.llamaindex.ai/blog/llamaindex-0-10-838e735948f8
  15. Wu, Qingyun et al. “AutoGen: Enabling Next-Gen LLM Applications via Multi-Agent Conversation.” arXiv 2308.08155, 2024. https://arxiv.org/abs/2308.08155
  16. joaomdmoura. “crewAI — Role-playing autonomous AI agents.” GitHub. https://github.com/joaomdmoura/crewAI
  17. Groq. “GroqCloud — LPU Inference Engine.” groq.com, 2024. https://groq.com
  18. Willison, Simon. “Claude 3 is the most capable LLM I’ve used.” simonwillison.net, March 2024. https://simonwillison.net/2024/Mar/4/claude-3/
  19. Mollick, Ethan. “Centaurs and Cyborgs on the Jagged Frontier.” One Useful Thing (Substack), September 2023. https://www.oneusefulthing.org/p/centaurs-and-cyborgs-on-the-jagged
  20. Mistral AI. “Mixtral of Experts.” Mistral AI Blog, December 2023 (peak adoption Q1 2024). https://mistral.ai/news/mixtral-of-experts/
  21. GitHub. “GitHub Copilot Enterprise is now generally available.” GitHub Blog, February 2024. https://github.blog/news-insights/product-news/github-copilot-enterprise-is-now-generally-available/
  22. MacRumors. “Apple Has Sold Approximately 200,000 Vision Pro Headsets.” January 29, 2024. https://www.macrumors.com/2024/01/29/apple-vision-pro-headset-sales/
  23. Wikipedia. “Claude (language model).” https://en.wikipedia.org/wiki/Claude_(language_model)
  24. Wikipedia. “Apple Vision Pro.” https://en.wikipedia.org/wiki/Apple_Vision_Pro
  25. EURid. “EU AI Act full text.” Official Journal of the European Union, 2024. https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX:32024R1689

Free ebook

Free AI Video, Generated Locally

Run Wan 2.1 in ComfyUI on your own GPU — the scripts I use, measured times, sample clips. No cloud, no API keys.

No spam. Unsubscribe at any time.

Artur Poniedziałek
Artur Poniedziałek
IT Expert & Project Manager
🤖 AI ⚡ PM 🐍 Python 🖥️ Local AI

IT Expert & Project Manager with 15+ years of experience. Exploring practical AI applications — from local LLMs and RAG systems to workflow automation. Writing to share knowledge and inspire others to experiment with new technologies.

Leave a Reply

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