Arize AI

Arize AI is an AI observability company founded by Aparna Dhinakaran and based in Berkeley, CA. It is a Y Combinator alum. Website: arize.com.

Key people: Aparna Dhinakaran (@aparnadhinak) — founder, posts about agents and evals.

Alyx: Arize’s In-Product Agent

Alyx is Arize’s internal agent, built for data exploration (not code editing). Despite being in a different domain from the four coding harnesses analyzed, it independently converged on the same ../concepts/agent-context-management.md patterns:

PatternAlyx implementation
Tool result cap10,000 tokens
Idempotent call deduplicationPrunes repeated previews from conversation history, keeps only the most recent
Large payload splittingBinary search to find largest dataset slice that fits; JSON → LLM-visible preview + full server-side copy the model can drill into via jq
TruncationHead+tail with back-references to full content
Token pressure estimationchar/4 heuristic
Checkpoint trigger50,000 tokens — model writes its own state summary before history is pruned
Subagent isolationSame isolation pattern as the four coding harnesses

This convergence — a data exploration agent arriving at the same context management playbook as four coding agents — is cited as evidence that these patterns are not domain-specific but fundamental to agent harness design.

相关页面

aparna-dhinakaran, scale-ai