32 min read

Q2 2023 IT Review – Generative AI, PaLM 2, Apple Vision Pro

Q2 2023 IT Review – Generative AI, PaLM 2, Apple Vision Pro

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

1. Introduction

Something fundamental shifts in the first days of April 2023. In fact, generative AI, which only six months earlier is a consumer novelty, is now a production engineering problem. The question is no longer whether a language model can write code. Instead, it is how to run ten thousand simultaneous requests against a 70-billion-parameter model without bankrupting the company. In short, that question defines the technical character of Q2 2023.

The quarter opens with a regulatory flashpoint. For example, Italy lifts its month-long ban on ChatGPT after OpenAI implements age-verification controls. That signals that the era of post-hoc AI governance has arrived. At the same time, Meta publishes its Segment Anything Model, a foundation model for computer vision. It turns what was once bespoke annotation work into a one-line Python call. Overall, both stories point in the same direction: AI capabilities are expanding faster than institutions know how to absorb them.

May and June: the tempo accelerates

By May, the tempo accelerates. For example, Google holds its I/O developer conference and announces PaLM 2. It is a multilingual and reasoning-tuned successor to PaLM. In addition, it powers Bard, Google Workspace, and dozens of other products. Meanwhile, Sam Altman testifies before the United States Senate on AI safety. He becomes the first tech CEO in years to voluntarily call for industry regulation. Similarly, on May 30, hundreds of AI researchers and company leaders publish a one-sentence statement calling AI extinction risk “a global priority.” The quarter closes in June with Apple’s Vision Pro announcement at WWDC. That announcement frames spatial computing as the next platform shift. Finally, June brings the European Parliament’s landmark vote advancing the AI Act. The Act is the world’s first comprehensive binding regulation of artificial intelligence.

Meanwhile, beneath these headline events, a quieter revolution is underway on GitHub. Developers around the world ship a new class of open-source tools. Those tools push LLMs into reliable production environments. For example, they include high-throughput inference servers and CPU-friendly model runtimes. They also include autonomous agent frameworks and code-generation models trained on permissive-license software. Overall, the volume and quality of this community activity make Q2 2023 arguably the most productive quarter in open-source AI history to that point.

100K+
AutoGPT GitHub stars in ~2 weeks
2–4×
vLLM throughput vs. prior state-of-the-art
15.5B
StarCoder parameters, permissive license
>200
AI signatories on extinction-risk statement

What this review covers

This review covers the six GitHub repositories that best represent the engineering zeitgeist of the quarter. In addition, it examines the strategic moves of the major technology companies. It traces the AI impact timeline week by week. Finally, it profiles five voices who shape the public conversation. The goal is to give a technical reader a durable record of Q2 2023. That record shows how the quarter actually feels from inside the engineering community. Notably, it is not a press-release summary. It is a structured account of a quarter in which the ground moves beneath every software team on earth.

2. GitHub Deep Dive

Overall, open-source activity in Q2 2023 is best understood as a response to a single structural reality: the major LLM providers are moving fast, but closed APIs create dependency risk. As a result, the GitHub community responds by building every layer of the LLM stack from scratch — inference engines, agent runtimes, training pipelines, and evaluation harnesses. In practice, six repositories define this moment.

GitHub open-source AI activity Q2 2023
Open-source AI activity on GitHub accelerates dramatically in Q2 2023, with multiple repositories each surpassing 10,000 stars within days of launch. The community effectively builds production LLM infrastructure from the ground up. (Illustration, CC0)

Significant-Gravitas / AutoGPT

AutoGPT is, by any measure, the viral phenomenon of Q2 2023. Released in late March and exploding in April, it accumulates over 100,000 GitHub stars in roughly two weeks — a pace no AI repository has reached before. In short, the project’s central proposition is disarmingly simple: give a GPT-4 instance a goal, a set of tools (web search, file I/O, code execution), and permission to plan multi-step tasks autonomously without user intervention at each step. In practice, the agent writes its own sub-tasks, executes them, evaluates the results, and iterates.

AutoGPT is compelling in April 2023, though not because it always succeeds. It frequently enters circular reasoning loops or gets lost in rabbit holes. What makes it compelling is that it makes autonomous AI agency feel tangible and near. For example, some engineers spend an afternoon watching AutoGPT work. It attempts to research a business idea, write a report, and email it to a Notion workspace. They come away fundamentally changed in their sense of what the next software paradigm looks like. Moreover, the project popularises concepts — tool use, memory, task decomposition — that rapidly become standard vocabulary in the LLM community.

However, AutoGPT also reveals, in public, the unsolved engineering problems of agentic AI: hallucinated tool outputs, context window exhaustion on long tasks. In addition, the compounding of errors across multi-step chains. As a result, these failure modes prompt a wave of follow-on research into better agent architectures, memory systems, and reliability guarantees. In this sense, AutoGPT is as important for what it breaks as for what it builds.

What AutoGPT leaves behind

Notably, the project is built by Toran Bruce Richards and quickly attracts a large contributor base. Finally, by the end of Q2 2023, dozens of forks, plugins, and derivative frameworks — BabyAGI, AgentGPT, SuperAGI — populate the ecosystem. In short, the language model agent paradigm is no longer theoretical.

vllm-project / vLLM

If AutoGPT defines the imagination of Q2 2023, vLLM defines its infrastructure reality. Released in June 2023 by researchers at UC Berkeley, vLLM introduces PagedAttention — an attention algorithm that manages the key-value cache for transformer inference using an approach borrowed directly from operating-system virtual memory management. The insight is straightforward but profound. In practice, pre-allocating a contiguous KV-cache block per request wastes significant GPU memory through fragmentation and over-allocation. Instead, PagedAttention maps the KV cache into fixed-size “pages”. Those pages can be allocated, freed, and shared non-contiguously, exactly as an OS manages RAM pages.

Overall, the practical outcome is dramatic. vLLM delivers 2–4× higher serving throughput than the previous state-of-the-art systems, FasterTransformer and Orca, at the same latency level. Moreover, the improvement grows with longer sequences, larger models, and more complex decoding algorithms such as beam search — precisely the scenarios that matter most for production deployments. As a result, this makes vLLM the go-to inference backend for any team serving open-weight models at scale during Q2 and Q3 2023.

In addition, the project provides a drop-in OpenAI-compatible REST API, which dramatically lowers the barrier to deploying open-source models as API-compatible replacements for ChatGPT or Claude. For example, teams running LLaMA, Falcon, or StarCoder behind vLLM can reuse existing client code with zero changes. By the time the formal PagedAttention paper appears at SOSP 2023 in October, the software has already become a production standard.

vLLM demonstrates something important about the maturity of the field: the performance gap between commercial and open-source LLM serving is closing rapidly, driven by principled systems engineering rather than raw model scale.

ggerganov / llama.cpp

Meanwhile, Georgi Gerganov’s llama.cpp is a masterclass in low-level systems engineering applied to a high-level AI problem. The project starts with a simple goal: run Meta’s LLaMA models on commodity hardware. That means a MacBook, a home server, eventually a Raspberry Pi. In practice, the method is to convert the float32 model weights into 4-bit integers, a process called quantisation. In addition, the code is optimised inference written in plain C++. It exploits SIMD instructions and the Metal GPU API on Apple Silicon.

Notably, the timing is perfect. Meta’s LLaMA weights have leaked online in February 2023, and tens of thousands of developers want to experiment with them locally without cloud API costs or privacy concerns. In short, llama.cpp provides the runtime. Moreover, its GGML quantisation format — which produces compact model files in formats like Q4_0, Q4_1, Q5_K — becomes the de-facto standard for distributable open-weight LLMs throughout 2023 and beyond.

What makes llama.cpp so influential in Q2 2023 is the cascade of models it enables. For example, Alpaca, Vicuna, WizardLM, and dozens of other instruction-tuned LLaMA derivatives run cleanly through llama.cpp with minimal configuration. The project effectively democratises access to performant language models. A researcher in a country without access to OpenAI’s API can run a capable 7B-parameter model on their laptop. So can an engineer working with sensitive data they cannot send to a third-party server. The downstream effect on education, research access, and AI safety experimentation is substantial.

bigcode-project / starcoder

Hugging Face and ServiceNow release StarCoder in May 2023 as part of the BigCode project. It represents a principled answer to a question that haunts proprietary code-generation models. What is the provenance of the training data? Do the model weights respect the licenses of the code they are trained on? GitHub Copilot and Amazon CodeWhisperer are trained on vast corpora of public code. However, neither organisation publishes a detailed breakdown of which licenses are included or how attribution is handled.

BigCode takes a different approach. StarCoder is trained on The Stack, a curated dataset of permissively licensed source code (MIT, Apache, BSD) built with an opt-out mechanism so that individual developers can request their code be removed. The 15.5-billion-parameter model supports eighty-six programming languages and includes a special 8,192-token context window — far longer than contemporaries — that allows it to reason about multi-file codebases with meaningful inter-file context.

Free ebook

Free AI Video, Generated Locally

Working scripts and measured benchmarks. Free.

No spam. Unsubscribe at any time.

On standard code benchmarks such as HumanEval, StarCoder performs well. It matches or beats much larger models from closed providers. That validates the hypothesis that data quality and curation matter at least as much as raw parameter count. More importantly, StarCoder is freely downloadable and commercially usable under the BigCode OpenRAIL license, making it an attractive choice for enterprises that need an auditable, self-hosted code assistant. The model’s release accelerates the enterprise adoption of open-source LLMs throughout the second half of 2023.

facebookresearch / segment-anything

Meta AI’s Segment Anything Model (SAM), released in April 2023, does for computer vision segmentation what GPT-3 did for natural language generation: it turns a labour-intensive specialist task into a promptable, general-purpose API. SAM is trained on over one billion masks generated from 11 million images using a sophisticated data-engine pipeline, making it the largest segmentation dataset ever assembled. The model accepts points, bounding boxes, or free-form text as prompts and returns high-quality segmentation masks in real time.

The practical implications reach well beyond research. Medical imaging teams use SAM to annotate anatomical structures. Satellite imagery analysts apply it to land-use mapping. Video editors use it to isolate objects across frames without frame-by-frame manual work. The model’s zero-shot generalisation — meaning it works competently on object categories it has never seen during training — marks a genuine conceptual advance in the field.

SAM’s release under the Apache 2.0 license, combined with Meta’s commitment to open-weight research, reinforces the emerging open-source strategy at the company: accept short-term competitive disadvantage in exchange for ecosystem influence and talent magnetism. This open-weights philosophy, also embodied in the LLaMA release, positions Meta as the primary institutional counterweight to OpenAI’s closed-model approach and proves enormously influential throughout 2023.

microsoft / guidance

Microsoft’s Guidance library, released in April 2023, addresses one of the most persistent pain points in LLM application development: the unpredictability of model outputs when a program needs structured data. Conventional prompt engineering asks a model to “return valid JSON” and then parses the result, hoping the model cooperates. Guidance takes a different approach. It interleaves generation and logic at the token level. That lets developers write templates that constrain generation in real time. Those templates enforce JSON schemas, select from enumerated values, and branch on generated content.

The library introduces a template language that combines Handlebars-style syntax with Python logic. Constructs look like “generate a list of exactly five items”, or “if the generated category is X, then generate a follow-up question about X”. Constraints are applied at the generation stage rather than in post-processing. Therefore the model cannot “escape” the schema. Either it generates a valid token or the library forces a valid alternative. The result is dramatically more reliable structured output.

Guidance is particularly influential in enterprise contexts where LLM outputs feed downstream systems: form parsers, database insertion pipelines, validation frameworks. Its approach is later adopted or influenced by a generation of structured-generation libraries, including Outlines, Instructor, and SGLang. In the broader context of Q2 2023, it represents the engineering community’s growing focus on reliability and predictability as production LLM use cases multiply.

3. Big Tech & Industry

Every major technology company repositions itself around AI in Q2 2023. The quarter is not about incremental updates. It is about public declaration of strategic intent, with each company using a flagship event or product launch to signal where it stakes its future.

Google I/O 2023 banner
Google I/O 2023 (May 10–11, Mountain View) is the most AI-focused developer conference in the event’s history, with PaLM 2 at the centre of nearly every product announcement. The conference signals Google’s transition from “AI-first” branding to AI-everywhere execution. (Illustration, CC0)
CompanyKey Q2 2023 EventCore AnnouncementStrategic Significance
GoogleI/O 2023 (May 10–11)PaLM 2 — multilingual, reasoning-optimised successor to PaLM; powers Bard and 25+ productsTurns Google Search, Docs, Gmail, and Cloud into AI-native products; Pixel Fold and Pixel 7a extend hardware ecosystem
MicrosoftBuild 2023 (May 23–25)Windows Copilot; Copilot integration across Microsoft 365; Azure AI services expansionEmbeds GPT-4 into the Windows OS shell; repositions Azure as the default cloud for enterprise AI workloads
AnthropicClaude API launch (Q2)Claude 1.0 API with 100,000-token context window; Constitutional AI methodologyFirst production model to offer 100K context; enables processing of entire books in a single call; $300M+ Google investment confirmed
OpenAIChatGPT iOS App (May)Native iOS app; Sam Altman testifies before US Senate (May 16); plugin ecosystem expandsMoves ChatGPT from web-only to mobile-first; Altman’s testimony frames OpenAI as open to regulation
MetaSAM Release (April)Segment Anything Model open-sourced; LLaMA ecosystem matures on GitHubOpen-weights strategy gains credibility; Meta establishes itself as primary open-source institutional backer
AppleWWDC 2023 (June 5)Apple Vision Pro at $3,499, shipping early 2024; M2 Ultra chip; visionOS SDKDefines the spatial computing platform; developer SDK triggers new category of app development research
NvidiaQ1 FY2024 Earnings (May 24)Guidance of $11B revenue for Q2 2023, nearly double analyst expectations; H100 demand described as “insane”Nvidia approaches $1T market capitalisation; H100 scarcity becomes a strategic concern for every AI-adjacent organisation

Several cross-cutting themes emerge from this table. First, the AI stack is vertically integrating at pace. Microsoft is not simply an investor in OpenAI; it is embedding GPT-4 into the operating system. Google is not merely announcing a new model; it is wiring PaLM 2 into every product that touches a user. The implication for enterprise software vendors is stark: the AI capability they expected to acquire through API calls may be commoditised by platform companies before they can differentiate.

Compute scarcity and a hardening regulatory environment

Second, compute scarcity is a genuine constraint. Nvidia’s earnings call in May is one of the most consequential in recent corporate history: the company guides to $11 billion in revenue for the following quarter, effectively doubling analyst estimates, driven entirely by data-centre GPU demand. H100 GPUs are back-ordered by months. Cloud providers are rationing access. This scarcity reshapes AI strategy: teams that can run models on less hardware — through techniques like quantisation, PagedAttention, or model distillation — gain significant competitive and cost advantages. The GitHub repositories discussed in Section 2 all, in various ways, respond to this pressure.

Anthropic logo
Anthropic, founded in 2021 by former OpenAI researchers Dario and Daniela Amodei, launches the Claude API with the industry’s largest context window (100,000 tokens) in Q2 2023. A $300M+ strategic investment from Google confirms Anthropic’s position as a major AI safety-focused competitor. © Anthropic PBC, used for editorial reference.
Microsoft logo
Microsoft Build 2023 (May 23–25) sees the announcement of Windows Copilot and deep GPT-4 integration across Microsoft 365. The conference marks Microsoft’s transition from AI investor to AI platform company. © Microsoft Corporation, used for editorial reference.

Third, the regulatory environment is hardening. The EU AI Act’s June 14 vote in the European Parliament advances a framework. That framework classifies AI systems by risk level. It imposes transparency, auditability, and human-oversight requirements on high-risk applications. As a result, the vote forces every company with European operations to begin serious compliance planning. Simultaneously, Altman’s Senate testimony and the May 30 AI extinction-risk statement push the US regulatory conversation from “wait and see” toward something more active. Overall, the combination creates a period of regulatory uncertainty that persists through the rest of 2023.

4. AI & Technology Impact

In practice, the events of Q2 2023 unfold at a pace that rewards weekly rather than monthly analysis. Therefore, the following timeline traces the key developments in chronological order, capturing both the engineering advances and the societal reactions they provoke.

Late March / Early April 2023
Italy lifts ChatGPT ban; AutoGPT goes viral
Italy’s data protection authority, the Garante, lifts its month-long ban on ChatGPT after OpenAI implements age verification and provides clearer privacy disclosures. Simultaneously, AutoGPT is published and begins its extraordinary acceleration on GitHub, surpassing 10,000 stars within 24 hours and 100,000 within two weeks.
April 5–12, 2023
Meta releases SAM; Anthropic Claude API goes public
Meta AI publishes the Segment Anything Model with weights and inference code under Apache 2.0. The same week, Anthropic opens public API access to Claude 1.0, featuring a 100,000-token context window — roughly 75,000 words, or a short novel — making it the first production model capable of processing arbitrarily long documents in a single API call.
April 24, 2023
Google completes DeepMind-Brain merger
Google announces the formal completion of the merger between Google Brain and DeepMind, creating Google DeepMind under the leadership of Demis Hassabis. The consolidation is widely read as a signal that Google is restructuring its AI research operations to move faster and avoid the internal coordination overhead that slowed its response to the ChatGPT moment in late 2022.
May 4, 2023
Geoffrey Hinton leaves Google; warns on AI risks
Geoffrey Hinton — one of the foundational figures of modern deep learning, a Turing Award recipient, and until this point an employee of Google Brain — announces his resignation so that he can speak freely about AI risk without compromising Google. In interviews with the New York Times and MIT Technology Review, he describes concerns about AI that he had previously dismissed as science fiction but now considers credible.
May 10–11, 2023
Google I/O 2023: PaLM 2 and an AI-first pivot
Google’s annual developer conference, held at Shoreline Amphitheatre in Mountain View, is dominated by AI announcements. PaLM 2, trained on a more diverse multilingual corpus with stronger mathematical and reasoning performance than its predecessor, is announced as the engine powering Bard (now available without a waitlist), Google Search’s new generative features, Google Workspace, and over twenty other Google products. New hardware includes the Pixel Fold ($1,799), Pixel 7a, and Pixel Tablet.
May 16, 2023
Sam Altman testifies before the US Senate
OpenAI CEO Sam Altman appears before the Senate Judiciary Subcommittee on Privacy, Technology and the Law — the first congressional hearing devoted primarily to ChatGPT and generative AI. Altman calls for a licensing regime for AI models above a certain capability threshold and proposes the creation of a dedicated federal AI agency. The hearing is notable for the unusual degree of bipartisan agreement among senators that regulation is necessary.
May 18–25, 2023
StarCoder released; Microsoft Build; Nvidia earnings shock
The BigCode project releases StarCoder (15.5B parameters, Apache-compatible license). Microsoft Build (May 23–25) sees the announcement of Windows Copilot, embedding AI directly into the Windows taskbar. On May 24, Nvidia reports Q1 earnings and guides to $11 billion in Q2 revenue — a near-doubling versus analyst consensus. Nvidia shares surge, driving the company toward a $1 trillion market capitalisation.
May 30, 2023
AI extinction-risk statement published
The Center for AI Safety publishes a one-sentence statement — “Mitigating the risk of extinction from AI should be a global priority alongside other societal-scale risks such as pandemics and nuclear war” — signed by over two hundred AI researchers, executives, and public figures including Altman, Hinton, Yoshua Bengio, and many others. The statement is widely covered in mainstream media and marks a turning point in public discourse around AI safety.
June 5, 2023
Apple WWDC: Vision Pro and visionOS
Apple CEO Tim Cook announces the Apple Vision Pro, a mixed-reality headset priced at $3,499, as “the most advanced consumer electronics device ever created.” Powered by the M2 chip and a dedicated R1 co-processor for sensor fusion, Vision Pro runs visionOS and displays full-resolution virtual screens that float in the user’s physical environment. While shipment is set for early 2024, the developer SDK is immediately available, triggering a new category of spatial computing application research.
June 6–12, 2023
vLLM released; Mistral AI founded
UC Berkeley researchers publish vLLM on GitHub, introducing PagedAttention and demonstrating 2–4× throughput improvements over existing serving systems. Simultaneously, Arthur Mensch and Timothée Lacroix — former DeepMind and Meta researchers — found Mistral AI in Paris with the mission of building the world’s best small, efficient open-source language models.
June 14, 2023
European Parliament votes to advance AI Act
The European Parliament votes 499 to 28 to advance its version of the AI Act to trilogue negotiations with the European Council and Commission. The Parliament’s text bans real-time biometric surveillance in public spaces (with narrow exceptions), mandates transparency for general-purpose AI systems like GPT-4, and imposes fines of up to 3% of global annual revenue for violations.
European Union AI Act illustration
The European Parliament advances the AI Act on June 14, 2023, with a 499–28 majority. The Act classifies AI systems by risk level and requires transparency, auditability, and human oversight for high-risk applications. It represents the first comprehensive binding AI regulation anywhere in the world. (Illustration, CC0)

5. Key Voices & Thought Leaders

Overall, five individuals shape the public conversation about AI and technology in Q2 2023 with unusual clarity and influence. In fact, they represent a spectrum of perspectives — from safety concern to technical optimism, from regulatory engagement to philosophical reflection — and together they map the intellectual terrain of the quarter.

Sam Altman — OpenAI CEO

Sam Altman occupies an unusual position in Q2 2023: he is simultaneously the person most responsible for accelerating AI deployment at scale and the most prominent voice calling for regulation of his own industry. Notably, his May 16 Senate testimony is a masterclass in political positioning. He acknowledges risks clearly enough to be credible on safety. At the same time, he frames proposals such as licensing regimes and a federal AI agency. By comparison, a large, well-resourced company like OpenAI is better positioned to comply with those than smaller competitors.

Whatever one’s view of the strategic dynamics, Altman’s testimony shifts the Overton window in Washington. Before May 2023, the dominant DC posture on AI is “wait and see.” After Altman’s appearance — and the bipartisan agreement it generates — the question is no longer whether to regulate but how. As a result, this creates a faster regulatory timeline than the AI industry had anticipated. In addition, forces legal and compliance teams at every major AI company to accelerate internal governance work.

In addition, Altman tours Europe in June 2023, meeting with EU commissioners and national government officials. His public statements during this tour at times suggest OpenAI might leave Europe. That would follow if the AI Act’s requirements prove too burdensome. He then quickly walks those comments back. Those statements illuminate the tension between global AI deployment ambitions and local regulatory authority. That tension defines the next several years of AI governance negotiation.

Dario Amodei — Anthropic CEO

Dario Amodei co-founds Anthropic in 2021 after leaving OpenAI, motivated by the belief that AI safety research must be embedded in the organisations building the most capable models, not conducted at arm’s length in academic labs. Q2 2023 is a validation quarter for this thesis. For example, the Claude API launch carries a 100,000-token context window and Constitutional AI training methodology. Constitutional AI teaches the model to reason about its own outputs against a set of principles. The launch demonstrates that safety-focused design choices can coexist with capability, and potentially enhance it.

Constitutional AI, Anthropic’s training approach, uses AI feedback rather than exclusively human feedback to align model behaviour. The model is first prompted to critique its own outputs against a written constitution of principles, then trained on those critiques. The approach scales better than pure human labelling and produces models that are notably more consistent in declining harmful requests while remaining helpful for legitimate use cases.

Notably, Google’s $300M+ strategic investment in Anthropic, confirmed during Q2 2023, is significant for two reasons. First, it validates the safety-first framing at a commercial level — Anthropic is fundable on the basis of its safety credentials as much as its capabilities. Second, it signals that the compute and distribution advantages of a hyperscaler partnership are available to companies outside the OpenAI-Microsoft alliance, reshaping the competitive landscape for the remainder of the decade.

Andrej Karpathy — Researcher & Educator

Andrej Karpathy returns to OpenAI in May 2023 — he had previously left to join Tesla as Senior Director of AI — and immediately becomes one of the most influential technical educators in the LLM space. His YouTube channel, where he delivers multi-hour lectures building neural networks and LLMs from mathematical first principles, accumulates millions of views. The “Let’s build GPT” video provides a generation of software engineers with an accessible but rigorous path from gradient descent to transformer attention.

Karpathy’s pedagogical approach — deriving everything from scratch, showing the code, testing hypotheses interactively — models the kind of deep understanding that many engineers working with LLMs in Q2 2023 feel they lack. In practice, there is a growing gap between people who can call the OpenAI API and people who understand what happens inside the model when they do. Overall, Karpathy’s work narrows that gap more effectively than almost any other resource in this period.

Beyond the videos, Karpathy popularises terminology — “vibe coding,” the “software 2.0” paradigm — that shapes how the engineering community thinks about the transition from hand-coded logic to learned models. His ability to translate cutting-edge research into accessible intuition makes him unusually valuable during a period when the research-to-deployment cycle has compressed from years to months.

Simon Willison — Developer & Blogger

Simon Willison — co-creator of Django and current maintainer of the Datasette project — is one of the most consistent, practical, and widely-read voices on LLMs throughout Q2 2023. For example, his blog publishes near-daily notes on new models, tools, and techniques, written from the perspective of an experienced developer experimenting seriously with each new capability. The entries are dense with actual code, actual outputs, and actual failures. That is a reliable antidote to the breathless press coverage that surrounds every model release.

Willison’s particular contribution to Q2 2023 is his systematic documentation of prompt injection attacks — a class of vulnerability in which adversarial text embedded in documents, web pages, or user inputs hijacks an LLM’s instruction-following behaviour. For instance, his writing on this topic includes detailed proof-of-concept demonstrations. It brings a real security concern to the attention of a much wider engineering audience. It also forces early-stage LLM application developers to think about input validation and sandboxing. They have not encountered those concerns before.

More broadly, Willison occupies a useful role as the “pragmatic practitioner” in a conversation dominated by either research abstractions or product marketing. In practice, his work reflects how LLMs actually behave when deployed in real applications. This is frequently different from both the optimistic capability claims of vendors and the catastrophist predictions of critics. Overall, his influence in shaping the technical culture around LLM tooling in Q2 2023 is significant.

Yann LeCun — Meta Chief AI Scientist

Yann LeCun — Turing Award winner, inventor of convolutional neural networks, and Meta’s Chief AI Scientist — is the most prominent dissenter from the consensus AI-risk narrative that solidifies during Q2 2023. Against the backdrop of the extinction-risk statement and Geoffrey Hinton’s departure from Google, LeCun argues publicly and persistently that autoregressive language models are not on a path to general intelligence, that the doom warnings are overblown. In addition, he argues that the real risks of current AI are bias, misinformation, and corporate power concentration.

LeCun articulates an alternative research agenda in a position paper titled “A Path Towards Autonomous Machine Intelligence”. It proposes a new architecture for world models. That architecture is based on energy-based models, self-supervised learning, and hierarchical planning. It is a fundamentally different approach from the LLM paradigm. His architecture proposal may or may not prove correct. His conceptual argument is that the current generation of LLMs is missing critical components. Those components are needed for genuine understanding and agency. That argument is technically substantive. It provides a valuable counterweight to capability extrapolations from scaling curves.

LeCun is prolifically present on LinkedIn and Twitter in Q2 2023. There he engages directly and often combatively with critics. That makes him a focal point for debates about AI timelines and safety research priorities. It also makes him central to debates about the relationship between academic and industrial AI. His combination of technical authority, institutional position at a company actively releasing open-weight models, and rhetorical willingness to argue gives his voice an influence that shapes research agendas and funding conversations well beyond the quarter.

6. Trend Synthesis

Viewed from the vantage point of June 30, 2023, Q2 is not simply a busy quarter for AI news. It is a quarter in which several previously separate threads converge into a new configuration. Those threads are research capability, production engineering, regulatory pressure, and public awareness. The new configuration defines the industry’s trajectory for at least two to three years.

Trend 1: The Inference Crisis Drives Open-Source Infrastructure

Nvidia’s May earnings call reveals compute scarcity. That scarcity puts cost pressure on every team running LLMs. Together they create an urgent demand for inference efficiency, and the open-source community meets it with remarkable speed. vLLM’s PagedAttention, llama.cpp’s quantisation, and a dozen smaller optimisation libraries work together. Over the course of Q2 they reduce the cost of serving capable language models by an order of magnitude. This efficiency dividend is what makes the democratisation of AI in 2023 financially feasible at the application layer. It enables thousands of startups and internal tools. Those tools would otherwise be too expensive to run continuously.

Trend 2: The Context Window as the New Battleground

Anthropic’s 100,000-token context window is the single most strategically significant technical announcement of the quarter. It reframes the competition between AI providers. Previously the question was which model is smarter. Now the question is which model can hold more of the world in its head at once. Long context enables document Q&A, multi-file code understanding, meeting transcript analysis, and legal document review. None of this needs the chunking and retrieval scaffolding that shorter-context models require. Every major model provider responds with their own context expansion plans in the months following. The race for longer, more efficient context processing — which continues through 2024 — begins here.

Regulation moves from principle to procedure

Trend 3: Regulatory Crystallisation Changes the Strategic Calculus

The EU AI Act’s parliamentary vote and Altman’s Senate testimony together represent a shift from regulatory possibility to regulatory probability. By the end of Q2, it is no longer speculative to plan for binding AI regulation in both the EU and, eventually, the United States. This changes the strategic calculus for AI companies in concrete ways. Compliance cost becomes a real budget line. Interpretability and auditability move from research curiosities to product requirements. In addition, the legal liability associated with AI outputs becomes a primary concern for enterprise customers. Some companies and open-source projects build these properties in from the start, rather than bolting them on post-hoc. They hold a durable competitive advantage.

These three trends are mutually reinforcing. Inference efficiency makes AI deployment economically viable at scale. Long context makes AI outputs more reliable and useful for complex tasks. Regulatory clarity creates the accountability structures that enterprise customers need before they will commit to AI-dependent workflows. Together, they describe the contours of the production AI era that Q2 2023 inaugurates.

Who is driving progress, and what it means in practice

One further observation: the diversity of the organisations driving progress this quarter is unprecedented. Q2 2023 is not a story about one dominant player. Google, Microsoft, Anthropic, OpenAI, Meta, and Apple each make significant moves in different parts of the stack. The UC Berkeley Systems Lab, Hugging Face, ServiceNow, and independent developers produce infrastructure and models of their own. Those tools match or exceed proprietary quality in several dimensions. Regulatory bodies in Europe and the United States assert their authority simultaneously. This multi-actor dynamic is healthier and more durable than the winner-takes-all narratives that sometimes dominate AI commentary. In addition, it suggests that the AI ecosystem emerging from 2023 is structurally more competitive and diverse than the internet platform economy that preceded it.

For practitioners, the practical implication is straightforward. The Q2 2023 tool stack represents a coherent, production-capable open-source AI platform. That stack includes vLLM for serving, llama.cpp for local inference, and AutoGPT-style agents for task automation. It also includes StarCoder for code generation, SAM for vision, and Guidance for structured output. Some teams master this stack in mid-2023. They enter the second half of the year with a significant capability and cost advantage. That advantage is over teams still dependent on a single proprietary API.

Key Insight — Retrieval Quality Beats Model Choice

Retrieval-augmented generation becomes the default enterprise pattern. Most observed quality differences then trace back to chunking, embedding choice, and ranking. They do not trace back to which frontier model sits at the end of the pipeline. The budget implication is uncomfortable but consistent. Money spent on data preparation and retrieval evaluation returns more than money spent moving up a model tier.

7. Summary

Q2 2023 is, in retrospect, the quarter in which generative AI crosses the threshold from consumer novelty to production infrastructure. The crossing is marked not by a single dramatic event but by the accumulation of engineering choices. Those choices include PagedAttention for efficient serving and Constitutional AI for safer alignment. They also include 100K-token context for longer reasoning and CPU-friendly quantisation for accessible deployment. Collectively they lower the barrier to production LLM use by an order of magnitude. The open-source community responds to both the inspiration of new capabilities and the economic pressure of compute scarcity. In three months it does what might have taken three years in a less urgent environment.

The institutional landscape reshapes itself with equal speed. Google’s I/O pivot to AI-everywhere is the most comprehensive and credible reorientation of a major technology company’s product strategy since Microsoft’s mid-1990s “Internet tidal wave” memo. Apple’s Vision Pro announcement at WWDC is shipping months away. Even so, it establishes spatial computing as the next platform cycle. It also forces every developer to think about interface paradigms beyond the rectangular screen. Nvidia’s earnings shock crystallises what practitioners have long suspected: the GPU is the limiting resource of the AI era. In addition, the company that manufactures it is the decade’s most strategically positioned supplier.

The regulatory picture and the voices of the quarter

The regulatory picture that emerges from Q2 2023 is more complex and more consequential than most AI practitioners anticipated at the quarter’s start. The EU AI Act’s parliamentary advance combines with the US Senate hearing on AI. Together they establish the basic parameters of the governance debate. That debate occupies legislators and lobbyists for the next several years. It asks how to balance safety and innovation. It asks how to allocate liability for AI-generated harm. Finally, it asks how to preserve the benefits of open-source development while imposing accountability on the highest-risk systems. None of these questions resolves in Q2 2023, but the terms of debate become substantially clearer.

Five voices represent the intellectual range of the quarter: Altman, Amodei, Karpathy, Willison, and LeCun. Their contributions span regulatory engagement, safety-first commercialisation, technical pedagogy, practitioner pragmatism, and architectural scepticism. Together they describe a community that is simultaneously excited about what it is building and uncertain about its consequences. That community is also increasingly serious about the responsibility that comes with deploying general-purpose reasoning systems at scale. That combination of excitement, uncertainty, and responsibility is the defining emotional signature of Q2 2023.

Where Q2 2023 sits historically

For the historian of technology, Q2 2023 occupies a familiar structural position. The same position followed the Netscape IPO in 1995 and the launch of the iPhone developer SDK in 2008. It is the moment when a new capability paradigm stops being a research question. It starts being an engineering problem. Some practitioners engage seriously with the tools and ideas of this quarter. They build with vLLM and llama.cpp. In addition, they study Constitutional AI and prompt injection. They watch Karpathy’s lectures and read Willison’s blog. Those practitioners are acquiring skills and intuitions that compound in value for the rest of the decade. The ground has moved. Everything built on top of it is now being rebuilt from scratch.

Sources

  1. OpenAI. “Introducing ChatGPT iOS App.” OpenAI Blog, May 2023. openai.com/blog
  2. Google. “Google I/O 2023 Keynote — Sundar Pichai.” Google Blog, May 10, 2023. blog.google
  3. Kwon, Woosuk et al. “Efficient Memory Management for Large Language Model Serving with PagedAttention.” arXiv:2309.06180, September 2023 (SOSP 2023). arxiv.org/abs/2309.06180
  4. Li, Raymond et al. (BigCode Project). “StarCoder: May the Source Be With You!” Hugging Face Blog, May 2023. huggingface.co/blog/starcoder
  5. Kirillov, Alexander et al. “Segment Anything.” Meta AI Research, April 2023. github.com/facebookresearch/segment-anything
  6. Richards, Toran Bruce. “AutoGPT — An Autonomous GPT-4 Experiment.” GitHub, April 2023. github.com/Significant-Gravitas/AutoGPT
  7. Gerganov, Georgi. “llama.cpp.” GitHub, 2023. github.com/ggerganov/llama.cpp
  8. Microsoft. “Microsoft Guidance Library.” GitHub, April 2023. github.com/microsoft/guidance
  9. Anthropic. “Claude — A Constitutional AI Approach.” Anthropic Blog, 2023. anthropic.com/research
  10. Apple. “Apple Introduces Apple Vision Pro.” Apple Newsroom, June 5, 2023. apple.com/newsroom
  11. European Parliament. “Artificial Intelligence Act: MEPs Adopt Landmark Law.” Press Release, June 14, 2023. europarl.europa.eu
  12. Center for AI Safety. “Statement on AI Risk.” May 30, 2023. safe.ai
  13. Nvidia Corporation. “NVIDIA Announces Financial Results for First Quarter Fiscal 2024.” May 24, 2023. investor.nvidia.com
  14. Hinton, Geoffrey. “The Godfather of A.I. Leaves Google and Warns of Danger Ahead.” New York Times, May 1, 2023.
  15. Willison, Simon. “Prompt injection attacks against GPT-3.” simonwillison.net, 2023. simonwillison.net
  16. LeCun, Yann. “A Path Towards Autonomous Machine Intelligence.” Meta AI Research, June 2022 (revised 2023). ai.meta.com/research
  17. Wikipedia contributors. “ChatGPT.” Wikipedia, accessed 2026. en.wikipedia.org/wiki/ChatGPT
  18. Wikipedia contributors. “Google I/O.” Wikipedia, accessed 2026. en.wikipedia.org/wiki/Google_I/O

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 *