AITE-SAT: AI Solution Architecture Expert — Body of Knowledge Case Study 3 of 3
What happened
Harvey is a generative AI platform founded in 2022 by Winston Weinberg, a former securities litigator, and Gabriel Pereyra, a former DeepMind research engineer. The product is a domain-adapted assistant for lawyers, built in close collaboration with OpenAI and a set of early-adopting law firms. In February 2023, the British-founded international firm Allen & Overy — a Magic Circle firm with more than 3,500 lawyers across more than 40 offices — announced that, after a pilot with Harvey, it was rolling the product out to its lawyers firmwide1. In March 2023, PwC announced a partnership with Harvey that gave the firm’s legal-services business exclusive access to the product within the Big Four consulting cohort for a period2. In the years that followed, Harvey raised substantial venture funding and expanded to additional major law firms, while continuing to position itself as a domain-specialized product rather than a thin wrapper over a general-purpose model.
The public disclosure from Harvey, Allen & Overy, PwC, and subsequent press coverage reveals a deployment pattern that is instructive for the AITE-SAT practitioner. The product is a retrieval-augmented, workflow-integrated assistant for a highly regulated profession, deployed to expert users, under confidentiality obligations that are among the strongest in any industry, and in workflows that include drafting, research, review, and communication. The architecture choices required to make the product work at the scale of a global law firm are the teaching material.
The architecture posture inferred from the public record
Harvey has not published the full architecture. Its founders and customer firms have, however, spoken publicly in ways that support the following inferred posture:
A domain-adapted, retrieval-augmented generator, built on managed-API foundation models. Harvey has been consistently described in press and in founder interviews as using OpenAI’s foundation models as the generator, with Harvey’s domain adaptation — in the form of prompt engineering, retrieval corpus, and, for some deployments, fine-tuned variants — being the differentiator3. Harvey does not train its own foundation models. It builds the legal product on top of a commercial foundation.
Firm-specific data boundaries. A central concern in any law-firm deployment is that the firm’s privileged client matter cannot flow to a third-party provider in a way that violates confidentiality or privilege. Harvey’s architecture, as publicly described, addresses this through contractual posture with the foundation-model provider (no training on customer data), through tenant isolation (one firm’s data is not surfaced to another firm’s users), and through workflow design (the product is used on matter content the lawyer has chosen to share with the tool, within the firm’s own decisions about data handling).
Expert users with documented limitations. Harvey’s users are lawyers. Lawyers are licensed professionals who are accountable for the advice they give, bound by professional-conduct obligations, and trained to verify the basis of any statement they sign. Harvey’s public positioning consistently places the lawyer as the responsible party and the product as a research-and-drafting assistant. The product is used for tasks — drafting a first pass of a memo, reviewing a long document, summarizing deal precedent — whose output is reviewed by the lawyer before it reaches the client or the court.
Workflow integration, not just chat. A legal product that was only a chat interface would have limited adoption. Harvey’s public product includes integrations with document-review flows, research flows, drafting flows, and matter-management systems. The architecture wraps the LLM in workflow context — the matter, the jurisdiction, the document type, the deal phase — and uses that context to shape the retrieval and the prompt.
An evaluation practice tuned to legal precision. Legal content has a distinctive failure mode: a fabricated case citation. The ROSS Intelligence pattern and, more publicly, the Mata v. Avianca incident in 2023 — where a New York attorney filed a brief with cases that did not exist, generated by a general-purpose chatbot that the attorney had used without verification4 — became the cautionary reference in the legal profession. Harvey’s architecture, as publicly discussed, treats citation validity as a first-order requirement and builds the retrieval and grounding to serve citation-verifiable outputs. The evaluation practice is not a generic RAG-faithfulness metric; it is a legal-profession-tailored fidelity metric.
The architecture lessons that generalize
Five lessons from the Harvey pattern generalize to analogous expert-user, high-stakes, regulated-profession deployments.
1. The professional user is a hard constraint, not a convenience. Harvey’s design works because lawyers verify its output. If Harvey had been designed for non-lawyer users — a chatbot that answers legal questions to the public — the architecture required would be fundamentally different, the liability posture would be fundamentally different, and the product-market fit would be different. Architects designing for expert users have license to ship a product whose output requires expert review; architects designing for lay users do not. The Harvey case is a clean illustration of how the user’s expertise is an architecture component, not a marketing fact.
2. Tenant isolation is not a feature. It is the foundation. Every law firm on Harvey is a tenant. The firm’s data, its prompts, its retrieval corpus, its usage patterns, its model outputs — none of these may be visible to another firm. The architecture places tenant isolation at the earliest possible layer (before retrieval, before prompt assembly, before any model call) and enforces it at every subsequent layer. A single tenant-isolation bug in a legal product is a commercial-ending event. The architecture investment is correspondingly high: tenant-scoped indexes, tenant-scoped keys, tenant-scoped logs, tenant-scoped evaluation.
3. Citation validity is a first-class architectural concern. The Mata v. Avianca incident was a non-Harvey event, but it set the market condition. For a legal product to be taken seriously, its generated citations must be verifiable, and its architecture must make fabricated citations detectable before they reach the user. The practitioner should assume that a legal-adjacent RAG product’s retrieval plus grounding plus citation-verification forms the critical path; the generator is the supporting component. Architects inheriting a legal-adjacent brief who treat citation validity as a downstream QA concern, rather than a retrieval and generation design constraint, will produce a product that cannot ship.
4. Workflow integration is where value is won or lost. The commercial difference between “a chat interface to an LLM over legal documents” and “an assistant that drafts the second-stage memo in a deal lifecycle, given the deal’s context, the client’s preferences, and the firm’s style guide, inside the drafting tool the lawyer already uses” is substantial. Harvey’s architecture invests in the workflow integration — matter-aware context, tool-aware output formats, document-platform integrations — and in doing so makes itself indispensable in ways a generic chat product could not. Architects designing enterprise AI products should budget more engineering hours for workflow integration than for model choice; the model will improve with the frontier, the workflow integration is what the user pays for.
5. The commercial posture has a shelf life. Harvey’s 2023 partnerships with Allen & Overy and PwC were landmark commercial moves. They were also time-bound. The legal-AI market has moved on: peer products have launched, Magic Circle and US-based firms have contracted with multiple vendors, and the exclusivity posture of 2023 has largely dissolved. Architects reading the case in 2026 should note that the commercial posture reflected in the 2023 disclosures is not the permanent state of the market. The architecture lessons — tenant isolation, expert users, citation validity, workflow integration — are durable; the specific commercial arrangements are not.
What the case does not settle
The case does not settle the long-term economics of domain-specialized legal AI versus general-purpose models with a firm-built integration. Some observers have argued that, as foundation models improve, the need for a vendor like Harvey diminishes and law firms will build the integration in-house. Others argue that Harvey’s domain depth — the legal evaluation harness, the retrieval corpus, the workflow integrations — is a moat that firms cannot replicate at cost. The architect reading the case should note the debate rather than resolve it, and apply the architectural lessons above to whichever build-versus-buy decision their own firm is facing.
Discussion questions
These questions are for classroom use or peer discussion. They invite the practitioner to exercise the credential’s vocabulary on real evidence.
- The build-versus-buy decision. A 200-lawyer firm is evaluating Harvey against a build-it-yourself alternative. Sketch the ADR (architecture decision record) that would support each choice. Name the conditions under which each choice is defensible. The exercise is about reasoning, not preferred answer.
- The citation validity architecture. Describe, in architecture terms, the components required to guarantee that every citation in a Harvey-style assistant’s output is verifiable before the output is shown to the lawyer. Name the retrieval invariant, the generation constraint, and the evaluation check.
- The tenant-isolation test. Design a property-based test that verifies tenant isolation end-to-end in a legal-assistant product. Name the inputs, the property under test, and the failure signature.
- The lay-user extension. Suppose the firm considers extending Harvey-like capabilities to a client-facing product (a self-service tool for clients to ask questions about their matter). Name the architecture changes required, from least to most disruptive. Name at least three features that would need to be added, and at least two features that would need to be removed.
© FlowRidge.io — COMPEL AI Transformation Methodology. All rights reserved.
Footnotes
-
Allen & Overy, “A&O announces exclusive launch of Harvey to its lawyers firm-wide after pilot,” press release, February 15, 2023. https://www.allenovery.com/en-gb/global/news-and-insights/news/ao-announces-exclusive-launch-of-harvey-ai — accessed 2026-04-19. ↩
-
PwC, “PwC announces strategic alliance with Harvey, positioning PwC’s legal business at the forefront of AI adoption,” press release, March 15, 2023. https://www.pwc.com/gx/en/news-room/press-releases/2023/pwc-announces-strategic-alliance-with-harvey.html — accessed 2026-04-19. ↩
-
OpenAI, “Harvey partners with OpenAI to build a custom-trained model for legal professionals,” customer story, 2023. https://openai.com/index/harvey/ — accessed 2026-04-19. ↩
-
Mata v. Avianca, Inc., 1:22-cv-01461, U.S. District Court for the Southern District of New York, Memorandum Opinion and Order dated June 22, 2023. U.S. Courts PACER public record; widely reported in Reuters and the New York Times. https://www.reuters.com/legal/transactional/lawyers-have-real-bad-day-court-after-citing-fake-cases-made-up-by-chatgpt-2023-06-22/ — accessed 2026-04-19. ↩