Tagged articles

LLM

2584 articles · Page 5 of 26
Machine Learning Algorithms & Natural Language Processing
Machine Learning Algorithms & Natural Language Processing
May 28, 2026 · Artificial Intelligence

Solo Development of GQLA: Challenging DeepSeek’s MLA and DSA

This article presents GQLA, a single‑author variant of MLA that eliminates three hardware‑related drawbacks of MLA, demonstrates how it achieves balanced compute‑memory performance on both high‑end H100 and more modest H20 GPUs, and details conversion methods (TransGQLA) and sparse extensions with concrete benchmark results.

GQLALLMMLA
0 likes · 16 min read
Solo Development of GQLA: Challenging DeepSeek’s MLA and DSA
ZhiKe AI
ZhiKe AI
May 28, 2026 · Artificial Intelligence

Why Your LLM Skill Gets Ignored and 5 Proven Design Patterns to Make Agents Work

Even after spending hours crafting a Skill, many LLM agents ignore it, leading to failed automation; this article analyzes why and presents five validated design patterns—linear flow, decision tree with lazy loading, iterative loops, baton passing, and multi‑stage checkpoints—plus concrete examples and a minimal Skill template to ensure reliable, production‑grade agent behavior.

AgentDesign PatternsLLM
0 likes · 12 min read
Why Your LLM Skill Gets Ignored and 5 Proven Design Patterns to Make Agents Work
DeepHub IMBA
DeepHub IMBA
May 28, 2026 · Artificial Intelligence

AutoGen Multi‑Agent Demo: Coder, Reviewer, and Executor Automatically Complete a Code Review

The article explains how Microsoft’s AutoGen framework enables a Planner‑Executor‑Critic loop and a three‑agent GroupChat workflow, providing step‑by‑step Python code that configures AssistantAgent, UserProxyAgent, and ReviewerAgent to generate, review, and execute code automatically, and discusses the system’s advantages, scalability, and real‑world deployments.

AutoGenGroupChatLLM
0 likes · 13 min read
AutoGen Multi‑Agent Demo: Coder, Reviewer, and Executor Automatically Complete a Code Review
Machine Heart
Machine Heart
May 28, 2026 · Artificial Intelligence

Why Google’s AI Can’t Count the Letters in Its Own Name

The article examines why the newly AI‑powered Google Search fails at simple letter‑count questions like “how many P’s are in Google,” tracing the issue to token‑based language models, illustrating it with examples, and discussing both short‑term prompts and long‑term architectural solutions such as byte‑level models.

Google SearchJagged IntelligenceLLM
0 likes · 13 min read
Why Google’s AI Can’t Count the Letters in Its Own Name
James' Growth Diary
James' Growth Diary
May 28, 2026 · Artificial Intelligence

Mastering Prompt Engineering: Few‑Shot, Chain‑of‑Thought, and Self‑Consistency Techniques

This article breaks down three core prompt‑engineering techniques—Few‑Shot prompting for output format stability, Chain‑of‑Thought for multi‑step reasoning, and Self‑Consistency for answer robustness—showing when to use each, how to combine them in LangChain, and providing concrete code examples, performance data, and common pitfalls.

Chain-of-ThoughtFew-shotLLM
0 likes · 30 min read
Mastering Prompt Engineering: Few‑Shot, Chain‑of‑Thought, and Self‑Consistency Techniques
Architect's Guide
Architect's Guide
May 28, 2026 · Artificial Intelligence

How Claude Code Prompt Caching Cuts AI Costs by Up to 90% and Boosts Efficiency

Prompt Caching in Anthropic's Claude Code replaces repeated processing of identical prompt prefixes with a prefix‑hash cache, slashing input‑token costs by up to 90%, reducing first‑token latency by 79%, and improving throughput, while preserving model output exactly as if no cache were used.

AI engineeringCache MetricsCache invalidation
0 likes · 30 min read
How Claude Code Prompt Caching Cuts AI Costs by Up to 90% and Boosts Efficiency
Big Data Tech Team
Big Data Tech Team
May 28, 2026 · Artificial Intelligence

Boosting Data Warehouse Productivity with AI: Practical Strategies and Use Cases

The article outlines how large language models can automate repetitive data‑warehouse tasks—from natural‑language SQL generation and standardized modeling to automated code review, metadata management, multimodal data handling, and self‑service analytics—presenting a three‑phase implementation roadmap for measurable efficiency gains.

AIChatBIDataOps
0 likes · 9 min read
Boosting Data Warehouse Productivity with AI: Practical Strategies and Use Cases
SuanNi
SuanNi
May 27, 2026 · Artificial Intelligence

Can Agent Skills Be Trained Like Neural Networks? SkillOpt Demonstrates Success

SkillOpt treats an agent’s Skill document as a trainable external state, applying classic deep‑learning tools such as epochs, batch size, learning rate and validation gating, and in experiments across 52 benchmark units it lifts GPT‑5.5 performance by an average of 23.5 points while enabling cross‑model and cross‑environment transfer with no additional inference cost.

Agent SkillDeep Learning OptimizationLLM
0 likes · 11 min read
Can Agent Skills Be Trained Like Neural Networks? SkillOpt Demonstrates Success
Data Party THU
Data Party THU
May 27, 2026 · Artificial Intelligence

How Bengio’s TBA Decouples Sampling and Learning to Speed Up LLM RL by 50×

The article explains how large‑language‑model post‑training suffers from rollout bottlenecks, introduces the Trajectory Balance with Asynchrony (TBA) framework that separates a Searcher from a Trainer, reuses off‑policy trajectories via a Trajectory Balance objective, and demonstrates up to 50× speed‑ups while preserving or improving performance on math reasoning, preference fine‑tuning, and automated red‑team tasks.

Asynchronous TrainingLLMLarge Models
0 likes · 9 min read
How Bengio’s TBA Decouples Sampling and Learning to Speed Up LLM RL by 50×
Ximalaya Technology Team
Ximalaya Technology Team
May 27, 2026 · Artificial Intelligence

Ximalaya’s LLM‑Powered Interactive Recommendation System: Architecture and Results

The article details Ximalaya’s three‑layer interactive recommendation architecture—PBox for parameter control, an LLM‑driven Agent for intent understanding, and the iSUG interface—showing how natural‑language‑based parameter tuning shifts the paradigm from one‑way push to two‑way dialogue and significantly improves recommendation efficiency and user retention.

FunctionCallingLLMXimalaya
0 likes · 17 min read
Ximalaya’s LLM‑Powered Interactive Recommendation System: Architecture and Results
Bilibili Tech
Bilibili Tech
May 27, 2026 · Artificial Intelligence

How to Use A2UI + Vue to Enable Large Models to Generate Interactive Interfaces

This article details how a unified AI assistant framework built for Bilibili's advertising business evolves from plain text output to generating fully interactive UI by leveraging Google’s A2UI protocol, a custom Vue renderer, double‑validation mechanisms, SSE dual‑channel streaming, and a wrapper component system, providing concrete examples and architectural diagrams.

A2UIAgentGenerative UI
0 likes · 17 min read
How to Use A2UI + Vue to Enable Large Models to Generate Interactive Interfaces
James' Growth Diary
James' Growth Diary
May 27, 2026 · Operations

Detecting Agent Silent Killers: Early Alerts for Latency Spikes, Token Explosions, and Infinite Loops

The article presents a three‑layer monitoring system—LangSmith tracing, Prometheus metrics, and Alertmanager alerts—together with concrete metric definitions, alert rules, and code examples to proactively detect latency spikes, token overuse, and dead‑loop cycles in production LLM agents, while also outlining common pitfalls and best‑practice recommendations.

AgentCostAlertLLM
0 likes · 18 min read
Detecting Agent Silent Killers: Early Alerts for Latency Spikes, Token Explosions, and Infinite Loops
AI Step-by-Step
AI Step-by-Step
May 27, 2026 · Artificial Intelligence

Why Agent Context Management Prioritizes Information Over Shortening Prompts

The article breaks down the multi‑layered context of LLM agents, explains four management dimensions—capacity, content, structure, lifecycle—illustrates common failure scenarios, proposes four practical baselines, and maps maturity levels from free‑form heaps to full‑lifecycle orchestration.

AgentLLMPrompt Engineering
0 likes · 15 min read
Why Agent Context Management Prioritizes Information Over Shortening Prompts
Su San Talks Tech
Su San Talks Tech
May 27, 2026 · Artificial Intelligence

Why Switch from Hand‑Written HTTP Calls to Spring AI for Large‑Model Integration?

The article analyzes the drawbacks of manually coding HTTP calls to large language models—hard‑coded keys, fragile request construction, missing retries, and poor observability—and demonstrates how Spring AI’s layered abstraction, unified configuration, built‑in resilience, function calling, RAG support, and seamless Spring ecosystem integration solve these problems for production‑grade Java applications.

Function CallingJavaLLM
0 likes · 24 min read
Why Switch from Hand‑Written HTTP Calls to Spring AI for Large‑Model Integration?
James' Growth Diary
James' Growth Diary
May 26, 2026 · Artificial Intelligence

Curator Daemon: Managing the Birth, Aging, and Death of Hermes Agent Skills

The article dissects Hermes' Curator daemon—a lightweight forked agent that runs asynchronously after each dialogue to combat skill‑library entropy by identifying stale, redundant, or obsolete skills, applying a three‑state lifecycle, LLM‑driven merge decisions, provenance‑based archiving, and offering debugging tips.

AI AgentCuratorHermes
0 likes · 12 min read
Curator Daemon: Managing the Birth, Aging, and Death of Hermes Agent Skills
Yunqi AI+
Yunqi AI+
May 26, 2026 · Artificial Intelligence

How AI‑Native Products Bring Software Closer to the Business Frontline

The article analyzes how AI‑native products reshape traditional software by processing unstructured data with LLMs, adding a semantic layer that understands, calls, outputs, and learns from business context, thereby turning rapid business changes into traceable, reusable system capabilities.

AI-nativeLLMSemantic Layer
0 likes · 18 min read
How AI‑Native Products Bring Software Closer to the Business Frontline
Machine Heart
Machine Heart
May 26, 2026 · Artificial Intelligence

Beyond Simple Map APIs: How Spatial‑Agent Enables LLMs to Build Executable Geo‑Analysis Workflows

Spatial‑Agent introduces a GeoFlow Graph middle layer that transforms natural‑language map queries into verifiable, step‑by‑step geospatial analysis workflows, showing significant accuracy gains on MapEval‑API and MapQA benchmarks and highlighting the importance of GIScience concepts for reliable LLM‑driven spatial reasoning.

GIScienceGeoFlow GraphLLM
0 likes · 12 min read
Beyond Simple Map APIs: How Spatial‑Agent Enables LLMs to Build Executable Geo‑Analysis Workflows
Tencent Cloud Developer
Tencent Cloud Developer
May 26, 2026 · Artificial Intelligence

How TencentDB Agent Memory Cuts Tokens by 61% and Boosts Success Rate 52% with Mermaid Infinite Canvas and Context Offloading

The article presents a technical deep‑dive into TencentDB Agent Memory’s short‑term memory compression, which combines context offloading and a Mermaid‑based infinite canvas to reduce token usage by up to 61 % while improving task success rates by over 50 % across multiple long‑session benchmarks.

AgentContext OffloadingLLM
0 likes · 45 min read
How TencentDB Agent Memory Cuts Tokens by 61% and Boosts Success Rate 52% with Mermaid Infinite Canvas and Context Offloading
Tencent Cloud Developer
Tencent Cloud Developer
May 26, 2026 · Artificial Intelligence

What Hidden Secrets Does the Agent’s System Prompt Code Reveal?

This article dissects OpenClaw's agent architecture, detailing how the System Prompt, Skill modules, and Agent Loop interact, explaining PromptMode variations, safety rules, tool definitions, skill loading pipelines, heartbeat handling, sub‑agent spawning, silent replies, and the context engine that assembles messages for LLMs.

Agent LoopContext EngineHeartbeat
0 likes · 17 min read
What Hidden Secrets Does the Agent’s System Prompt Code Reveal?
AI Step-by-Step
AI Step-by-Step
May 26, 2026 · Artificial Intelligence

How Prompt Caching Works in LLMs and How to Write More Efficient Prompts

The article explains that LLM prompt caching reuses internal KV states rather than full answers, compares provider implementations, quantifies cost and latency savings, and provides concrete guidelines for structuring prompts to maximize cache hits, along with monitoring signals and a practical evaluation checklist.

AI InferenceLLMPrompt Caching
0 likes · 13 min read
How Prompt Caching Works in LLMs and How to Write More Efficient Prompts
The Dominant Programmer
The Dominant Programmer
May 26, 2026 · Artificial Intelligence

Spring AI ChatMemory: Concepts, Practical Setup, and Common Issues

This guide explains how Spring AI abstracts LLM conversation memory using a three‑layer architecture, demonstrates configuring MessageWindowChatMemory with a sliding‑window strategy, shows two ways to register the memory advisor, and provides complete Maven, YAML, and Java code examples with test screenshots.

ChatMemoryJavaLLM
0 likes · 9 min read
Spring AI ChatMemory: Concepts, Practical Setup, and Common Issues
Baidu Geek Talk
Baidu Geek Talk
May 25, 2026 · Artificial Intelligence

RenderFlow: Agentic Code Delivery for Baidu’s Vertical Search Rendering Service

The article presents RenderFlow, a system that integrates LLM‑generated code into Baidu’s search result rendering pipeline by building a generate‑execute‑feedback‑repair‑publish loop, detailing its architecture, multi‑round repair mechanism, quality safeguards, and the resulting reduction of delivery cycles from days to minutes across nearly a thousand scenarios.

LLMagentic deliverycode generation
0 likes · 23 min read
RenderFlow: Agentic Code Delivery for Baidu’s Vertical Search Rendering Service
Linyb Geek Road
Linyb Geek Road
May 25, 2026 · Artificial Intelligence

Designing a Claude Code Harness for Production‑Grade Java Microservices

The article presents a detailed, production‑focused harness for Claude Code that structures prompts, rules, skills, and external hooks to compensate for LLM shortcomings in Java microservice development, preventing hallucinations, concurrency bugs, and false completions while ensuring reliable code delivery.

JavaLLMPrompt Engineering
0 likes · 20 min read
Designing a Claude Code Harness for Production‑Grade Java Microservices
AI Architecture Path
AI Architecture Path
May 25, 2026 · Artificial Intelligence

Turn Any Codebase into an Interactive, Searchable Knowledge Graph with Claude‑Optimized Understand‑Anything

New developers often drown in massive legacy codebases, struggling to map dependencies and understand architecture, but Understand‑Anything leverages Claude, Tree‑sitter, and multi‑agent pipelines to generate a searchable, visual knowledge graph, offering onboarding tours, semantic QA, incremental diff analysis, and cross‑language support, while the article also compares it against competing tools and provides installation and usage guidance.

AI AgentsClaude CodeKnowledge Graph
0 likes · 15 min read
Turn Any Codebase into an Interactive, Searchable Knowledge Graph with Claude‑Optimized Understand‑Anything
Machine Heart
Machine Heart
May 24, 2026 · Artificial Intelligence

Can CODA Enable LLMs and Beginners to Write Lightning‑Fast Transformer Kernels?

CODA rewrites Transformer blocks as GEMM‑epilogue programs, exposing five primitive building blocks that let both AI‑generated code and human programmers fuse memory‑intensive operations into the GEMM epilogue, eliminating costly tensor moves and achieving up to 1.8× speed‑ups on H100 GPUs for RMSNorm, SwiGLU, RoPE and other components, while preserving numerical accuracy.

CODACUDAGEMM
0 likes · 11 min read
Can CODA Enable LLMs and Beginners to Write Lightning‑Fast Transformer Kernels?
Data Party THU
Data Party THU
May 24, 2026 · Artificial Intelligence

How Graphify Builds Codebase Knowledge Graphs and Replaces Vector Search with Graph Traversal

Graphify is a Python tool and Claude Code skill that creates a persistent, queryable knowledge graph of code, documentation, and media, cutting token usage by up to 71.5× compared with raw file reads, and it does so through a three‑pass pipeline that combines deterministic AST extraction, optional local audio transcription, and AI‑driven semantic extraction.

Claude CodeKnowledge GraphLLM
0 likes · 13 min read
How Graphify Builds Codebase Knowledge Graphs and Replaces Vector Search with Graph Traversal
Java Companion
Java Companion
May 24, 2026 · Artificial Intelligence

How a Chinese Open‑Source AI Code Auditor with 6K Stars Uncovered 49 CVEs

DeepAudit, a 6K‑star open‑source AI code‑audit system, uses a four‑agent architecture and sandboxed PoC verification to automatically discover and confirm 49 high‑severity CVEs across popular projects, while offering both deep audit and instant analysis modes, but it faces model dependency, cost, and sandbox limitations.

AI code auditCVELLM
0 likes · 11 min read
How a Chinese Open‑Source AI Code Auditor with 6K Stars Uncovered 49 CVEs
SuanNi
SuanNi
May 23, 2026 · Artificial Intelligence

Deploy the Open-Source ChatLaw Legal LLM on the SuanWang Platform

This article introduces ChatLaw, an open‑source legal large language model trained on 936,727 real cases, explains its high‑dimensional embedding ChatLaw‑Text2Vec for fast knowledge alignment, and provides a step‑by‑step guide to deploy it on the SuanWang cloud platform using Python and MLU resources.

ChatLawLLMPython
0 likes · 3 min read
Deploy the Open-Source ChatLaw Legal LLM on the SuanWang Platform
Old Zhang's AI Learning
Old Zhang's AI Learning
May 23, 2026 · Artificial Intelligence

The Underrated Lifesaving Template for Qwen Local Deployment

This article analyzes the hidden pitfalls of Qwen's official Jinja chat template, explains how the community‑maintained Qwen‑Fixed‑Chat‑Templates v19 fixes rendering errors, KV‑Cache loss, token waste and agent dead‑locks, and provides step‑by‑step installation instructions for LM Studio, llama.cpp, vLLM and MLX.

Agent LoopKV cacheLLM
0 likes · 10 min read
The Underrated Lifesaving Template for Qwen Local Deployment
DeepHub IMBA
DeepHub IMBA
May 23, 2026 · Artificial Intelligence

Reason → Act → Observe: Building an Agentic Loop with LangChain and Python

This article explains what an agentic loop is, contrasts it with single‑pass chatbots, outlines its five stages, shows a visual architecture, walks through a concrete multi‑step example, provides Python pseudocode and a LangChain implementation, and discusses when to use or avoid such loops.

AI AgentsAgentic LoopLLM
0 likes · 8 min read
Reason → Act → Observe: Building an Agentic Loop with LangChain and Python
ZhiKe AI
ZhiKe AI
May 23, 2026 · Artificial Intelligence

Zhipu AI Unveils GLM-5.1-HighSpeed, Achieving 400 Tokens/s and 6× Faster Generation

On May 22 2026, Zhipu AI released the GLM‑5.1‑HighSpeed variant, which generates up to 400 tokens per second—over six times the speed of the standard GLM‑5.1 and twice that of Google’s Gemini‑3.5‑Flash—thanks to multi‑dimensional inference, attention and sequence‑parallel optimizations while preserving full model capabilities.

GLM-5.1-HighSpeedLLMZhipu AI
0 likes · 3 min read
Zhipu AI Unveils GLM-5.1-HighSpeed, Achieving 400 Tokens/s and 6× Faster Generation
Machine Heart
Machine Heart
May 23, 2026 · Artificial Intelligence

Why Can’t LLMs Directly Copy AlphaGo’s MCTS Success?

The article analyzes why large language models cannot simply adopt AlphaGo’s Monte‑Carlo Tree Search, highlighting credit‑assignment difficulties, gradient‑variance explosion in multi‑step RL, and how AlphaGo’s tight integration of value and policy networks amortizes search in a way LLMs cannot replicate.

AlphaGoCredit AssignmentLLM
0 likes · 6 min read
Why Can’t LLMs Directly Copy AlphaGo’s MCTS Success?
TechVision Expert Circle
TechVision Expert Circle
May 23, 2026 · Artificial Intelligence

The Hidden Technical Debt of AI: Risks of Over‑relying on External Platforms

Relying heavily on external AI services like OpenAI, LangChain, and cloud vector databases creates a hidden technical debt that threatens control, availability, and data sovereignty, and the article dissects its causes, real‑world incidents, mitigation patterns, and practical 2026‑ready alternatives for resilient AI systems.

AILLMVector Database
0 likes · 13 min read
The Hidden Technical Debt of AI: Risks of Over‑relying on External Platforms
Data Party THU
Data Party THU
May 22, 2026 · Artificial Intelligence

First Survey of Agent Harnesses: What Powers Agents Beyond the Model?

The article surveys recent research on Agent Harness engineering, showing that real‑world agent instability stems from system‑level factors beyond model capability, introduces the seven‑layer ETCLOVG architecture, presents benchmark gains from harness tweaks, maps open‑source projects to the framework, and outlines five key open research directions.

AIAgent HarnessETCLOVG
0 likes · 12 min read
First Survey of Agent Harnesses: What Powers Agents Beyond the Model?
Su San Talks Tech
Su San Talks Tech
May 22, 2026 · Artificial Intelligence

Understanding the Core Mechanics Behind Claude Agent Skills

This article provides a detailed, step‑by‑step analysis of Claude's Agent Skills system, explaining how skills are discovered, structured in SKILL.md files, progressively disclosed, and executed through prompt expansion and context modification, complete with code snippets, design patterns, and workflow examples.

AI AgentsAgent SkillsClaude
0 likes · 24 min read
Understanding the Core Mechanics Behind Claude Agent Skills
Machine Heart
Machine Heart
May 22, 2026 · Artificial Intelligence

Nvidia’s First Tri‑Mode LLM Boosts Token Throughput 4× and Promises Second‑Second Long‑Text Generation

Nvidia introduces a tri‑mode large language model that can switch among autoregressive, diffusion and self‑speculation decoding, delivering up to four times higher token throughput, achieving state‑of‑the‑art accuracy on benchmarks, and showing significant speed gains on DGX Spark, RTX 6000 Pro and GB200 hardware.

LLMNVIDIATri-mode
0 likes · 8 min read
Nvidia’s First Tri‑Mode LLM Boosts Token Throughput 4× and Promises Second‑Second Long‑Text Generation
Alibaba Cloud Big Data AI Platform
Alibaba Cloud Big Data AI Platform
May 22, 2026 · Artificial Intelligence

Step-by-Step Guide to Building AI Assistants with Alibaba Cloud Elasticsearch Agent Builder

This article introduces Elastic Agent Builder on Alibaba Cloud, outlines the required Elasticsearch version, walks through creating an agent and AI connector in Kibana, configures model details and API keys, and demonstrates using natural‑language queries to analyze API logs with generated ES|QL statements.

AI assistantAgent BuilderConnector
0 likes · 8 min read
Step-by-Step Guide to Building AI Assistants with Alibaba Cloud Elasticsearch Agent Builder
AI Algorithm Path
AI Algorithm Path
May 21, 2026 · Artificial Intelligence

Essential Ranking Techniques Every RAG Engineer Must Know

This article explains why ranking is the decisive factor behind successful Retrieval‑Augmented Generation (RAG) pipelines, walks through pointwise, pairwise, and listwise learning‑to‑rank paradigms, details key algorithms such as LambdaMART, compares cross‑encoders with bi‑encoders, and provides practical guidance on metrics, production‑grade rerankers, model fine‑tuning, and framework integration.

Bi-EncoderLLMLambdaMART
0 likes · 22 min read
Essential Ranking Techniques Every RAG Engineer Must Know
James' Growth Diary
James' Growth Diary
May 21, 2026 · Artificial Intelligence

What AutoDream Does Behind the Scenes When Claude Code Is Idle

The article analyzes AutoDream, Claude Code’s idle‑time background maintenance system that detects workspace entropy, quantifies it, and runs a four‑stage semantic cleanup pipeline using LLMs, with constraints on idle detection, token budget, and transparent git‑tracked logs.

AutoDreamClaude CodeLLM
0 likes · 32 min read
What AutoDream Does Behind the Scenes When Claude Code Is Idle
DataFunTalk
DataFunTalk
May 21, 2026 · Databases

How the Agent Paradigm Is Redefining Enterprise Data Infrastructure

The article examines how the rise of AI agents is reshaping enterprise data infrastructure, tracing software evolution from rule‑based systems to lakehouses and arguing that real‑time OLAP engines with sub‑second latency, hybrid search, and semantic schemas will become the core of the new Agent‑centric stack.

AgentData InfrastructureHybrid Search
0 likes · 13 min read
How the Agent Paradigm Is Redefining Enterprise Data Infrastructure
PaperAgent
PaperAgent
May 21, 2026 · Artificial Intelligence

238 Promising Reinforcement‑Learning Ideas Likely to Earn CCF‑A Papers in 2026

The article compiles 238 cutting‑edge reinforcement‑learning ideas across 21 research directions, highlights recent breakthroughs such as Sutton’s Intentional Updates, and provides brief overviews of representative papers—including knowledge‑graph, Kalman‑filter, agentic, LLM‑driven, and world‑model approaches—along with links to the accompanying source code.

Agentic RLKalman filterKnowledge Graph
0 likes · 6 min read
238 Promising Reinforcement‑Learning Ideas Likely to Earn CCF‑A Papers in 2026
AI Engineer Programming
AI Engineer Programming
May 21, 2026 · Artificial Intelligence

RAG with Multimodal Inputs vs LLM + Toolchains: Handling Non‑Text Data

The article analyzes how large language models process only tokenized text, compares the traditional LLM‑plus‑toolchain pipeline with emerging multimodal models, evaluates their cost, speed, controllability, and hallucination risks, and proposes a hybrid architecture that matches each approach to specific document scenarios.

LLMMultimodalRAG
0 likes · 16 min read
RAG with Multimodal Inputs vs LLM + Toolchains: Handling Non‑Text Data
DeWu Technology
DeWu Technology
May 20, 2026 · Artificial Intelligence

Claude Code Harness: Turning Data‑Warehouse AI Coding from Ad‑hoc Queries to Rule‑Driven Automation

The article analyzes the shortcomings of current AI‑assisted data‑warehouse development—context forgetting, unstable rule enforcement, and token‑heavy operations—and presents a five‑layer Harness architecture (persistent CLAUDE.md, Auto Memory, deterministic hooks, subagents, and SKILL refactoring) that systematically resolves these issues, boosts reliability, and embeds AI into the development pipeline.

AI codingClaudeHooks
0 likes · 27 min read
Claude Code Harness: Turning Data‑Warehouse AI Coding from Ad‑hoc Queries to Rule‑Driven Automation
Tech Minimalism
Tech Minimalism
May 20, 2026 · Artificial Intelligence

How Karpathy’s Markdown Wiki Redefines LLM Knowledge Management

The article examines the LLM Wiki concept introduced by Karpathy, explaining how a Markdown‑based wiki maintained outside the LLM context can persist and evolve model understanding, compares it with RAG, note‑taking tools and traditional knowledge bases, and outlines architectural components, risks, and practical guidelines.

AILLMRAG
0 likes · 14 min read
How Karpathy’s Markdown Wiki Redefines LLM Knowledge Management
Machine Learning Algorithms & Natural Language Processing
Machine Learning Algorithms & Natural Language Processing
May 20, 2026 · Artificial Intelligence

Can 99% Sparse Transformers Run Faster? Insights from the ‘Attention Is All You Need’ Authors

The paper shows that applying lightweight L1 regularization can make over 99% of FFN activations zero, and by using a new tile‑wise ELLPACK (TwELL) format together with a hybrid routing scheme, inference speed improves up to 30% while memory usage drops over 24% and energy consumption is reduced, all with negligible impact on downstream task performance.

CUDAGPU OptimizationHybrid Routing
0 likes · 8 min read
Can 99% Sparse Transformers Run Faster? Insights from the ‘Attention Is All You Need’ Authors
Machine Learning Algorithms & Natural Language Processing
Machine Learning Algorithms & Natural Language Processing
May 20, 2026 · Artificial Intelligence

How New LLM Architectures Like Gemma 4 and DeepSeek V4 Cut Long‑Context Costs

The article surveys recent open‑weight LLM releases—Gemma 4, Laguna XS.2, ZAYA1‑8B and DeepSeek V4—detailing how KV‑cache sharing, per‑layer embeddings, layer‑wise attention budgeting, compressed convolutional attention and manifold‑constrained hyper‑connections dramatically reduce memory and compute for ultra‑long contexts while preserving model quality.

Attention optimizationKV cacheLLM
0 likes · 25 min read
How New LLM Architectures Like Gemma 4 and DeepSeek V4 Cut Long‑Context Costs
AI Engineer Programming
AI Engineer Programming
May 20, 2026 · Artificial Intelligence

Why Chunk‑Based RAG Fails and How IdeaBlocks Improve Retrieval

The article argues that the common assumption that text chunks are the proper knowledge unit in RAG pipelines is flawed, leading to versioning, metadata, and redundancy problems, and demonstrates that replacing chunks with structured IdeaBlocks dramatically reduces corpus size, token usage, and improves vector relevance.

IdeaBlockLLMRAG
0 likes · 10 min read
Why Chunk‑Based RAG Fails and How IdeaBlocks Improve Retrieval
Xiaohongshu Tech REDtech
Xiaohongshu Tech REDtech
May 19, 2026 · Artificial Intelligence

Agent‑Driven R&D Efficiency: Exploration and Practice at QECon Shenzhen 2026

At QECon Shenzhen 2026, Xiaohongshu's tech team will present five technical talks that showcase how AI agents are applied to architecture risk analysis, change automation, large‑model load‑testing data construction, end‑to‑end testing, and client‑side performance, illustrating concrete engineering solutions and measurable productivity gains.

AI AgentData PipelineLLM
0 likes · 13 min read
Agent‑Driven R&D Efficiency: Exploration and Practice at QECon Shenzhen 2026
Machine Heart
Machine Heart
May 19, 2026 · Artificial Intelligence

How New LLM Architectures Like Gemma 4 and DeepSeek V4 Cut Long‑Context Costs

Recent open‑weight LLMs such as Gemma 4, Laguna XS.2, ZAYA1‑8B, and DeepSeek V4 introduce KV‑cache sharing, per‑layer embeddings, layer‑wise attention budgeting, and compressed attention mechanisms that dramatically reduce memory and compute overhead for very long contexts while preserving model quality.

KV sharingLLMarchitecture
0 likes · 25 min read
How New LLM Architectures Like Gemma 4 and DeepSeek V4 Cut Long‑Context Costs
Tech Ocean
Tech Ocean
May 19, 2026 · Artificial Intelligence

MCP vs Function Calling: How to Choose the Right Tool for AI Integration

This article compares Model Context Protocol (MCP) and OpenAI‑style Function Calling, explaining their fundamental differences, runtime architectures, capability scopes, ecosystem effects, and providing concrete scenarios and a decision tree to help developers pick the most suitable approach for their AI applications.

AI toolsFunction CallingLLM
0 likes · 11 min read
MCP vs Function Calling: How to Choose the Right Tool for AI Integration
Smart Sea Tide
Smart Sea Tide
May 19, 2026 · Artificial Intelligence

From Beginner to Production: 6 Open‑Source AI Agent Projects to Accelerate Your Development

This article introduces six GitHub open‑source AI Agent projects—500‑AI‑Agents‑Projects, Hello‑Agents, AI Agents for Beginners, Hugging Face Agents Course, GenAI_Agents, and ed‑donner agents—detailing their focus areas, provided code, frameworks covered, and how they help developers progress from basic concepts to production‑grade intelligent agents.

AI AgentsFrameworksGitHub
0 likes · 8 min read
From Beginner to Production: 6 Open‑Source AI Agent Projects to Accelerate Your Development
Linyb Geek Road
Linyb Geek Road
May 19, 2026 · Artificial Intelligence

Five Best Design Patterns for AI Agent Skills

This article explains five practical design patterns—tool wrapper, generator, reviewer, inversion, and pipeline—for structuring AI agent SKILL.md files, showing when to use each, how they work internally, and how they can be combined for robust, maintainable agent behavior.

AI AgentsDesign PatternsLLM
0 likes · 19 min read
Five Best Design Patterns for AI Agent Skills
Machine Heart
Machine Heart
May 18, 2026 · Artificial Intelligence

Composer 2.5 Delivers Opus‑level Performance at One‑Tenth the Cost

Composer 2.5, Cursor’s latest LLM, matches Claude Opus 4.7‑level capabilities while costing roughly one‑tenth as much, thanks to larger training scale, precise text‑feedback reinforcement learning, 25× more synthetic tasks, and a new Muon‑HSDP optimizer that boosts efficiency up to ten‑fold.

Composer 2.5LLMMuon optimizer
0 likes · 9 min read
Composer 2.5 Delivers Opus‑level Performance at One‑Tenth the Cost
Shi's AI Notebook
Shi's AI Notebook
May 18, 2026 · Artificial Intelligence

Anthropic’s Practical Approach to Context Engineering for AI Agents

The article explains how Anthropic engineers treat the limited token budget of large language models as a finite resource, detailing static configuration, runtime retrieval, and long‑task strategies such as compaction, structured notes, and sub‑agent architectures to build reliable, efficient AI agents.

AI AgentsAnthropicContext Engineering
0 likes · 18 min read
Anthropic’s Practical Approach to Context Engineering for AI Agents
Machine Heart
Machine Heart
May 18, 2026 · Artificial Intelligence

ICML 2026: Teaching Large Models to Think and Speak – Turning “When to Speak” into a Learnable Strategy

The paper “When to Think, When to Speak” introduces Side‑by‑Side Interleaved Reasoning, a learnable disclosure policy that lets LLMs alternate between internal thinking and user‑visible answer fragments, reducing content latency while preserving or improving accuracy on math and scientific QA benchmarks.

CoTLLMQwen3
0 likes · 10 min read
ICML 2026: Teaching Large Models to Think and Speak – Turning “When to Speak” into a Learnable Strategy
Machine Heart
Machine Heart
May 18, 2026 · Artificial Intelligence

How LLMs Raised the Steiner Ratio Lower Bound to 0.8559, Closing in on the Gilbert‑Pollak Conjecture

A team from Peking University built an LLM‑driven framework that iteratively generates verification functions and uses a reward model with divide‑and‑conquer to improve the planar Steiner ratio from the long‑standing lower bound of 0.824 to 0.8559, a result accepted at ICML 2026 and verified by human experts.

Gilbert‑Pollak conjectureLLMMathematical AI
0 likes · 9 min read
How LLMs Raised the Steiner Ratio Lower Bound to 0.8559, Closing in on the Gilbert‑Pollak Conjecture
AgentGuide
AgentGuide
May 18, 2026 · Artificial Intelligence

AI Agent Essentials: Tokens, Skills, RAG, MCP, SDD & Harness Engineering

The article explains AI Agents as LLM‑based entities with planning, memory, and tool‑use capabilities, covering model pre‑training, fine‑tuning, hallucinations, the Model Context Protocol (MCP), tokenization, Retrieval‑Augmented Generation (RAG), multi‑layer memory, Skill packaging, ReAct reasoning‑action loops, self‑reflection, Harness engineering, and Spec‑Driven Development (SDD).

AI AgentLLMMCP
0 likes · 9 min read
AI Agent Essentials: Tokens, Skills, RAG, MCP, SDD & Harness Engineering
Su San Talks Tech
Su San Talks Tech
May 18, 2026 · Artificial Intelligence

How to Guarantee Reliable Function Calling in LLM Agents

The article breaks down the reliability challenges of LLM Function Calling, categorizes five failure modes, and presents concrete engineering safeguards such as precise schema design, tool description, constraint enforcement, few‑shot calibration, structured output, validation‑feedback loops, monitoring, and risk‑aware trade‑offs.

Function CallingJSON SchemaLLM
0 likes · 17 min read
How to Guarantee Reliable Function Calling in LLM Agents
Black & White Path
Black & White Path
May 18, 2026 · Industry Insights

Is AI Killing the CTF Scene? An In‑Depth Look at the Decline

The article examines how rapid advances in large language models—from GPT‑4 to Mythos—have automated most CTF challenges, reshaping leaderboards, prompting top teams to quit, and forcing the security community to rethink competition formats, talent assessment, and education.

AICTFClaude Opus
0 likes · 16 min read
Is AI Killing the CTF Scene? An In‑Depth Look at the Decline
Machine Learning Algorithms & Natural Language Processing
Machine Learning Algorithms & Natural Language Processing
May 17, 2026 · Artificial Intelligence

Why This Open‑Source Claude Code Pipeline Has Earned 6.4k Stars for AI‑Powered Paper Writing

The article presents the open‑source ARS (academic‑research‑skills) pipeline that stitches together four Claude Code skills—research, writing, review, and orchestration—detailing its agent architecture, citation verification, integrity gates, anti‑flattery mechanisms, three‑layer data isolation, cost, token usage, and installation steps.

AI WritingClaudeLLM
0 likes · 10 min read
Why This Open‑Source Claude Code Pipeline Has Earned 6.4k Stars for AI‑Powered Paper Writing
PaperAgent
PaperAgent
May 17, 2026 · Artificial Intelligence

Turning LLMs into CT Scans: How Alibaba’s Safe‑SAIL Makes AI Decision Black Boxes Transparent

The paper introduces Safe‑SAIL, a Sparse Autoencoder Interpretation Framework for LLMs that provides pre‑explanation metrics, a segment‑level simulation to cut evaluation cost, and a 1,758‑feature safety database, enabling transparent analysis and interactive debugging of large language model safety decisions.

LLMSafetySafe‑SAIL
0 likes · 12 min read
Turning LLMs into CT Scans: How Alibaba’s Safe‑SAIL Makes AI Decision Black Boxes Transparent
Machine Heart
Machine Heart
May 17, 2026 · Artificial Intelligence

How CASCADE Enables LLM Agents to Learn from Experience During Live Deployment

The paper introduces CASCADE, a deployment‑time learning framework that lets LLM agents continuously select and reuse past cases via a contextual‑bandit approach, achieving higher long‑term success rates across diverse online tasks without updating the base model.

CASCADECase-Based ReasoningContextual Bandit
0 likes · 10 min read
How CASCADE Enables LLM Agents to Learn from Experience During Live Deployment
AI Engineer Programming
AI Engineer Programming
May 17, 2026 · Artificial Intelligence

ReAct, Plan‑Execute, and Reflection: How Continuous Loops Make Agent Architecture Crucial

While a single LLM call is a stateless function, real‑world tasks require dynamic information gathering, hypothesis testing, and iterative refinement, so agents must operate in a continuous loop; the article analyzes core patterns such as ReAct, Plan‑Execute, Reflection, Multi‑Agent and HITL, highlighting state management, cost, debugging, and observability challenges.

LLMMulti-agentObservability
0 likes · 21 min read
ReAct, Plan‑Execute, and Reflection: How Continuous Loops Make Agent Architecture Crucial
21CTO
21CTO
May 16, 2026 · Industry Insights

What Rust’s New LLM Usage Policy Means for Contributors

The Rust team has published a living policy that defines allowed and prohibited uses of large language models in the rust-lang/rust repository, aiming to curb low‑quality AI‑generated pull requests and clarify contributor responsibilities.

AI governanceLLMRust
0 likes · 5 min read
What Rust’s New LLM Usage Policy Means for Contributors
James' Growth Diary
James' Growth Diary
May 16, 2026 · Artificial Intelligence

Dynamic Tool Selection Unpacked: Let the Agent Choose the Right Tool with Three Strategies

The article analyzes why binding all tools to an LLM agent is costly and error‑prone, presents benchmark data showing token usage dropping six‑fold and error rates falling by up to five times with dynamic selection, and details three practical strategies—vector retrieval, LLM routing, and rule‑semantic hybrid—along with implementation tips, description engineering, multi‑turn handling, and common pitfalls.

AgentLLMLangGraph
0 likes · 17 min read
Dynamic Tool Selection Unpacked: Let the Agent Choose the Right Tool with Three Strategies
Data Party THU
Data Party THU
May 16, 2026 · Artificial Intelligence

How Leading Open‑Source Foundation Models and Their Derivatives Shape the AI Landscape

This article systematically analyzes the most influential open‑source foundation models—Meta Llama, Alibaba Qwen, Mistral AI, and others—detailing their core architectures, lightweight, instruction‑tuned, multimodal, and industry‑specific derivatives, and outlining current ecosystem characteristics and future development trends.

AILLMMultimodal
0 likes · 18 min read
How Leading Open‑Source Foundation Models and Their Derivatives Shape the AI Landscape
Senior Tony
Senior Tony
May 16, 2026 · Artificial Intelligence

Why Claiming LLM MCP Is Dead and Skills Are Supreme Reveals Beginner Thinking

The article argues that declaring LLM MCP obsolete while praising Skills as the ultimate capability reflects a beginner’s misunderstanding, explaining that MCP is a low‑level tool‑connection protocol akin to USB/HTTP, whereas Skills are high‑level business‑logic wrappers, and the real engineering challenges lie elsewhere.

AI AgentsLLMMCP
0 likes · 5 min read
Why Claiming LLM MCP Is Dead and Skills Are Supreme Reveals Beginner Thinking
Tech Minimalism
Tech Minimalism
May 16, 2026 · Artificial Intelligence

One‑page guide to the three RAG architectures: Classic, Graph, and Agentic

The article explains why plain large language models cannot answer internal company questions, introduces Retrieval‑Augmented Generation (RAG) as a solution, and compares three RAG variants—Classic, Graph, and Agentic—detailing their workflows, strengths, limitations, and how to choose the right one for a given problem.

Agentic RAGKnowledge GraphLLM
0 likes · 17 min read
One‑page guide to the three RAG architectures: Classic, Graph, and Agentic
Machine Heart
Machine Heart
May 16, 2026 · Artificial Intelligence

Why More Compute Can't Fix LLM Inference Lag and Why RL Leads to Overtraining

In a deep interview, former Google TPU architect Reiner Pope explains that low‑concurrency fast‑mode services trade higher fees for faster streaming but are limited by memory‑bandwidth bottlenecks, that optimal concurrency balances compute and memory costs, and that pipeline‑parallel sparse expert models and reinforcement‑learning fine‑tuning introduce new inefficiencies and overtraining risks.

LLMOvertrainingPipeline Parallelism
0 likes · 7 min read
Why More Compute Can't Fix LLM Inference Lag and Why RL Leads to Overtraining
Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
May 16, 2026 · Artificial Intelligence

Four CLAUDE.md Rules That Earned 130k GitHub Stars

This article presents four concrete guidelines for writing a CLAUDE.md file that improves Claude Code's behavior, explains the underlying problems with LLMs, details each rule with examples, shows how to install the rules as a plugin or raw file, and provides validation criteria to ensure the guidelines work in practice.

ClaudeGuidelinesLLM
0 likes · 9 min read
Four CLAUDE.md Rules That Earned 130k GitHub Stars
AI Engineer Programming
AI Engineer Programming
May 16, 2026 · Artificial Intelligence

How to Boost RAG Retrieval Quality: Real‑World Cost‑Benefit Analysis

This article examines practical ways to improve Retrieval‑Augmented Generation (RAG) retrieval quality—covering vector database choices, data chunking, embedding models, query expansion, and re‑ranking—while weighing performance gains against operational costs through multiple real‑world case studies.

LLMQuery ExpansionRAG
0 likes · 16 min read
How to Boost RAG Retrieval Quality: Real‑World Cost‑Benefit Analysis
Machine Learning Algorithms & Natural Language Processing
Machine Learning Algorithms & Natural Language Processing
May 15, 2026 · Artificial Intelligence

ClawMark: A Living‑World Benchmark for Multi‑Turn, Multi‑Day, Multimodal Coworker Agents

The ClawMark benchmark introduces 100 multi‑turn, multi‑day tasks across 13 professional scenarios and five stateful sandbox services, evaluating seven cutting‑edge agent systems with a top weighted score of 75.8 but only a 20% strict success rate, highlighting the difficulty of end‑to‑end collaborative agent performance.

LLMagent performancebenchmark
0 likes · 4 min read
ClawMark: A Living‑World Benchmark for Multi‑Turn, Multi‑Day, Multimodal Coworker Agents
21CTO
21CTO
May 15, 2026 · Cloud Native

Why LLMs Are Undermining 20‑Year‑Old Stateless Web Architecture

The article explains how the longstanding web architecture that separates stateful databases from stateless compute is being challenged by large language models and AI agents, which introduce long‑running, stateful, bidirectional workflows, exposing the need for new routing primitives such as persistent pub/sub channels rather than traditional HTTP‑load‑balancer setups.

LLMRoutingpersistent execution
0 likes · 8 min read
Why LLMs Are Undermining 20‑Year‑Old Stateless Web Architecture
Su San Talks Tech
Su San Talks Tech
May 15, 2026 · Artificial Intelligence

Understanding Rerank in Retrieval‑Augmented Generation (RAG)

The article explains why a reranking step is essential in RAG pipelines, describes how it refines the initial vector‑search results, compares mainstream rerank techniques, discusses practical engineering choices such as candidate set size and model selection, and outlines how to evaluate and tune rerank performance.

LLMModel SelectionRAG
0 likes · 15 min read
Understanding Rerank in Retrieval‑Augmented Generation (RAG)
DeepHub IMBA
DeepHub IMBA
May 14, 2026 · Artificial Intelligence

How HyDE Transforms RAG Retrieval from Keyword Matching to Intent Understanding

The article explains how Hypothetical Document Embeddings (HyDE) improve Retrieval‑Augmented Generation by generating a synthetic answer before vector search, allowing the system to embed richer semantic intent rather than relying on shallow keyword similarity, and provides a step‑by‑step implementation using LangChain.

HyDELLMLangChain
0 likes · 6 min read
How HyDE Transforms RAG Retrieval from Keyword Matching to Intent Understanding
Woodpecker Software Testing
Woodpecker Software Testing
May 14, 2026 · Artificial Intelligence

From Beginner to Expert: AI‑Driven Testing of a Telecom Settlement System – Full‑Process Guide

This article analyzes the pain points of traditional manual testing for a telecom settlement system, demonstrates how AI transforms testing from passive to predictive, presents a four‑layer AI testing architecture with Git‑driven impact analysis, and compares AI‑assisted analysis with manual methods using concrete code, prompts, and risk assessments.

AI testingGit integrationLLM
0 likes · 29 min read
From Beginner to Expert: AI‑Driven Testing of a Telecom Settlement System – Full‑Process Guide
James' Growth Diary
James' Growth Diary
May 14, 2026 · Artificial Intelligence

LLM Semantic Routing Explained: Model‑Based Intent Classification and Three Keyword‑Matching Pitfalls

This article breaks down LLM semantic routing as a classifier, compares keyword, embedding, and LLM‑based routes, provides full TypeScript implementations, introduces hybrid routing for speed and accuracy, and covers production‑grade observability and dynamic configuration to avoid common pitfalls.

Hybrid RoutingLLMLangChain
0 likes · 33 min read
LLM Semantic Routing Explained: Model‑Based Intent Classification and Three Keyword‑Matching Pitfalls
AI Engineer Programming
AI Engineer Programming
May 14, 2026 · Artificial Intelligence

RAG Retrieval: Comparing Bi-encoder and Cross-encoder Architectures

The article reviews the three‑step RAG pipeline, explains why retrieval quality hinges on fast, accurate semantic matching, contrasts Bi-encoder’s offline vector indexing and speed with Cross-encoder’s token‑level interaction and higher precision, and discusses hybrid solutions such as ColBERT and LLM rerankers with practical engineering guidelines.

Bi-EncoderColBERTLLM
0 likes · 10 min read
RAG Retrieval: Comparing Bi-encoder and Cross-encoder Architectures
Kuaishou Tech
Kuaishou Tech
May 13, 2026 · Artificial Intelligence

OneSearch‑V2 Launches: Self‑Distilled Generative Search That Truly Understands Users

OneSearch‑V2 introduces a latent‑reasoning enhanced self‑distillation framework that augments query understanding with thought‑augmented CoT, aligns preferences via direct user behavior feedback, and achieves up to 4 % CTR lift and significant order growth without adding inference cost or latency.

E‑commerceLLMReinforcement Learning
0 likes · 26 min read
OneSearch‑V2 Launches: Self‑Distilled Generative Search That Truly Understands Users
PaperAgent
PaperAgent
May 13, 2026 · Artificial Intelligence

One-for-All Multi-Agent Collaboration: Adaptive Cross-Task Topology Design

The paper introduces OFA-MAS, a one‑for‑all multi‑agent system that learns a universal topology designer using task‑aware graph encoding and a Mixture‑of‑Experts generator, achieving superior performance, OOD generalization, robustness, and efficiency across six major benchmarks.

LLMMixture of ExpertsTask-Aware Graph Encoder
0 likes · 14 min read
One-for-All Multi-Agent Collaboration: Adaptive Cross-Task Topology Design
Geek Labs
Geek Labs
May 13, 2026 · Artificial Intelligence

Two LLM Inference Acceleration Projects: A Mac‑Local Engine vs a Data‑Center Engine

This article compares two recent GitHub LLM inference engines—ds4.c, a Metal‑optimized engine for DeepSeek V4 Flash on Apple Silicon Macs, and TokenSpeed, a Python/C++‑based, data‑center‑grade engine for GPU clusters—detailing their design choices, performance numbers, usage instructions, and suitable scenarios.

DeepSeekGPULLM
0 likes · 8 min read
Two LLM Inference Acceleration Projects: A Mac‑Local Engine vs a Data‑Center Engine
Su San Talks Tech
Su San Talks Tech
May 13, 2026 · Artificial Intelligence

Cut Claude Code Token Costs by Up to 89% with the Open‑Source RTK CLI

RTK is a high‑performance CLI proxy that filters and compresses command output before it reaches Claude Code’s 200k‑token LLM context, reducing token consumption by 60‑90% and cutting costs up to 89%, with step‑by‑step installation and usage instructions provided.

CLIClaude CodeLLM
0 likes · 5 min read
Cut Claude Code Token Costs by Up to 89% with the Open‑Source RTK CLI
Machine Learning Algorithms & Natural Language Processing
Machine Learning Algorithms & Natural Language Processing
May 12, 2026 · Artificial Intelligence

Breaking Off‑Policy Shift: Bengio’s TBA Decouples Sampling and Learning for 50× Faster LLM RL

Trajectory Balance with Asynchrony (TBA) separates sample generation (Searcher) from model updates (Trainer), uses a trajectory‑balance objective to incorporate off‑policy data, and achieves up to 50× speedup in large‑model RL post‑training while preserving or improving performance on math reasoning, preference fine‑tuning, and red‑team tasks.

Asynchronous TrainingLLMLarge Language Models
0 likes · 10 min read
Breaking Off‑Policy Shift: Bengio’s TBA Decouples Sampling and Learning for 50× Faster LLM RL
Xiaohongshu Tech REDtech
Xiaohongshu Tech REDtech
May 12, 2026 · Artificial Intelligence

Treating Automated Testing as AI Coding: Xiaohongshu GUI Agent Real‑World Review

During the 2026 Spring Festival promotion, Xiaohongshu replaced manual UI testing with a three‑layer AI‑driven GUI Agent that executed over 43,000 runs across 106 devices and 128 scenarios, achieving 58% automation, 82% AI‑generated case adoption, 68% bug recall, 98% stability and roughly $1 per test case while drastically cutting token costs.

AI codingCode-as-ActionGUI Agent
0 likes · 23 min read
Treating Automated Testing as AI Coding: Xiaohongshu GUI Agent Real‑World Review
Architecture Digest
Architecture Digest
May 12, 2026 · Artificial Intelligence

Tencent Open‑Sources WeKnora: An AI‑Powered Document Understanding Framework

WeKnora, Tencent's newly open‑source framework built on the IMA kernel, combines LLM and RAG to parse unstructured PDFs, Word files and scans with over 300% speed improvement and 89% top‑10 retrieval precision, offering modular deployment, secure private‑cloud options, and seamless integration with vector databases and the WeChat ecosystem.

Document AILLMRAG
0 likes · 8 min read
Tencent Open‑Sources WeKnora: An AI‑Powered Document Understanding Framework
DataFunTalk
DataFunTalk
May 12, 2026 · Artificial Intelligence

Deep Dive into Agent Harness: Unpacking the Architecture Behind AI Agents

The article dissects the concept of an Agent Harness—a comprehensive software infrastructure that wraps large language models to enable autonomous agents—detailing its three engineering layers, twelve production‑grade components, benchmark improvements, implementation patterns across Anthropic, OpenAI, LangChain, and design trade‑offs such as orchestration loops, tool integration, memory, context management, error handling, and safety.

AI AgentsAgent HarnessLLM
0 likes · 19 min read
Deep Dive into Agent Harness: Unpacking the Architecture Behind AI Agents