All Glossary Terms

Large language model

A transformer-based neural network trained on vast text corpora to predict the next token, enabling general-purpose text generation and reasoning capabilities.

What it is

The model processes inputs by converting text into sequences of tokens, which are numerical representations mapped into high-dimensional space. Through its attention mechanism, it calculates the statistical relationship between these tokens to predict the most likely continuation of a sequence. These models typically contain billions of parameters, requiring significant VRAM for the KV cache during inference. Running these at scale involves balancing GPU memory bandwidth against throughput and latency requirements.

Why it matters

Understanding LLMs allows you to estimate infrastructure costs and latency budgets based on input and output token counts. It changes how you design features, as you must decide between utilizing the model's inherent generalization or building a deterministic pipeline for predictable outputs. Ignoring the probabilistic nature of the model leads to production instability, particularly regarding error handling and rate-limited API calls.

In practice

You interact with these models primarily through APIs by tuning parameters like temperature, top-p, or system instructions to influence output variance. In production, you monitor token usage as a proxy for cost and observe output logs to detect performance degradation or latent hallucinations. You may also adjust quantization settings to reduce memory footprint when deploying on smaller hardware.

The tradeoff

The core tradeoff is between the model's broad general intelligence and its high latency and cost compared to specialized, smaller models or procedural logic.

Where it appears

Research summaries that use Large language model, each linked to its source paper.

  • Improving AI Terminal Task Construction
    CalibForge: Adversarial Solver Calibration for Scaling Learnable Terminal Tasks

    CalibForge uses automated adversarial feedback from software solvers to ensure that training tasks for LLM agents are neither too simple nor impossible to solve.

  • Deterministic Activity Compilation for Agent Memory
    Activity Frames: Deterministic Screen-Activity Compilation for Agent Memory and Replay

    The paper introduces a deterministic method to compile raw screen activity into structured, auditable memory frames for computer-use agents.

  • Automated Construction of Relational Data Schemas
    Tytan: Interactive Neurosymbolic Construction of Analytic Semantic Schemas from Relational Data

    Tytan uses neurosymbolic AI to automatically build semantic schemas from raw relational databases by combining LLM-driven inference with deterministic verification.

  • Building Reusable Skills for Coding Agents
    Learning Globally Reusable Skills for Coding Agents

    The paper introduces a framework to evolve agent skills as an interconnected global system rather than isolated updates to improve performance and generalizability.

  • Automated Review System for Technical Standards
    Benchmarking and Enhancing LLMs for Rule-Intensive Review of National Standard Documents

    The paper introduces GB/T-Reviewer, a multi-agent framework that improves the accuracy of identifying rule violations in complex national standard documents.

  • Debugging Critical Failures in Agent Trajectories
    TRAJDEBUG: Tracing Error Lifecycle to Identify Critical Failures in Long-Horizon Agent Trajectories

    TrajDebug provides a systematic framework to identify and isolate the specific errors responsible for task failures in long-horizon agent trajectories.

  • Benchmarking Coding Agents for Proactive Bug Fixing
    Active-SWE: Benchmarking Coding Agents for Proactive Bug Fixing without Issue Reports

    The paper introduces Active-SWE, a new benchmark designed to evaluate how effectively coding agents can detect and resolve software bugs without relying on human-written issue reports.

  • Forecasting Social Events Without Memorization
    SocietyBench: Forecasting Counterfactual Social-World Evolution

    The researchers introduced SocietyBench, a new benchmark that tests an AI model's ability to forecast social event dynamics by stripping away memorized context through anonymization.

  • Validating AI Actions for Industrial Safety
    ADMITBench: A Safety-Governed Reference Framework for Evaluating the Admissibility of Industrial LLM Advisories

    ADMITBench introduces a safety-governed framework that evaluates LLM-generated industrial actions based on operational constraints rather than just output accuracy.

  • Evaluating LLMs Across the Database Lifecycle
    Evaluating LLMs in Database Scenarios: A Lifecycle Benchmark for Assessing Their Potential in Core Database Tasks

    The authors introduce DBLifeBench to evaluate LLMs beyond Text-to-SQL tasks by assessing their competency across the entire database lifecycle including design and maintenance.

  • Testing Terminal User Interfaces with LLMs
    Can LLMs Test Terminal User Interfaces?

    Researchers developed a testing framework that uses LLMs to automate fault detection in terminal applications by monitoring rendered screen output rather than relying on exit codes.

  • Optimizing LLM Agent Performance Evaluation
    ParEvalLayer: When Partial LLM-Agent Evaluations Support a Decision

    ParEvalLayer provides a systematic method to determine when partial evaluation results contain sufficient evidence to reliably compare two LLM agent systems.

  • Automating Agent Skill Generation from Human Work
    COLLEAGUE.SKILL: Automated AI Skill Generation via Expert Knowledge Distillation

    COLLEAGUE.SKILL provides a standardized pipeline to distill expert human workflows into portable, inspectable skill sets for AI agents.

  • Detecting Shortcut Hacking in LLM Benchmarks
    Right Answer, Wrong Method: Shortcut Hacking Misleads the Evaluation of LLM Reasoning on Frontier Science Benchmarks

    The paper investigates Solution Hacking, a failure mode where large language models achieve correct answers on scientific reasoning benchmarks through invalid shortcuts instead of valid derivations.

  • Benchmarking LLM Performance With Noisy Tools
    PredAct-Bench: Benchmarking Tool-Augmented Dialogue under Controlled Tool Noise

    The paper introduces a benchmark called PredAct-Bench to evaluate how well task-oriented dialogue systems handle noisy tool outputs and maintain user trust.

  • Can AI Models Correctly Mimic Humans?
    LLMs struggle to simulate human belief updates in controlled environments

    Researchers tested six artificial intelligence models to see if they could accurately simulate how real people change their opinions after reading online debates.

  • Why LLM Safety Controls Cannot Prevent Abuse
    Safeguards Based on Copyable Context Cannot Provide Reliable Safety for LLMs

    The researchers proved that open access to helpful AI models inevitably makes them vulnerable to misuse when attackers can mimic the behavior of legitimate users.

  • Agentic Tool Flow for Mathematical Verification
    AMTFV: Agentic Mathematical Tool-Flow Verification for LLM Self-Correction

    The paper introduces a novel framework called AMTFV that uses an interrupt-execute-resume interface to reliably verify and correct mathematical reasoning in large language models.