# Perplexity 发布 Computer for Counsel：面向法律工作流的多模型智能体层

- 来源：MarkTechPost（RSS）
- 作者：Michal Sutter
- 发布时间：2026-06-27 03:31
- AIHOT 分数：65
- AIHOT 链接：https://aihot.virxact.com/items/cmqvbzwq80bttsl80jb6k18ws
- 原文链接：https://www.marktechpost.com/2026/06/26/perplexity-launches-computer-for-counsel-a-multi-model-agentic-layer-for-legal-workflows

## AI 摘要

Perplexity 于 2026 年 6 月 24 日面向 Enterprise 和 Max 订阅用户推出 Computer for Counsel。该系统将法律任务自动拆解为子任务，并路由 20+ 个前沿 AI 模型分别处理研究、推理、合同等工作。数据层通过 MCP 协议连接 Midpage（美国案例法 + 引用）、Deel、LegalZoom 等专业法律源，以及 Docusign、NetDocuments、Box、Microsoft 365、Google Workspace 和 400+ 其他工具。每个输出均链接至原始来源，律师可一键核验。Computer for Counsel 并非替代 Westlaw 等数据库，而是叠加其上的研究、起草与工作流层。

## 正文

Perplexity launched Computer for Counsel. It is an agentic AI system built for legal teams. The product extends Perplexity Computer, the company’s LLM-agnostic agentic system. It is available now to Perplexity Enterprise and Max subscribers.

Lawyers lose hours to administrative work. Computer for Counsel targets that work directly. Nearly 75% of lawyers call administrative tasks a major time challenge, a Thomson Reuters survey found. The story is mostly architectural. It is an orchestration layer wired into the tools lawyers already use.

TL;DR

Perplexity launched Computer for Counsel on June 24, 2026, for Enterprise and Max subscribers.

It routes 20+ frontier AI models per subtask, with no single-vendor lock-in.

Premium sources include Midpage (case law + citator), Deel, and LegalZoom; 400+ tools connect via MCP.

Every output links back to its source, so lawyers verify each citation before use.

It is a workflow layer, not a Westlaw replacement; good-law checks still depend on Midpage.

What is Computer for Counsel?

It is not a new legal research database. Perplexity is explicitly not trying to replace Westlaw, LexisNexis, or Bloomberg Law. Instead, it sits as a research, drafting, and workflow layer. That layer reasons over the open web, firm systems, and specialized legal sources.

The mechanics are agentic. The system decomposes a legal task into subtasks. It routes each subtask to a model and a data source. It then assembles the results into a brief, memo, or deal summary. Every output links back to its source. Attorneys verify a citation in seconds before it enters client work. Judgment and strategy stay with the lawyer.

The Multi-Model Orchestration Layer

Computer is powered by 20+ frontier AI models. It selects the best model for each subtask automatically. Research, reasoning, and contract work can each use a different model. Perplexity keeps the model pool current through ongoing evaluation. For legal teams, this removes the pressure to bet on one AI vendor.

Connectors run on the Model Context Protocol (MCP). MCP is an open standard for linking AI systems to external tools and data. Administrators can also install custom MCP connectors for internal systems.

The Data Layer: Sources and Connectors

Premium legal sources ground the answers. The connector list spans research, contracts, and document management.

Source / ConnectorTypeWhat it providesAccess at launch

MidpageLegal researchUS case law (federal + state appellate), statutes, regulations, a citator to check if a case is still good lawUncapped for all Computer users; activate with @midpage

DeelCompliance dataWorker classification, EOR rules, immigration, cross-border payroll across 150+ countriesFree, limited

LegalZoomContract templatesCustomer agreements, employment contracts, NDAs via a template flowLimited, coming soon, exclusive to Perplexity

DocusignContracts / e-signatureAgreement history and automated contract workflowsAvailable

NetDocuments / BoxDocument managementSecure file systems and a legal context graphAvailable

DeepJudgeInstitutional intelligenceGrounds outputs in a firm’s prior work and accepted positionsAvailable

Clio (Vincent)Legal researchCited answers across 1B+ legal sources in 100+ jurisdictionsComing soon

Carta / IroncladEquity / contractingCap tables, 409A data; AI contract repository searchCarta available; Ironclad coming soon

App Connectors also reach Microsoft 365, Google Workspace, and 400+ other tools. Inside Microsoft 365, Computer drafts in Word and retrieves files from SharePoint. It references context from Outlook or Teams conversations.

How Legal Teams are Using It

Three current workflows show the agentic pattern in practice:

Third-party NDA intake: Computer reviews third-party NDAs for red flags. It fills in entity and signatory information. It prepares clean copies. It routes them for approval and signature via Docusign.

Regulatory monitoring: Computer builds a shareable dashboard for US state privacy and adtech laws. It shows which states have laws in effect. It cites Midpage for relevant cases.

Case research with citation review: Computer researches non-compete enforceability after the FTC’s 2024 ban. It summarizes key cases and flags unsettled ones. It exports a PDF with citations.

Interactive Explainer

For Developers: The Cited-Search Primitive

Computer for Counsel ships as a product, not an SDK. But it builds on Perplexity’s cited search. That primitive is exposed publicly through the Sonar API. The API is OpenAI-compatible and returns sources with every answer. Domain filters let you restrict grounding to trusted sites, the way a lawyer would.

Copy CodeCopiedUse a different Browser

# Perplexity's cited search primitive — the foundation Computer for Counsel builds on.
# This is the public Sonar API, not the Computer for Counsel product itself.
import os, requests

resp = requests.post(
"https://api.perplexity.ai/chat/completions",
headers={"Authorization": f"Bearer {os.environ['PERPLEXITY_API_KEY']}"},
json={
"model": "sonar-pro",
"messages": [
{"role": "user",
"content": "Is a non-compete signed in California enforceable in 2026?"}
],
# Restrict grounding to trusted sources, the way a lawyer would.
"search_domain_filter": ["law.cornell.edu", "courtlistener.com", "ca.gov"],
},
timeout=60,
)
data = resp.json()
print(data["choices"][0]["message"]["content"]) # the answer
for url in data.get("citations", []): # every source, for verification
print("source:", url)

The pattern maps to the product. The model returns a grounded answer. The citations field returns the sources behind it. Computer for Counsel adds model routing, MCP connectors, and a review step on top. The lawyer still checks each cited claim before it ships.

How It Compares

Perplexity enters a crowded legal AI market. The positioning differs by design.

CapabilityComputer for CounselWestlaw / LexisNexisHarveyMicrosoft 365 Copilot

Primary roleWorkflow + research layerResearch databasePurpose-built legal platformProductivity assistant

Model strategy20+ models, auto-routedProprietary stackMulti-model, auto-routedMicrosoft + partner models

Good-law citatorVia MidpageNative (KeyCite / Shepard’s)Not its focusNo

Source-linked outputYes, every answerYesYesPartial

Reaches firm files400+ connectors via MCPLimitedConnectors + storageMicrosoft 365 + connectors

Trains on your dataNoNoNoPer tenant settings

Perplexity is not trying to out-Westlaw Westlaw. It targets the work before, around, and after formal research. Multi-model routing is no longer unique; Harvey routes across vendors too. The real differentiator is reach into the open web and everyday firm tools.

Strengths and Limitations

Strengths

Multi-model routing reduces lock-in to a single AI vendor.

Every output links to a source for one-click verification.

400+ MCP connectors put it inside tools lawyers already use.

Enterprise tier does not train on company data; connected files stay under firm control.

Early enterprise traction: at Gunderson Dettmer, 80% of lawyers actively use Perplexity Enterprise, with 35,000+ queries a month.

Limitations

It is not a standalone citator; good-law checks depend on Midpage coverage.

Several connectors, including Clio and Ironclad, are still listed as coming soon.

Lawyers must verify every citation; Perplexity faces unresolved data-sourcing lawsuits.

Web grounding can miss paywalled or unpublished opinions.
