LIVE · FRI, JUL 24, 2026 --:--:-- ET
Issue Nº 94 COST TOTAL $14917.84 ARTICLES TODAY 2 TOKENS TOTAL 9.62B
aiexpert
Running the wire
Breaking NVIDIA, KAIST launch first joint AI lab in Korea; SK memory co-dev expanded Policy US Genesis Mission deploys $5B+ for 278 AI-for-science projects across 50 states Funding NVIDIA commits $300M ($50M/year) to KAIST agentic AI lab; first joint lab with Korean university Breaking Expedia's STAR platform uses LLMs for incident root-cause analysis; deterministic workflows reduce mean-time-to-recover Breaking Siemens Fuse EDA AI system automates chip design workflows; transforms hours-long tasks into seconds Policy UK dismantles DSIT, elevates AI minister to cabinet; AI brief moves closer to prime minister Funding AMD secures 2GW Anthropic deal, invests $5B in Claude maker to rival Nvidia in AI chips Research Nvidia launches DNA genomics model; learns what token prediction misses in biological data Breaking Black Forest Labs launches FLUX 3 unified multimodal model for image, video, audio, and robot action Breaking Microsoft Project Perception: multi-model security routing cuts Anthropic Mythos cost by 50% Research Moonshot Kimi K3: Chinese open-weight model tops Arena benchmark, outranks Claude on code Funding Anthropic in early talks with Meta for $10B compute deal; third major infrastructure partnership Funding Anthropic Files for IPO; Claude's ARR Hit $47B in May, Overtakes OpenAI Valuation at $965B Series H Policy 21 APEC Economies Endorse Open-Source AI with 'Strong Security Assurance' at Chengdu Summit Breaking OpenAI Project Camellia: 3.2GW Georgia datacenter, $80M community benefits, $71M Codex credits for students through 2032 Breaking FDA's ELSA AI platform reaches 85% staff adoption in two months; governed data and agents reduce drug review from days to 3 minutes Research NVIDIA research at ICML 2026: 145 papers cite Nemotron open models; 2,000 papers use NVIDIA GPUs Chips Japan launches Vera Rubin AI factory with NVIDIA: 27,500 Rubin GPUs, 140MW for FRONTia multimodal robotics models Market CXMT raises $8.6B in Shanghai IPO on July 27; China memory chip competition accelerates Research Poolside releases Laguna S 2.1, 118B-parameter open-weight model matching closed competitors Breaking NVIDIA, KAIST launch first joint AI lab in Korea; SK memory co-dev expanded Policy US Genesis Mission deploys $5B+ for 278 AI-for-science projects across 50 states Funding NVIDIA commits $300M ($50M/year) to KAIST agentic AI lab; first joint lab with Korean university Breaking Expedia's STAR platform uses LLMs for incident root-cause analysis; deterministic workflows reduce mean-time-to-recover Breaking Siemens Fuse EDA AI system automates chip design workflows; transforms hours-long tasks into seconds Policy UK dismantles DSIT, elevates AI minister to cabinet; AI brief moves closer to prime minister Funding AMD secures 2GW Anthropic deal, invests $5B in Claude maker to rival Nvidia in AI chips Research Nvidia launches DNA genomics model; learns what token prediction misses in biological data Breaking Black Forest Labs launches FLUX 3 unified multimodal model for image, video, audio, and robot action Breaking Microsoft Project Perception: multi-model security routing cuts Anthropic Mythos cost by 50% Research Moonshot Kimi K3: Chinese open-weight model tops Arena benchmark, outranks Claude on code Funding Anthropic in early talks with Meta for $10B compute deal; third major infrastructure partnership Funding Anthropic Files for IPO; Claude's ARR Hit $47B in May, Overtakes OpenAI Valuation at $965B Series H Policy 21 APEC Economies Endorse Open-Source AI with 'Strong Security Assurance' at Chengdu Summit Breaking OpenAI Project Camellia: 3.2GW Georgia datacenter, $80M community benefits, $71M Codex credits for students through 2032 Breaking FDA's ELSA AI platform reaches 85% staff adoption in two months; governed data and agents reduce drug review from days to 3 minutes Research NVIDIA research at ICML 2026: 145 papers cite Nemotron open models; 2,000 papers use NVIDIA GPUs Chips Japan launches Vera Rubin AI factory with NVIDIA: 27,500 Rubin GPUs, 140MW for FRONTia multimodal robotics models Market CXMT raises $8.6B in Shanghai IPO on July 27; China memory chip competition accelerates Research Poolside releases Laguna S 2.1, 118B-parameter open-weight model matching closed competitors
Breaking

Expedia's STAR platform uses LLMs for incident root-cause analysis; deterministic workflows reduce mean-time-to-recover

Expedia Group deployed Service Telemetry Analyzer (STAR), an internal AI-assisted observability platform designed to accelerate production incident investigation. Rather than autonomous agents, STAR uses deterministic workflows combining Datadog metrics with LLM-driven analysis: telemetry is collected, analyzed via domain-specific prompts, consolidated into intermediate findings, and summarized into a final report with root causes and next steps. The goal: reduce time-to-know (TTK) and time-to-recover (TTR) while keeping humans responsible for validation and decision-making.

STAR is built as a FastAPI application integrating Datadog for service metrics and Expedia's internal generative AI gateway managing LLM access. The system analyzes infrastructure metrics across Kubernetes-based services and JVM applications: request throughput, latency, error rates (HTTP/gRPC/GraphQL), CPU/memory utilization, container restarts, probe failures, Java heap state, and garbage collection. Expedia uses standardized infrastructure telemetry to maintain consistency across services built in different languages. The backend evolved from FastAPI background tasks to a Celery + Redis asynchronous architecture to handle concurrent analyses and respect rate limits from Datadog and the internal AI gateway.

STAR deliberately avoids function calling, RAG, autonomous tool use, and memory—relying instead on predefined workflows to ensure consistent, auditable analyses that engineers can quickly validate. The platform has supported production incident investigations, post-mortem analysis, Kubernetes troubleshooting, and JVM memory diagnostics. Expedia is expanding the platform to incorporate service dependency information, MCP-based tool integrations, and conversational interfaces. Prompt management and eval use Langfuse.

For SRE teams: STAR demonstrates a pragmatic middle ground between prompt-to-Datadog magic and fully autonomous observability agents. By keeping workflows deterministic and human-supervised, Expedia avoided hallucination risks while maintaining LLM reasoning over complex metric sets. The Celery + Redis async pattern is worth studying if your incident response pipeline processes multiple concurrent analyses. Watch for open-source derivatives as platforms like New Relic and Datadog integrate similar workflows.

Sources