From Static Inference to Dynamic Interaction:
A Survey of Streaming Large Language Models

Junlong Tong1,2, Zilong Wang2, YuJie Ren2, Peiran Yin2,
Hao Wu2, Wei Zhang2, Xiaoyu Shen2
1
1Shanghai Jiao Tong University
2Institute of Digital Twin, Eastern Institute of Technology, Ningbo
jl-tong@sjtu.edu.cn     xyshen@eitech.edu.cn


Abstract

Standard Large Language Models (LLMs) are predominantly designed for static inference with pre-defined inputs, which limits their applicability in dynamic, real-time scenarios. To address this gap, the streaming LLM paradigm has emerged. However, existing definitions of streaming LLMs remain fragmented, conflating streaming generation, streaming inputs, and interactive streaming architectures, while a systematic taxonomy is still lacking. This paper provides a comprehensive overview and analysis of streaming LLMs. First, we establish a unified definition of streaming LLMs based on data flow and dynamic interaction to clarify existing ambiguities. Building on this definition, we propose a systematic taxonomy of current streaming LLMs and provide an in-depth discussion of their underlying methodologies across text, speech, and video streaming scenarios. Furthermore, we explore the applications of streaming LLMs in real-world scenarios and outline promising research directions to support ongoing advances in streaming intelligence. We maintain a continuously updated repository of relevant papers at https://github.com/EIT-NLP/Awesome-Streaming-LLMs.

1 Introduction↩︎

Large Language Models (LLMs) have shown remarkable efficacy across diverse domains, exhibiting strong reasoning, generation, and cross-modal capabilities [1][3]. However, LLMs are predominantly pre-trained on static and full-context corpora, following a “read-at-once” paradigm in which the complete input is provided before any output is generated. While effective for benchmark-style tasks, this paradigm fundamentally limits their applicability in real-world environments, where information arrives incrementally, accumulates over time, and may be unbounded in length.

Such dynamic conditions are ubiquitous in tasks like real-time translation, streaming video understanding, and interactive tool agents [4][6]. In these real-world applications, inputs such as speech and video data stream continuously, forcing systems to maintain an evolving understanding based on partial observations. In more complex scenarios, these signals may originate from multiple concurrent streams [7], while systems may also need to generate multiple outputs in parallel [8]. For instance, a robot may need to act, speak, and reason simultaneously [9], whereas an interactive assistant may coordinate speech, visual updates, and control commands [10]. Since the input is never fully available at any given moment, the system must dynamically decide when to respond, when to wait for more information, and when to terminate [11], [12]. These requirements expose a fundamental mismatch with the offline, full-context design of standard LLMs.

a

Figure 1: Illustration of three types of streaming large language models (LLMs). (Left) Output-streaming LLM performs streaming generation after static reading. (Middle) Sequential-streaming LLM performs streaming generation after streaming reading. (Right) Concurrent-streaming LLM performs streaming generation while streaming reading..

Adapting LLMs to these real-world streaming scenarios presents significant challenges. Beyond architectural modifications, there is a scarcity of large-scale pre-training data that supports real-time interaction, partial-input supervision, and fine-grained temporal alignment. Motivated by this gap, recent research has begun to investigate streaming LLMs [13][15]. However, the field currently suffers from terminological ambiguity. Existing studies often conflate distinct concepts, such as autoregressive decoding [16], incremental or chunk-wise encoding [17], and full-duplex interaction like GPT-4o [1], under a single “Streaming LLM” umbrella, obscuring meaningful comparisons.

In this work, we provide the first systematic review of streaming LLMs, proposing a unified definition based on data flow and interaction concurrency. As illustrated in 1, we categorize these models into three distinct levels: (1) Output-streaming LLMs, which retain static input processing but support streaming output generation. (2) Sequential-streaming LLMs, which process streaming inputs incrementally but generate with full input. (3) Concurrent-streaming LLMs, which enable full-duplex interaction by continuously receiving inputs and generating outputs.

This taxonomy captures both conceptual distinctions and a clear progression of technical challenges: Output streaming addresses challenges in streaming and low-latency generation; sequential streaming introduces incremental encoding and context management; and concurrent streaming builds upon both to address architecture adaptation and interaction strategies required for full-duplex processing. By disentangling these paradigms, the taxonomy clarifies which challenges are shared, which are incremental, and which are unique to each category, thereby providing a structured roadmap toward the ultimate goal of fully interactive streaming LLMs. Guided by this framework, we systematically review representative methods in each category, examine emerging applications such as streaming video understanding and real-time reasoning, and highlight open problems, including trade-offs between latency and performance, to inform future research.2

To summarize, our main contributions include:

  • To our knowledge, we are the first systematic survey of streaming LLMs.

  • We introduce a unified definition of streaming LLMs, clarifying the conceptual distinctions among existing paradigms.

  • We provide a systematic taxonomy and comprehensive technical analysis, disentangling the mechanisms of three streaming paradigms.

  • We discuss emerging applications and open research directions for real-time and interactive streaming scenarios.

a

Figure 2: Overview of streaming LLM paradigms and their key challenges. The figure contrasts Output-streaming, Sequential-streaming, and Concurrent-streaming LLMs, highlighting their core goals and corresponding research components. Concurrent-streaming builds on the first two and adds extra challenges in real-time streaming architecture adaptation and interaction policy learning..

2 Preliminaries↩︎

2.1 Background of Streaming LLMs↩︎

Current LLMs typically operate under a batch processing paradigm, where the model encodes the entire input sequence into the KV cache during the prefill phase and subsequently generates tokens autoregressively in the decoding phase. Consequently, from a data flow perspective, standard LLMs can be categorized as “streaming-output LLMs” that rely on static context availability. However, real-world data flows often exhibit dynamic and continuous characteristics (e.g., real-time speech transcription and content understanding), necessitating models capable of handling streaming inputs and executing timely output decisions; therefore, generalized streaming LLMs are defined to address such dynamic input and immediate response scenarios, aiming to transcend the limitations of static preprocessing and delayed response.

=[ rectangle, draw=hidden-draw, rounded corners, text opacity=1, minimum height=1.5em, minimum width=5em, inner sep=2pt, align=center, fill opacity=.5, line width=0.8pt, ] =[my-box, minimum height=1.5em, fill=hidden-pink!80, text=black, align=left,font=, inner xsep=2pt, inner ysep=4pt, line width=0.8pt, ]

Figure 3: Taxonomy of Streaming Large Language Models.

2.2 Formal Definition↩︎

To rigorously unify the diverse landscape of streaming LLMs in 1, we formulate the modeling process as a conditional probability distribution \(P(Y|X)\), where \(X = (x_1, \dots, x_M)\) denotes the bounded input stream and \(Y = (y_1, \dots, y_N)\) denotes the output stream. This distribution can be factorized autoregressively using the chain rule: \[P(Y|X) = \prod_{t=1}^{N} P\big(y_t | y_{<t}, h_{1:\phi(t)}(X);\theta\big)\] where \(\theta\) denotes the LLM parameters, and \(h_{\phi(t)}(X)=llm(x_{\phi(t)})\) represents the encoded hidden states corresponding to the input prefix \(x_{\phi(t)}\). Here, \(\phi(t)\) is a decision function to determine the input stream visible at generation step \(t\). This general definition can be instantiated into three sub-types by applying varying operational constraints.

2.2.0.1 Output-streaming LLMs

This paradigm imposes a static constraint where the entire input must be processed before generation begins. Mathematically, the decision function is constant relative to the total input length \(M\), i.e., \(\phi(t) = M\) for all \(t \in \{1, \dots, N\}\). The hidden states are computed via a one-time global prefilling: \(h_{1:\phi(t)}(X) = h_{1:M}(X) = llm(X_{1:M}).\)

2.2.0.2 Sequential-streaming LLMs

This paradigm processes dynamic streaming inputs but generates based on a fixed input. While the decision function mirrors the above type (i.e., \(\phi(t) = M, \forall t\)), the hidden states are constrained by stepwise arrival: \(h_{1:M}(X) = \{ llm(x_1), \dots, llm(x_M) \}.\) This represents a sequential encoding process where the context is accumulated token-by-token (or chunk-by-chunk) before the generation phase begins.

2.2.0.3 Concurrent-streaming LLMs

This paradigm imposes the strictest temporal constraints, representing a dynamic process where streams unfold continuously. Mathematically, \(\phi(t)\) must satisfy monotonicity and partial visibility:\(1\le \dots \le \phi(t)\le \phi(t+1)\le \dots \le M.\) The hidden states of input stream are computed via a dynamic or interactive process: \(h_{\phi(t)}(X) = llm(X_{\phi(t)},y_{<t}).\)

The tripartite taxonomy defined above reflects a trajectory of escalating operational constraints and functional demands, shifting the paradigm from static processing to dynamic, real-time interaction.

\(1\le \dots \le \phi(t)\le \phi(t+1)\le \dots \le M.\)

2.3 Overview↩︎

This survey provides a systematical overview of research in streaming LLMs. Figure 2 illustrates the proposed taxonomy, detailing the primary research focuses and challenges within each category. Specifically, output-streaming emphasizes streaming generation mechanisms and efficient generation; sequential-streaming focuses on incremental encoding processing and context management for input streams; and concurrent-streaming integrates both tasks, additionally introducing architectural adaptations and the interactive management of simultaneous input and output streams. To navigate this comprehensive landscape, 3 outlines the taxonomy structure of this survey. Guided by this taxonomy, we begin with output-streaming in Section 3, expand to the dynamic input processing of sequential-streaming in Section 4, and culminate with the interactive dynamics of concurrent-streaming in Section 5. Beyond the technical part, Section 6 reviews downstream tasks and applications, and Section 7 discusses the future directions.

3 Output-Streaming LLMs: Generating with Progressive Revelation↩︎

3.1 Streaming Generation Mechanism↩︎

Output streaming enables progressive revelation by continuously emitting intermediate results rather than waiting for completion. Based on the generation granularity and update mechanism, we categorize existing methods into: (i) token-wise, (ii) block-wise, and (iii) refinement-based.

3.1.0.1 Token-wise

This represents the dominant generation paradigm for LLMs, employing token-wise autoregressive decoding [2], [3], [18]. For multimodal outputs, systems typically extend this paradigm by aligning non-text modalities to the textual space for autoregressive streaming [19], [20].

3.1.0.2 Block-wise

These methods expand the generation unit from single tokens to multi-token blocks, reducing serial depth while retaining the controllability of autoregressive modeling. We summarized them into two lines. (1) Semi-autoregressive relaxes intra-block dependencies to predict multiple tokens in parallel[21][24]. For example, MTP [25] predicts multiple tokens simultaneously for each autoregressive block step. (2) Block-diffusion combines diffusion-style refinement with block-wise generation, iteratively denoising a block at a time and streaming blocks autoregressively [26][29].

3.1.0.3 Refinement-based

Unlike token-by-token sequential accumulation, this paradigm performs progressive refinement from coarse to fine, iteratively improving the semantic completeness of the entire sequence rather than merely extending its length. (1) Multi-scale approach decomposes generation into discrete scales [30][32]. Models like VAR [30] predict the next-scale autoregressively, enabling a blur-to-clear streaming effect. (2) Global-diffusion refinement formulates generation as multi-step denoising over the entire sequence, starting from noise or a coarse initialization and progressively refining to a complete output. This mechanism has been successfully adapted to both text [33][36] and multimodal generation [37], [38].

3.2 Efficient Streaming Generation↩︎

Given the extensive scope of LLM optimization, we narrow our focus strictly to the streaming process itself, analyzing decoding and memory efficiency.3 As token-wise decoding remains dominant, we focus on its optimization for efficient streaming.

3.2.0.1 Decoding Path Acceleration

To mitigate autoregressive latency, optimizations modify the execution trajectory along two dimensions. (1) Token-path methods generate parallel candidate chains to relax strict serial dependency, including multi-path and speculative decoding [39], [40]. For instance, speculative decoding [41][43] leverages a lightweight draft model to propose multiple candidate tokens in parallel, which are then verified and selectively accepted by a target model, reducing streaming latency. (2) Layer-depth methods adaptively shorten the network depth based on token difficulty [44], [45] . For instance, by employing layer skipping [46], models terminate the execution path prematurely.

3.2.0.2 Memory Efficiency

Since the KV cache grows linearly, optimizations aim to decouple memory cost from generated length. Dynamic KV compression methods limit the scope of attention targets during streaming decoding [47][50]. Representative implementations range from sink-aware windowing [17], which maintains a fixed budget for stability, to dynamic decision strategies [49] for KV cache management based on token importance.

a

Figure 4: Illustration of structural conflicts when adapting batch-oriented LLMs (left) to concurrent streaming (right), where (0,0) – (2.5em, 0); indicates the token generation direction, (0,0) – (2.5em, 0); denotes attention dependencies, (0,0) rectangle (2.0ex,2.0ex); blocks represent the input, and (0,0) rectangle (2.0ex,2.0ex); blocks represent the output. (1) Attention contention: Ambiguous causal dependency between the newly inserted streaming input and historical outputs. (2) Position-ID conflict: The new streaming input and generated output compete for the identical position ID..

4 Concurrent-Streaming LLMs: The Streaming of Real-Time Interaction↩︎

Concurrent-streaming represent a crucial step toward real-time interactive intelligence, requiring LLMs to simultaneously process streaming inputs and generate outputs. However, this dynamic paradigm diverges from standard static pre-training. First, regarding architecture adaptation, concurrent streaming introduce structural conflicts, as illustrated in 4. Second, synchronization control governs system interactivity by dynamically deciding when to alternate between reading and writing, balancing responsiveness and coherence, as illustrated in 5. Accordingly, we categorize existing research into architecture adaptation and interaction policy.

4.1 Architecture Adaptation↩︎

Architecture adaptation mitigates structural conflicts inherent in concurrent processing, including attention contention and positional conflicts (4). Attention contention arises when continuously arriving inputs interleave with generation, making attention dependency ordering ambiguous, while positional conflicts occur when asynchronously injected inputs overlap with output positions. Existing work redesigns input–output interaction mechanisms, which we categorize into four representative streaming paradigms.

4.1.0.1 Re-encoded streaming

The model re-encodes all historical caches whenever new input arrives [4], [51], [52]. By recomputing representations over the entire context, this approach eliminates attention contention and positional misalignment, preserving batch-equivalent attention dependencies. However, the resulting computational overhead limits its applicability to long-context and real-time settings [53], [54].

Table 1: Comparison of concurrent-streaming architecture adaptation methods from the perspectives of attention (Attn.) and position (Pos.).  indicates the token generation direction, while  denotes attention dependencies.  blocks represent the input stream, and  blocks represent the output stream. \(p\) indicates the corresponding position ID.
Re-encoded streaming Concatenated streaming Interleaved streaming Grouped streaming
Re-encode all past caches when new input arrives to match pretraining. Concatenate the input and output tokens into a composite token per step. Interleave input and output tokens on the timeline. Restrict attention within input and output groups to match pretraining.
Reassign positions via full re-encoding. Assign monotonic positions over concatenation. Assign positions by interleaved time order. Maintain separate positional spaces per group.

2pt

4.1.0.2 Concatenated streaming

Concatenated streaming concatenates the newly arrived input tokens with the previously generated outputs and feeds them jointly into the model at each step [55][58]. This design resolves both conflicts by unifying attention and positional ordering, but incurs growing memory and latency and requires architectural changes and retraining [58].

4.1.0.3 Interleaved streaming

This paradigm interleaves input and output tokens within a shared sequence, assigning attention and positional encodings according to their temporal order [14], [15], [59][62]. It preserves the temporal flow of streaming interaction, enabling input and output to coexist with consistent ordering [61]. While balancing computational efficiency and real-time continuity, it requires synchronization mechanisms to prevent dependency leakage.

4.1.0.4 Grouped streaming

Group streaming partitions input and output tokens into separate groups, each with independent attention relations and position IDs [13], [63][65]. This design eliminates attention contention while maintaining isolated positional spaces, and empirical results show that grouped positional encoding preserves streaming performance and can improve parallelism and efficiency.

a

Figure 5: Illustration of interaction decision in concurrent streaming LLMs, where the model learns to dynamically schedule reading inputs and emitting outputs..

4.2 Interaction policy↩︎

Interaction policy governs read–write synchronization in concurrent LLMs, balancing latency and output quality. Existing strategies fall into three paradigms based on their optimization approach: rule-based, SFT-based, and RL-based policies.

4.2.0.1 Rule-based Interaction

Rule-based approaches rely on predetermined schedules or statistical thresholds, offering interpretability and control without requiring model parameter updates. (1) Pre-defined strategy enforce a rigid, content-agnostic read-write rhythm [13], [61], [66]. The most representative approach is the Wait-\(k\) policy [66]. In this strategy, the model always waits for \(k\) tokens or segments of input lag before generating the corresponding output. While efficient and easy to implement, pre-defined policies lack adaptability to varying input complexity and rate fluctuations. (2) Adaptive thresholding methods utilize real-time inference statistics as decision signals to improve flexibility [4], [67]. These policies trigger read/write actions based on metric thresholds (e.g., attention weights) rather than a fixed schedule. For instance, SimulS2S [4] monitors model confidence and pauses generation to read more context whenever uncertainty exceeds a safety margin, effectively adapting to the difficulty of the incoming stream.

4.2.0.2 SFT-based Interaction

Moving beyond manual rules, supervised approaches leverage labeled data to explicitly train the model to predict the optimal interaction timing. (1) In-context prediction paradigm integrates decision-making directly into the autoregressive generation process [14], [68]. Here, the LLM is fine-tuned to emit special control tokens (e.g., <EOS> or <WAIT> ) alongside standard text. This strategy unifies policy execution with language modeling, allowing the model to leverage its reasoning capabilities for control. (2) Auxiliary decision employ auxiliary decision modules to decouple control from generation [62], [69], [70]. This typically involves training a lightweight classifier to output a binary decision. By isolating the interaction signal, this approach allows for focused supervision on the decision boundary without interfering with the semantic distribution of the generated text.

Table 2: Summary of sequential streaming tasks. Incremental encoding (Inc) and context management (Ctx) are the key technical dimensions. The checkmark () indicates the scope covered by existing research.
Streaming-In Bound Inc. Cxt. Example methods
Text Memory - StreamingDialogue [71]
Audio Causal, Memory WhisperStreaming [72]
Video Memory - Timechat-online [73]

3pt

Table 3: Summary of concurrent streaming tasks and representative methods. Tasks are categorized by processing depth (Level), where \(\mathcal{X} \to \mathcal{Y}\) denotes direct mapping (perception) and \(\mathcal{X} \to \mathcal{Z} \to \mathcal{Y}\) denotes intermediate processing with a latent state \(\mathcal{Z}\) (cognition). Modality: text (T), speech (S), vision (V). Streaming Paradigm: re-encoding (R), Concatenated (C), Interactive (I), Group (G). Interaction Policy: Rule-based (Rule), SFT-based (SFT), and RL-based (RL). The checkmark () indicates the scope covered by existing research.
Task type Level Modality Paradigm Interaction policy Example methods
3-4 (lr)5-8 (lr)9-11 In Out R. C. I. G. Rule SFT RL
Translation \(\mathcal{X} \to \mathcal{Y}\) T/S T/S Seed LiveInterpret 2.0 [74]
Detection \(\mathcal{X} \to \mathcal{Y}\) T/S/V T - - - - - FineHarm [75]
ASR \(\mathcal{X} \to \mathcal{Y}\) S T - - - ReaLLM [76], Llama-omni [77]
TTS \(\mathcal{X} \to \mathcal{Y}\) T S - - - Cosyvoice [15], DSM [78]
QA \(\mathcal{X} \to \mathcal{Y}\) T/S/V T/S - - - Qwen3-omni [55], VideoLLM-online [14]
Description \(\mathcal{X} \to \mathcal{Y}\) V T - - - LiveCC [61], StreamMind [79]
VLA \(\mathcal{X} \to \mathcal{Y}\) V T - - - - - StreamVLN [80], ActiveVLN [9]
Reasoning \(\mathcal{X} \to \mathcal{Z}\) T/S/V T/S - - - - StreamingThinker [13]
\(\mathcal{Z} \to \mathcal{Y}\) T/S/V T/S - - - - - AsyncReasoning [81]
Tool usage \(\mathcal{X} \to \mathcal{Z}\) T/S/V T - - - - - AViLA [10], StreamRAG [82]
\(\mathcal{Z} \to \mathcal{Y}\) T/S/V T - - - - - Conveyor [83], AsyncLM [84]

3pt

4.2.0.3 RL-based Interaction

RL-based policies model interaction control as sequential decision-making, where the LLMs selects read or write actions based on the current context [74], [85], [86]. Optimizing quality–latency rewards enables the discovery of non-trivial interaction patterns that are difficult to encode with static rules. For example, MMDuet2 [85] formulates proactive video interaction as an RL-driven control problem, enabling asynchronous perception and reaction under streaming video inputs.

5 Streaming Applications and Tasks↩︎

This section reviews the application-level tasks enabled by streaming LLMs, building upon the methodological taxonomy established in Sections 3–5. Notably, since output streaming is a universal property of LLM-based generation, we concentrate on task settings where streaming arises from incremental input, real-time interaction, or bidirectional coupling between input and output.

5.0.0.1 Sequential Streaming Tasks

Sequential streaming tasks target long, unbounded input streams that cannot be processed in a single pass due to resource limitations. For instance, streaming long video understanding [73], [87] requires incremental video encoding, followed by immediate decoding upon query arrival. As summarized in 2, different modalities emphasize distinct technical components.

5.0.0.2 Concurrent Streaming Tasks

Concurrent streaming covers multimodal tasks that require simultaneous input reception and output generation. Based on processing depth, these tasks can be divided into two levels. (1) Perception-Level (\(\mathcal{X} \rightarrow \mathcal{Y}\)): Models focus on direct cross-modal mappings with minimal latency, including streaming translation (e.g., Seed LiveInterpret 2.0 [74]), ASR/TTS (e.g., CosyVoice [15]), real-time video captioning (e.g., LiveCC [61]), and streaming QA (e.g., Qwen3-Omni [55]). (2) Cognition-Level (\(\mathcal{X} \rightarrow \mathcal{Z} \rightarrow \mathcal{Y}\)): Tasks require maintaining and updating a latent state \(\mathcal{Z}\) to support complex behaviors such as streaming reasoning (e.g., StreamingThinker [13]) and streaming tool usage (e.g., AViLA [10]). Here, the latent state decouples immediate perception from final output generation. We summarize the corresponding technical categories of these tasks in 3.

6 Future Directions↩︎

To provide a comprehensive roadmap, we categorize future research into two complementary perspectives: the technical level (i.e., how to build better streaming models) and the application level (i.e., how to apply streaming models).

6.0.0.1 Technical Level

(1) Efficient Streaming LLMs. Efficiency under strict latency and memory constraints remains a core challenge, involving incremental encoding, decoding acceleration, and long-term context management. (2) Alternative Concurrent Streaming Paradigms. Beyond interleaved and group-based strategies, more effective streaming paradigms remain to be explored. In particular, extending streaming interaction to semi-autoregressive or block-wise generation frameworks presents a promising yet underexplored direction. (3) Proactive Interaction Policies. Designing interaction policies that adaptively balance reading and generation is essential for real-time streaming performance. (4) Interpretability. The behavioral dynamics of LLMs in interactive streaming settings remain largely unexplored, calling for greater interpretability.

6.0.0.2 Application Level

(1) Expansion of Streaming Modalities. Current streaming LLMs primarily focus on text, audio, and basic video interactions. Extending streaming LLMs to additional modalities requires transcending these limitations toward complex, omni-modal continuous streams (e.g., parallel video-audio streams) to achieve real-time streaming multimodal understanding and generation in highly dynamic environments. (2) Expansion of Concurrency Levels. A promising direction is to expand current streaming LLMs from two-level perceptual concurrency (e.g., “listen-while-speaking” and “read-while-thinking”) to deeper, multi-level asynchronous processing. This includes 3-level streaming (introducing streaming “perceiving, reasoning, and generation”) and 4-level streaming (introducing concurrent “perceiving, reasoning, tool-using, and generation”) to achieve true multi-stream intelligence. (3) Expansion of Streaming Tasks. The application of streaming LLMs is expected to shift from simple, passive responses toward complex proactive interactions and long-context engagements. Advancing these capabilities involves empowering models to actively initiate interventions and maintain long-term memory, ultimately achieving brain-like streaming intelligence.

7 Conclusion↩︎

This survey presents a unified view of streaming LLMs by clarifying their definitions and organizing existing approaches into output-streaming, sequential-streaming, and concurrent-streaming paradigms based on data flow and interaction concurrency. We review representative methodologies and application scenarios, and discuss the fundamental challenges posed by real-time and interactive settings. We hope this work serves as a concise reference and a conceptual foundation for future research on streaming intelligence.

Limitations↩︎

This survey focuses on clarifying the conceptual landscape of Streaming Large Language Models through unified definitions, paradigms, and representative methods. As a result, it does not aim to provide an exhaustive comparison of all existing implementations or a comprehensive empirical evaluation across tasks and systems. Moreover, our discussion primarily centers on high-level design principles and paradigms, leaving detailed system-level optimizations and deployment-specific considerations for future studies.

8 Survey Scope and Positioning↩︎

8.1 Motivation and Necessity of This Survey↩︎

The motivation for this survey stems from three key observations regarding the current landscape of Large Language Models (LLMs): the paradigm shift to streaming scenarios, ambiguity in "streaming" terminology, and absence of comprehensive reviews in streaming LLMs domain.

8.1.0.1 The Paradigm Shift to Streaming Scenarios

While LLMs have demonstrated remarkable capabilities across various static inputs, real-world deployment increasingly demands streaming interaction. Applications such as digital human assistants, real-time simultaneous interpretation, and embodied robotics require models to process continuous input streams and generate low-latency responses. The transition from "static batch processing" to "dynamic streaming interaction" presents unique challenges in memory management, temporal coherency, and inference efficiency that traditional LLM research overlooks.

8.1.0.2 Ambiguity in "Streaming" Terminology

There is currently a significant semantic ambiguity in the usage of the term "streaming" within the community. It is often conflated across three distinct dimensions: streaming generation (token-by-token output), streaming processing (handling dynamic input context), and streaming interaction (dynamic generate with partial and dynamic input). This survey aims to disambiguate these concepts and provide a rigorous taxonomy.

8.1.0.3 Absence of Comprehensive Reviews

Despite the surge in related research, there is a notable lack of a systematic survey dedicated to Streaming LLMs.

8.2 Focus and Scope Delimitation↩︎

To ensure depth and coherence, we delineate the scope of this survey as follows: We primarily focus on decoder-only LLMs, and we structure the survey by tracing the evolution of streaming capabilities: from static input / streaming output (standard generation), to streaming Input / streaming output (infinite context processing), and finally to dynamic interaction (duplex/omni-streaming). We conducted a systematic literature review of top-tier venues in AI, NLP, CV, and speech, with a cutoff date of December 2025.

8.3 Comparison with Existing Surveys↩︎

While our survey establishes a unified taxonomy for Streaming LLMs centered on dynamic data flow and real-time interaction, it is crucial to delineate its scope from other prominent research directions in the LLM landscape. Below, we contrast our focus with three major categories of existing surveys: Efficient LLMs, Multimodal LLMs, and Long-Context LLMs.

8.3.0.1 Efficient LLMs.

The technologies surveyed under the field of Efficient LLMs, including model compression and KV cache management, are foundational technology for efficient, accurate and intelligent Streaming LLMs [88][90]. However, existing typical surveys in this category, such as the survey on KV cache management for acceleration [88], the comprehensive survey on efficient LLMs [89], and the review on compression techniques [90], predominantly analyze these methods from an offline and static perspective. Central questions of these surveys is mostly on how to reduce the computational or memory footprint of a model that is operating on a complete, existing context to acquire higher throughput or enable development on hardware with constrained resources. In comparison, this survey re-contextualizes these optimizations within a streaming paradigm. Techniques such as dynamic KV cache management and lightweight model adaptation under the overarching imperative of online, real-time interaction are unified. The key challenge shifts from static resource reduction to dynamic runtime budgeting under the strict latency constraints of streaming, where inputs are incrementally available, as is concurrent streaming defined, and outputs must also be generated incremenntally. Thus, while efficient LLM research only casts light on how can we run the model more efficiently, this research also asks how can it read, listen, see and respond efficiently as the world unfolds.

8.3.0.2 Multimodal LLMs.

The field of MLLMs [91] focuses on augmenting language models with the ability to process and generate content across diverse modalities like vision, audio, and video. Key challenges include cross-modal alignment, fusion strategies, and the design of modality-specific encoders and decoders. Although some MM-LLM applications (e.g., real-time video analysis or speech-to-speech translation) are inherently streaming, the primary goal of MM-LLM research is to achieve strong performance on multimodal understanding and generation benchmarks. Our survey, however, abstracts away from the specifics of any single modality. We treat the input and output as generic token streams and instead concentrate on the temporal dynamics of the interaction. A streaming LLM architecture, as defined in our work, can serve as the backbone for a multimodal system, but the core innovations we survey—such as concurrent perception-generation loops and infinite context processing—are orthogonal to the problem of modality grounding. Our focus is on how information flows over time, not what the information represents.

8.3.0.3 Long-Context LLMs.

Surveys in this category, such as [92] and [93], primarily focus on expanding the model’s static capacity to process extremely long, finite input sequences (e.g., long documents or multi-turn histories). Their core goal is to extend the usable context window and make inference over long sequences efficient, covering key technologies like positional encoding extrapolation, efficient attention architectures (e.g., sparse attention), and sophisticated KV-cache management. While these advances in long-context modeling provide a crucial foundational capability for processing extensive information, their perspective is largely centered on a "read-then-write" inference paradigm for offline, bounded inputs. In stark contrast, our survey on Streaming LLMs investigates the dynamic interaction paradigm required for unbounded, real-time token streams. We focus on the unique challenges of concurrent reading and writing, incremental processing of growing states, and online context/KV budgeting under strict latency constraints. Therefore, while long-context techniques are often essential enabling components, our work shifts the focus from merely enlarging a fixed context window to orchestrating continuous, low-latency reasoning and generation within an ever-flowing data stream.

Table 4: Comparison between this survey and existing related surveys. We highlight the unique positioning of our work in the context of streaming interaction.
Typical Surveys Primary Focus Typical Technologies Covered Differentiation in This Survey
[88]
[89]
[90]
[94] Compression/adaptation and memory bottlenecks. ) Compression: quantization, pruning, distillation, low-rank; and 2) KV-cache management: selection / eviction, cache compression, offloading, sliding-window / hierarchical cache. Prior surveys treat compression and KV-cache optimization as separate threads; we unify them under streaming interaction, highlighting online constraints and dynamic runtime budgeting.
1-4
[91]
[95] Architectures, training recipes, and benchmarks for MLLMs. ) Encoder + Projector + LLM, alignment module, tokenizer; and 2) multimodal pretraining & instruction tuning. Prior MLLM surveys assume fixed inputs and emphasize alignment and benchmarked capabilities. We focus on streaming interaction with token stream abstraction, concurrent IO, incremental perception, and online memory and budget control.
1-4
[93]
[92] Long-context modeling: extending usable context windows and making long-sequence inference efficient. ) Position extrapolation / interpolation; 2) efficient long-sequence attention and architectures; 3) KV-cache management (compression, eviction, and offloading); and 4) workflow-level augmentation (prompt compression, retrieval/external memory). Prior surveys focus on enlarging a fixed context window for offline inputs or read then write inference. We study streaming token streams with concurrent read and write, incremental inputs, growing states, and online context and KV budgeting for unbounded streams.

9 Supplementary Literature↩︎

Due to space limitations, we defer a broader collection of related work to this appendix. Following the taxonomy in Figure 3, we organize additional literature into three paradigms: (1) Output-streaming LLMs, (2) Sequential-streaming LLMs, and (3) Concurrent-streaming LLMs. This appendix complements the main text by summarizing representative yet less-discussed threads and implementations, rather than aiming for an exhaustive bibliography.

Table 5 presents additional methods for output-streaming LLMs, organized by streaming generation mechanisms and efficiency techniques.

Table 5: Summary of additional literature on output-streaming LLMs, complementing the discussion in Sec. [sec:Sec:output-streaming].
Token Block Refinement
- - T GPT [1], Gemini [2], Qwen3 [96], DeepSeek-V3 [3], InternVL [97], ChatGLM [98], Gemma [18]
- - S AudioLM [99], SpeechGPT [19], AudioPaLM [100], FireRedTTS [101], Moshi [102], Llama-omni2 [103], Qwen3-Omni [55], StyLLE [104], Llmvox [58], SpeakStream [105]
- - V DALLE [106], VideoPoet [16], Chameleon [107], Emu3 [108], Anole [109], Lumina-mGPT2.0 [37], Infinity [110]
- - T SAT [21], SoT [23], CtrlDiff [111], PredSent [22], Falcon [24], SSD-LM [26], WeDLM [27], Next-Block [28], Block Diffusion [29]
- - S PALLE [112], SyncSpeech [113], DCAR [114], StreamFlow [115], TtT [116], DiTAR [117]
- - V show-o [118], XTRA [119], NTP [120], CausVid [121], BlockVid [122], NBP [120]
- - T Mask-Predict [123], LevT [124], Insertion-Deletion [125], Diffusion-LM [36], DiffuSeq [126], D3PM [127]
- - S SoundStorm [128], Voicebox [129], Specmaskgit [130], IMPACT [131], Maskgct [132], DDM-TASTE [133]
- - V MaskGIT [134], Muse [135], DiT [136], VAR [30], DetailFlow [137], DC-AR [138]
Decode Memory
- T Speculative Sampling [41], Medusa [42], EAGLE2 [43], BiLd [139], CTC-based Drafting [140], FLY [141], SkipDecode [45], SkipGPT [46], EESD [142], HiDrop [143], Visipruner [144]
- S LiveSpeech [145], MTP-SpecDec [146], SSD [147], VocalNet [148], VADUSA [149], PCG [150]
- V SJD [151], CSpD [152], GSD [153], VVS [154], FreqExit [155], SkipVAR [156], PAR [157], ADT-Tree [158], Lantern [159]
- T StreamingLLM [17], H2O [48], Scissorhands [47], Snapkv [160], Dynamickv [161], Chunkkv [162]
- S wu2024ts3 [163], LST [164], SpeechTokenPrediction [165]
- V HACK [166], ScaleKV [167], AMS-KV [168], LineAR [169]

2.5pt

Table 6 summarizes methods for sequential-streaming LLMs, focusing on incremental encoding and streaming context management.

Table 6: Summary of additional literature on sequential-streaming LLMs, complementing the discussion in Sec. [Sec:sequential-streaming].
Fragmented Encoding Atomic Encoding
- T SimulMT [170], Moshi [102], Codec [171], dmel [172], Lightweight Audio Segmentation [173], Semantic VAD [174]
- S Whisper-Streaming [71], SimulST [175], CTC [176], Speechtokenizer [177], Moshi [102], Codec [171], dmel [172], Lightweight Audio Segmentation [173], Semantic VAD [174]
- V S-ViT [178]
- T SaT [173], SegFree [179], WtP [180], subword regularization [181], SentencePiece  [182],
- V ViT [183], CLIP [184]
Mem. KV Attn.
- - StreamingTOM [185], MemoryBank [186], LongMem [187], VideoStreaming [188], Timechat-online [73], Prunevid [189], DyCoke [190], ProVideLLM [191], VideoLLaMB [192], STREAMMIND [79], VideoStreaming [188], StreamingAssistant [5], Focus [193], StreamForest [194], Flash-vstream [87]
- - H2o [48], PyramidKV [195], SnapKV [160], StreamKV [196], STC [197], Streammem [198], AViLA [10], StreamingVLM [60], PyramidInfer [199], DynamicKV [161], PrefixKV [200], CAKE [201], SimLayerKV [202], AdaKV [203], CriticalKV [204], LeanKV [205], RazorAttention [206], HeadKV [207], DuoAttention [208]
- - Attention Sink [17], Sirllm [209], GLA [210], DeltaNet [211], Lightning attention-2 [212], SAMPLEATTENTION [213], Lserve [214], DCA [215]

3pt

Table 7: Summary of additional literature on concurrent-streaming LLMs, complementing the discussion in Sec. [sec:Sec:Concurrent-streaming].
(lr)5-6 R. C. I. G. In Out
- - - T T Simul-LLM [4], SiLLM [52], TransLLaMA [68], CAST [216], RALCP [170]
- - - S T CAST [216], TransLLaMA [68]
- - - T S LLMVoX [58], Mini-Omni [217]
- - - S S Mini-Omni [217]
- - - V T ViSpeak [218]
- - - T T EAST [219], Shanks [220]
- - - T S STITCH [221]
- - - S T EASiST [222], InfiniSST [223], SASST [67], StreamingASR [224]
- - - S S SALMONN-omni [225]
- - - V T Videollm-online [14], LiveCC [61], ProVideLLM [191], StreamBridge [226], LiveStar [227], SVBench [228], ProASIST [12]
- - - T T StreamingGPE [64], StreamingThinker [13], DST [53]
- - - S T StreamingGPE [64]
- - - V T StreamChat [63], Speak-While-Watching [65], TaYS [229]
(lr)5-6 Rule SFT RL In Out
- - T T Simul-LLM [4], [54], StreamingGPE [64], STACL [66], AsyncReasoning [81], StreamingThinker [13], Conveyor [83], AsyncLM [84]
- - T S CosyVoice 2 [15], IST-LM [230], DSM [78]
- - S T MFLA [231], InfiniSST [223], LLM as Processor [64], SASST [67], SimulS2S-LLM [51], ReaLLM [76], Llama-omni [77]
- - S S StreamRAG [82]
- - V T LiveCC [61], StreamVLN [80], ActiveVLN [9], AViLA [10]
- - T T SiLLM [52], TransLLaMa [68], EAST [219], DrFrattn [69], FineHarm [75], PsFuture [232]
- - T S SimulMEGA [233], Cosyvoice [15], DSM [78]
- - S T Divergence [70], SimulMEGA [233], ReaLLM [76], Llama-omni [77]
- - S S StreamSpeech [234], EASiST [222], SimulMEGA [233]
- - V T Videollm-online [14], ProVideLLM [191], EyesWO [235], Streamo [236], ProASIST [12], Videollm-MOD [237], DisPider [62], Stream-VLM [11], Lion-FS [238], ProVideLLM [191], StreamBridge [226]
- - T T SeqPO-SiMT [86], Interleaved Reasoning [239]
- - T S Seed LiveInterpret 2.0 [74]
- - S T Seed LiveInterpret 2.0 [74]
- - S S Seed LiveInterpret 2.0 [74]
- - V T MMDuet2 [85]

3pt

References↩︎

[1]
OpenAI, “Gpt-4 technical report,” arXiv preprint arXiv:2303.08774, 2023.
[2]
G. Team et al., “Gemini: A family of highly capable multimodal models,” arXiv preprint arXiv:2312.11805, 2023.
[3]
DeepSeek-AI, A. Liu, B. Feng, B. Xue, B. Wang, et al., “DeepSeek-V3 technical report,” arXiv preprint arXiv:2412.19437, 2024.
[4]
V. Agostinelli, M. Wild, M. Raffel, K. Fuad, and L. Chen, “Simul-LLM: A framework for exploring high-quality simultaneous translation with large language models,” in Proceedings of the 62nd annual meeting of the association for computational linguistics (volume 1: Long papers), 2024, pp. 10530–10541.
[5]
X. Jin et al., “StreamingAssistant: Efficient visual token pruning for accelerating online video understanding,” arXiv preprint arXiv:2512.12560, 2025.
[6]
H. Yang et al., “Streamagent: Towards anticipatory agents for streaming video understanding,” arXiv preprint arXiv:2508.01875, 2025.
[7]
Z. Li et al., “Watch and listen: Understanding audio-visual-speech moments with multimodal llm,” arXiv preprint arXiv:2505.18110, 2025.
[8]
S. Zhang, S. Guo, Q. Fang, Y. Zhou, and Y. Feng, “Stream-omni: Simultaneous multimodal interactions with large language-vision-speech model,” arXiv preprint arXiv:2506.13642, 2025.
[9]
Z. Zhang et al., “ActiveVLN: Towards active exploration via multi-turn RL in vision-and-language navigation,” arXiv preprint arXiv:2509.12618, 2025.
[10]
G. Zhang et al., “AViLA: Asynchronous vision-language agent for streaming multimodal data interaction,” arXiv preprint arXiv:2506.18472, 2025.
[11]
S. Panchal et al., “What to say and when to say it: Live fitness coaching as a testbed for situated interaction,” Advances in Neural Information Processing Systems, vol. 37, pp. 75853–75882, 2024.
[12]
Y. Zhang et al., “Proactive assistant dialogue generation from streaming egocentric videos,” in Proceedings of the 2025 conference on empirical methods in natural language processing, 2025, pp. 12055–12079.
[13]
J. Tong, Y. Fan, A. Zhao, Y. Ma, and X. Shen, “StreamingThinker: Large language models can think while reading,” arXiv preprint arXiv:2510.17238, 2025.
[14]
J. Chen et al., “Videollm-online: Online video large language model for streaming video,” in Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2024, pp. 18407–18418.
[15]
Z. Du et al., “Cosyvoice 2: Scalable streaming speech synthesis with large language models,” arXiv preprint arXiv:2412.10117, 2024.
[16]
D. Kondratyuk et al., “VideoPoet: A large language model for zero-shot video generation,” in International conference on machine learning, 2024, pp. 25105–25124.
[17]
G. Xiao, Y. Tian, B. Chen, S. Han, and M. Lewis, “Efficient streaming language models with attention sinks,” arXiv preprint arXiv:2309.17453, 2023.
[18]
Gemma Team, “Gemma: Open models based on gemini research and technology,” arXiv preprint arXiv:2403.08295, 2024.
[19]
D. Zhang et al., “SpeechGPT: Empowering large language models with intrinsic cross-modal conversational abilities,” in Findings of the association for computational linguistics: EMNLP 2023, 2023, pp. 15757–15773.
[20]
A. Contributors, Open-source implementation; inspired by VQ-less LLM architecture for image generation“LlamaGen: Large language model for continuous image generation.” 2024.
[21]
C. Wang, J. Zhang, H. Chen, C. Tao, et al., arXiv:1808.08583“Semi-autoregressive neural machine translation,” in Proceedings of the 2018 conference on empirical methods in natural language processing (EMNLP), 2018.
[22]
H. Hwang et al., “Let’s predict sentence by sentence,” arXiv preprint arXiv:2505.22202, 2025.
[23]
X. Ning, Z. Lin, Z. Zhou, Z. Wang, H. Yang, and Y. Wang, “Skeleton-of-thought: Large language models can do parallel decoding,” Proceedings ENLSP-III, 2023.
[24]
X. Gao, W. Xie, Y. Xiang, and F. Ji, “Falcon: Faster and parallel inference of large language models through enhanced semi-autoregressive drafting and custom-designed decoding tree,” in Proceedings of the AAAI conference on artificial intelligence, 2025, vol. 39, pp. 23933–23941.
[25]
F. Gloeckle, B. Y. Idrissi, B. Rozière, D. Lopez-Paz, and G. Synnaeve, “Better & faster large language models via multi-token prediction,” arXiv preprint arXiv:2404.19737, 2024.
[26]
X. Han, S. Kumar, and Y. Tsvetkov, “Ssd-lm: Semi-autoregressive simplex-based diffusion language model for text generation and modular control,” in Proceedings of the 61st annual meeting of the association for computational linguistics (volume 1: Long papers), 2023, pp. 11575–11596.
[27]
A. Liu et al., “WeDLM: Reconciling diffusion language models with standard causal attention for fast inference,” arXiv preprint arXiv:2512.22737, 2025.
[28]
Y. Tian et al., “From next-token to next-block: A principled adaptation path for diffusion LLMs,” arXiv preprint arXiv:2512.06776, 2025.
[29]
M. Arriola et al., “Block diffusion: Interpolating between autoregressive and diffusion language models,” arXiv preprint arXiv:2503.09573, 2025.
[30]
K. Tian, Y. Jiang, Z. Yuan, B. Peng, and L. Wang, “Visual autoregressive modeling: Scalable image generation via next-scale prediction,” Advances in neural information processing systems, vol. 37, pp. 84839–84865, 2024.
[31]
H. Li et al., “Onecat: Decoder-only auto-regressive model for unified understanding and generation,” arXiv preprint arXiv:2509.03498, 2025.
[32]
X. Zhuang et al., “Vargpt: Unified understanding and generation in a visual autoregressive multimodal large language model,” arXiv preprint arXiv:2501.12327, 2025.
[33]
S. Nie et al., “Large language diffusion models,” arXiv preprint arXiv:2502.09992, 2025.
[34]
S. Li et al., “Lavida: A large diffusion language model for multimodal understanding,” arXiv preprint arXiv:2505.16839, 2025.
[35]
Y. Song et al., “Seed diffusion: A large-scale diffusion language model with high-speed inference,” arXiv preprint arXiv:2508.02193, 2025.
[36]
X. L. Li, J. T. Zhao, J. Diffenderfer, X. He, P. Liang, and G. Neubig, “Diffusion-LM improves controllable text generation,” in Advances in neural information processing systems (NeurIPS), 2022.
[37]
Y. Xin et al., “Lumina-dimoo: An omni diffusion large language model for multi-modal generation and understanding,” arXiv preprint arXiv:2510.06308, 2025.
[38]
L. Yang et al., “Mmada: Multimodal large diffusion language models,” arXiv preprint arXiv:2505.15809, 2025.
[39]
Y. Leviathan, M. Kalman, and Y. Matias, “Fast inference from transformers via speculative decoding,” in Proceedings of the 40th international conference on machine learning (ICML), 2023.
[40]
Z. Xiao, H. Zhang, T. Ge, S. Ouyang, V. Ordonez, and D. Yu, “ParallelSpec: Parallel drafter for efficient speculative decoding,” arXiv preprint arXiv:2410.05589, 2024.
[41]
Z. Chen et al., “Accelerating large language model decoding with speculative sampling,” arXiv preprint arXiv:2302.01318, 2023.
[42]
T. Cai et al., “Medusa: Simple llm inference acceleration framework with multiple decoding heads,” arXiv preprint arXiv:2401.10774, 2024.
[43]
Y. Li, F. Wei, C. Zhang, and H. Zhang, “EAGLE-2: Faster inference of language models with dynamic draft trees,” arXiv preprint arXiv:2406.16858, 2024.
[44]
S. Fan et al., “Not all layers of llms are necessary during inference,” arXiv preprint arXiv:2403.02181, 2024.
[45]
L. Del Corro, A. Del Giorno, S. Agarwal, B. Yu, A. Awadallah, and S. Mukherjee, “Skipdecode: Autoregressive skip decoding with batching and caching for efficient llm inference,” arXiv preprint arXiv:2307.02628, 2023.
[46]
A. Zhao et al., “SkipGPT: Dynamic layer pruning reinvented with token awareness and module decoupling,” arXiv preprint arXiv:2506.04179, 2025.
[47]
Z. Liu et al., “Scissorhands: Exploiting the persistence of importance hypothesis for llm kv cache compression at test time,” Advances in Neural Information Processing Systems, vol. 36, pp. 52342–52364, 2023.
[48]
Z. Zhang et al., “H2o: Heavy-hitter oracle for efficient generative inference of large language models,” Advances in Neural Information Processing Systems, vol. 36, pp. 34661–34710, 2023.
[49]
M. Liao et al., G-KV: Decoding-time KV cache eviction with global attention,” arXiv preprint arXiv:2512.00504, 2025.
[50]
W. Huang et al., “Dynamic-llava: Efficient multimodal large language models via dynamic vision-language context sparsification,” arXiv preprint arXiv:2412.00876, 2024.
[51]
K. Deng, W. Chen, X. Chen, and P. Woodland, “SimulS2S-LLM: Unlocking simultaneous inference of speech LLMs for speech-to-speech translation,” in Proceedings of the 63rd annual meeting of the association for computational linguistics (volume 1: Long papers), 2025, pp. 16718–16734.
[52]
S. Guo, S. Zhang, Z. Ma, M. Zhang, and Y. Feng, “Sillm: Large language models for simultaneous machine translation,” arXiv preprint arXiv:2402.13036, 2024.
[53]
S. Guo, S. Zhang, and Y. Feng, “Decoder-only streaming transformer for simultaneous translation,” in Proceedings of the 62nd annual meeting of the association for computational linguistics (volume 1: Long papers), 2024, pp. 8851–8864.
[54]
M. Raffel, V. Agostinelli, and L. Chen, “Simultaneous masking, not prompting optimization: A paradigm shift in fine-tuning LLMs for simultaneous translation,” arXiv preprint arXiv:2405.10443, 2024.
[55]
J. Xu et al., “Qwen3-omni technical report,” arXiv preprint arXiv:2509.17765, 2025.
[56]
J. Xu et al., “Qwen2. 5-omni technical report,” arXiv preprint arXiv:2503.20215, 2025.
[57]
D. Ding et al., “Kimi-audio technical report,” arXiv preprint arXiv:2504.18425, 2025.
[58]
S. Shikhar et al., “Llmvox: Autoregressive streaming text-to-speech model for any llm,” in Findings of the association for computational linguistics: ACL 2025, 2025, pp. 20481–20493.
[59]
S. Liu, Y. Lu, W. Fang, J. Wang, and Z. Xie, “SynC-LLM: Generation of large-scale synthetic circuit code with hierarchical language models,” in Proceedings of the 2025 conference on empirical methods in natural language processing, 2025, pp. 17361–17376.
[60]
R. Xu et al., “Streamingvlm: Real-time understanding for infinite video streams,” arXiv preprint arXiv:2510.09608, 2025.
[61]
J. Chen, Z. Zeng, Y. Lin, W. Li, Z. Ma, and M. Z. Shou, “Livecc: Learning video llm with streaming speech transcription at scale,” in Proceedings of the computer vision and pattern recognition conference, 2025, pp. 29083–29095.
[62]
R. Qian et al., “Dispider: Enabling video llms with active real-time interaction via disentangled perception, decision, and reaction,” in Proceedings of the computer vision and pattern recognition conference, 2025, pp. 24045–24055.
[63]
J. Liu et al., “Streamchat: Chatting with streaming video,” arXiv preprint arXiv:2412.08646, 2024.
[64]
J. Tong et al., “LLM as effective streaming processor: Bridging streaming-batch mismatches with group position encoding,” arXiv preprint arXiv:2505.16983, 2025.
[65]
J. Lin et al., “Speak while watching: Unleashing TRUE real-time video understanding capability of multimodal large language models,” arXiv preprint arXiv:2601.06843, 2026.
[66]
M. Ma et al., “STACL: Simultaneous translation with implicit anticipation and controllable latency using prefix-to-prefix framework,” in Proceedings of the 57th annual meeting of the association for computational linguistics, 2019, pp. 3025–3036.
[67]
Z. Yang, L. Wei, R. Koshkin, X. Chen, and S. Nakamura, “SASST: Leveraging syntax-aware chunking and LLMs for simultaneous speech translation,” arXiv preprint arXiv:2508.07781, 2025.
[68]
R. Koshkin, K. Sudoh, and S. Nakamura, “Transllama: Llm-based simultaneous translation system,” arXiv preprint arXiv:2402.04636, 2024.
[69]
L. Zhao, J. Li, and Z. Zeng, “DrFrattn: Directly learn adaptive policy from attention for simultaneous machine translation,” in Proceedings of the 2025 conference on empirical methods in natural language processing, 2025, pp. 34881–34894.
[70]
X. Chen et al., “Divergence-guided simultaneous speech translation,” in Proceedings of the AAAI conference on artificial intelligence, 2024, vol. 38, pp. 17799–17807.
[71]
D. Macháček, R. Dabre, and O. Bojar, “Turning whisper into real-time transcription system,” arXiv preprint arXiv:2307.14743, 2023.
[72]
J.-N. Li, Q. Tu, C. Mao, Z. Yu, J.-R. Wen, and R. Yan, “Streamingdialogue: Prolonged dialogue learning via long context compression with minimal losses,” Advances in Neural Information Processing Systems, vol. 37, pp. 86074–86101, 2024.
[73]
L. Yao et al., “Timechat-online: 80% visual tokens are naturally redundant in streaming videos,” in Proceedings of the 33rd ACM international conference on multimedia, 2025, pp. 10807–10816.
[74]
S. Cheng et al., “Seed LiveInterpret 2.0: End-to-end simultaneous speech-to-speech translation with your voice,” arXiv preprint arXiv:2507.17527, 2025.
[75]
Y. Li, Q. Sheng, Y. Yang, X. Zhang, and J. Cao, “From judgment to interference: Early stopping LLM harmful outputs via streaming content monitoring,” arXiv preprint arXiv:2506.09996, 2025.
[76]
F. Seide, M. Doulaty, Y. Shi, Y. Gaur, J. Jia, and C. Wu, “Speech ReaLLM–real-time streaming speech recognition with multimodal LLMs by teaching the flow of time,” arXiv preprint arXiv:2406.09569, 2024.
[77]
Q. Fang, S. Guo, Y. Zhou, Z. Ma, S. Zhang, and Y. Feng, “Llama-omni: Seamless speech interaction with large language models,” arXiv preprint arXiv:2409.06666, 2024.
[78]
N. Zeghidour et al., “Streaming sequence-to-sequence learning with delayed streams modeling,” arXiv preprint arXiv:2509.08753, 2025.
[79]
X. Ding et al., “Streammind: Unlocking full frame rate streaming video dialogue through event-gated cognition,” in Proceedings of the IEEE/CVF international conference on computer vision, 2025, pp. 13448–13459.
[80]
M. Wei et al., “Streamvln: Streaming vision-and-language navigation via slowfast context modeling,” arXiv preprint arXiv:2507.05240, 2025.
[81]
G. Yakushev, N. Babina, M. V. Dastgerdi, V. Zhdanovskiy, A. Shutova, and D. Kuznedelev, “Asynchronous reasoning: Training-free interactive thinking LLMs,” arXiv preprint arXiv:2512.10931, 2025.
[82]
S. Arora et al., “Stream rag: Instant and accurate spoken dialogue systems with streaming tool usage,” arXiv preprint arXiv:2510.02044, 2025.
[83]
Y. Xu, X. Kong, T. Chen, and D. Zhuo, “Conveyor: Efficient tool-aware llm serving with tool partial execution,” arXiv preprint arXiv:2406.00059, 2024.
[84]
I. Gim, S. Lee, and L. Zhong, “Asynchronous LLM function calling,” arXiv preprint arXiv:2412.07017, 2024.
[85]
Y. Wang et al., “MMDuet2: Enhancing proactive interaction of video MLLMs with multi-turn reinforcement learning,” arXiv preprint arXiv:2512.06810, 2025.
[86]
T. Xu, Z. Huang, J. Sun, S. Cheng, and W. Lam, “Seqpo-simt: Sequential policy optimization for simultaneous machine translation,” arXiv preprint arXiv:2505.20622, 2025.
[87]
H. Zhang et al., “Flash-vstream: Memory-based real-time understanding for long video streams,” arXiv preprint arXiv:2406.08085, 2024.
[88]
H. Li et al., “A survey on large language model acceleration based on kv cache management,” arXiv preprint arXiv:2412.19442, 2024.
[89]
P. V. Dantas, L. C. Cordeiro, and W. S. Junior, “A review of state-of-the-art techniques for large language model compression,” Complex & Intelligent Systems, vol. 11, no. 9, p. 407, 2025.
[90]
J. Cheng et al., “Survey on efficient large language models: Principles, algorithms, applications, and open issues,” IEEE Transactions on Neural Networks and Learning Systems, 2025.
[91]
D. Zhang et al., “Mm-llms: Recent advances in multimodal large language models,” arXiv preprint arXiv:2401.13601, 2024.
[92]
J. Liu et al., “A comprehensive survey on long context language modeling,” arXiv preprint arXiv:2503.17407, 2025.
[93]
X. Wang, M. Salmani, P. Omidi, X. Ren, M. Rezagholizadeh, and A. Eshaghi, “Beyond the limits: A survey of techniques to extend the context length in large language models,” arXiv preprint arXiv:2402.02244, 2024.
[94]
H. Wu et al., “From data to model: A survey of the compression lifecycle in MLLMs,” TechRxiv preprint TechRxiv:177220375.55495124, 2026.
[95]
D. Caffagni et al., “The revolution of multimodal large language models: A survey,” arXiv preprint arXiv:2402.12451, 2024.
[96]
A. Yang et al., “Qwen3 technical report,” arXiv preprint arXiv:2505.09388, 2025.
[97]
Z. Chen et al., “Internvl: Scaling up vision foundation models and aligning for generic visual-linguistic tasks,” in Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2024, pp. 24185–24198.
[98]
T. GLM et al., “Chatglm: A family of large language models from glm-130b to glm-4 all tools,” arXiv preprint arXiv:2406.12793, 2024.
[99]
Z. Borsos et al., “Audiolm: A language modeling approach to audio generation,” IEEE/ACM transactions on audio, speech, and language processing, vol. 31, pp. 2523–2533, 2023.
[100]
P. K. Rubenstein et al., “Audiopalm: A large language model that can speak and listen,” arXiv preprint arXiv:2306.12925, 2023.
[101]
H.-H. Guo et al., “Fireredtts: A foundation text-to-speech framework for industry-level generative speech applications,” arXiv preprint arXiv:2409.03283, 2024.
[102]
A. Défossez et al., “Moshi: A speech-text foundation model for real-time dialogue,” arXiv preprint arXiv:2410.00037, 2024.
[103]
Q. Fang, Y. Zhou, S. Guo, S. Zhang, and Y. Feng, “Llama-omni2: Llm-based real-time spoken chatbot with autoregressive streaming speech synthesis,” arXiv preprint arXiv:2505.02625, 2025.
[104]
J. Hao, B. Zhang, Y. Lu, C. Zhang, and K. Yang, “StyLLE: Style learning and latent editing for stylized text and speech generation.”
[105]
R. H. Bai, Z. Gu, T. Likhomanenko, and N. Jaitly, “SpeakStream: Streaming text-to-speech with interleaved data,” arXiv preprint arXiv:2505.19206, 2025.
[106]
A. Ramesh et al., “Zero-shot text-to-image generation,” arXiv preprint arXiv:2102.12092, 2021.
[107]
C. Team, “Chameleon: Mixed-modal early-fusion foundation models,” arXiv preprint arXiv:2405.09818, 2024.
[108]
X. Wang et al., “Emu3: Next-token prediction is all you need,” arXiv preprint arXiv:2409.18869, 2024.
[109]
E. Chern, J. Su, Y. Ma, and P. Liu, “Anole: An open, autoregressive, native large multimodal models for interleaved image-text generation,” arXiv preprint arXiv:2407.06135, 2024.
[110]
J. Han et al., “Infinity: Scaling bitwise autoregressive modeling for high-resolution image synthesis,” in Proceedings of the computer vision and pattern recognition conference, 2025, pp. 15733–15744.
[111]
C. Huang and H. Tang, “Ctrldiff: Boosting large diffusion language models with dynamic block prediction and controllable generation,” arXiv preprint arXiv:2505.14455, 2025.
[112]
Y. Yang et al., “Pseudo-autoregressive neural codec language models for efficient zero-shot text-to-speech synthesis,” in Proceedings of the 33rd ACM international conference on multimedia, 2025, pp. 9316–9325.
[113]
Z. Sheng, Z. Du, S. Zhang, Z. Yan, Y. Yang, and Z. Ling, “SyncSpeech: Low-latency and efficient dual-stream text-to-speech based on temporal masked transformer,” arXiv preprint arXiv:2502.11094, 2025.
[114]
B. Li et al., “Robust and efficient autoregressive speech synthesis with dynamic chunk-wise prediction policy,” arXiv preprint arXiv:2506.22023, 2025.
[115]
D. Guo, J. Yao, L. Ma, H. Wang, and L. Xie, “StreamFlow: Streaming flow matching with block-wise guided attention mask for speech token decoding,” arXiv preprint arXiv:2506.23986, 2025.
[116]
T. Liu et al., “From text to talk: Audio-language model needs non-autoregressive joint training,” arXiv preprint arXiv:2509.20072, 2025.
[117]
D. Jia et al., “DiTAR: Diffusion transformer autoregressive modeling for speech generation,” in Proceedings of the 42nd international conference on machine learning, 2025, vol. 267, pp. 27255–27270.
[118]
J. Xie et al., “Show-o: One single transformer to unify multimodal understanding and generation,” arXiv preprint arXiv:2408.12528, 2024.
[119]
E. Amrani, L. Karlinsky, and A. Bronstein, “Sample-and parameter-efficient auto-regressive image models,” in Proceedings of the computer vision and pattern recognition conference, 2025, pp. 30127–30136.
[120]
S. Ren, S. Ma, X. Sun, and F. Wei, “Next block prediction: Video generation via semi-autoregressive modeling,” arXiv preprint arXiv:2502.07737, 2025.
[121]
T. Yin et al., “From slow bidirectional to fast autoregressive video diffusion models,” in Proceedings of the computer vision and pattern recognition conference, 2025, pp. 22963–22974.
[122]
Z. Zhang et al., “BlockVid: Block diffusion for high-quality and consistent minute-long video generation,” arXiv preprint arXiv:2511.22973, 2025.
[123]
M. Ghazvininejad, O. Levy, Y. Liu, and L. Zettlemoyer, “Mask-predict: Parallel decoding of conditional masked language models,” in Proceedings of EMNLP-IJCNLP, 2019.
[124]
J. Gu, C. Wang, and J. Zhao, “Levenshtein transformer,” in Advances in neural information processing systems (NeurIPS), 2019.
[125]
L. Ruis, M. Stern, J. Proskurnia, and W. Chan, “Insertion-deletion transformer,” arXiv preprint arXiv:2001.05540, 2020.
[126]
C. Gong, X. Feng, G. Qin, Y. Liu, et al., “DiffuSeq: Sequence to sequence text generation with diffusion models,” arXiv preprint arXiv:2210.08933, 2022.
[127]
J. Austin, D. D. Johnson, J. Ho, D. Tarlow, and A. van den Oord, “Structured denoising diffusion models in discrete state-spaces,” arXiv preprint arXiv:2107.03006, 2021.
[128]
Z. Borsos, M. Sharifi, D. Vincent, E. Kharitonov, N. Zeghidour, and M. Tagliasacchi, “Soundstorm: Efficient parallel audio generation,” arXiv preprint arXiv:2305.09636, 2023.
[129]
M. Le et al., “Voicebox: Text-guided multilingual universal speech generation at scale,” Advances in neural information processing systems, vol. 36, pp. 14005–14034, 2023.
[130]
M. Comunità et al., “Specmaskgit: Masked generative modeling of audio spectrograms for efficient audio synthesis and beyond,” arXiv preprint arXiv:2406.17672, 2024.
[131]
K.-P. Huang et al., “IMPACT: Iterative mask-based parallel decoding for text-to-audio generation with diffusion modeling,” arXiv preprint arXiv:2506.00736, 2025.
[132]
Y. Wang et al., “Maskgct: Zero-shot text-to-speech with masked generative codec transformer,” arXiv preprint arXiv:2409.00750, 2024.
[133]
P.-J. Ku, H. Huang, J.-M. Lemercier, S. S. Sahoo, Z. Chen, and A. Jukić, “Discrete diffusion for generative modeling of text-aligned speech tokens,” arXiv preprint arXiv:2509.20060, 2025.
[134]
H. Chang, H. Zhang, L. Jiang, C. Liu, and W. T. Freeman, “Maskgit: Masked generative image transformer,” in Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2022, pp. 11315–11325.
[135]
H. Chang et al., “Muse: Text-to-image generation via masked generative transformers,” arXiv preprint arXiv:2301.00704, 2023.
[136]
W. Peebles and S. Xie, “Scalable diffusion models with transformers,” arXiv preprint arXiv:2212.09748, 2022.
[137]
Y. Liu et al., “Detailflow: 1d coarse-to-fine autoregressive image generation via next-detail prediction,” arXiv preprint arXiv:2505.21473, 2025.
[138]
Y. Wu et al., “Dc-ar: Efficient masked autoregressive image generation with deep compression hybrid tokenizer,” in Proceedings of the IEEE/CVF international conference on computer vision, 2025, pp. 18034–18045.
[139]
S. Kim et al., “Speculative decoding with big little decoder,” Advances in Neural Information Processing Systems, vol. 36, pp. 39236–39256, 2023.
[140]
Z. Wen, S. Gui, and Y. Feng, “Speculative decoding with CTC-based draft model for LLM inference acceleration,” Advances in Neural Information Processing Systems, vol. 37, pp. 92082–92100, 2024.
[141]
J. Liu, B. Park, and X. Shen, “A drop-in solution for on-the-fly adaptation of speculative decoding in large language models,” in Proceedings of the 63rd annual meeting of the association for computational linguistics (volume 1: Long papers), 2025, pp. 9778–9794.
[142]
J. Liu, Q. Wang, J. Wang, and X. Cai, “Speculative decoding via early-exiting for faster llm inference with thompson sampling control mechanism,” arXiv preprint arXiv:2406.03853, 2024.
[143]
H. Wu, Y. Fan, J. Dai, J. Tong, Y. Ma, and X. Shen, “HiDrop: Hierarchical vision token reduction in MLLMs via late injection, concave pyramid pruning, and early exit,” arXiv preprint arXiv:2602.23699, 2026.
[144]
Y. Fan et al., “VisiPruner: Decoding discontinuous cross-modal dynamics for efficient multimodal LLMs,” in Proceedings of the 2025 conference on empirical methods in natural language processing, 2025, pp. 18896–18913.
[145]
T. Dang, D. Aponte, D. Tran, and K. Koishida, “LiveSpeech: Low-latency zero-shot text-to-speech via autoregressive modeling of audio discrete codes,” arXiv preprint arXiv:2406.02897, 2024.
[146]
T. D. Nguyen et al., “Accelerating codec-based speech synthesis with multi-token prediction and speculative decoding,” in ICASSP 2025-2025 IEEE international conference on acoustics, speech and signal processing (ICASSP), 2025, pp. 1–5.
[147]
Z. Lin et al., “Accelerating autoregressive speech synthesis inference with speech speculative decoding,” arXiv preprint arXiv:2505.15380, 2025.
[148]
Y. Wang et al., “Vocalnet: Speech llm with multi-token prediction for faster and high-quality generation,” arXiv preprint arXiv:2504.04060, 2025.
[149]
B. Li, H. Wang, S. Zhang, Y. Guo, and K. Yu, “Fast and high-quality auto-regressive speech synthesis via speculative decoding,” in ICASSP 2025-2025 IEEE international conference on acoustics, speech and signal processing (ICASSP), 2025, pp. 1–5.
[150]
M. Yanuka, P. Dixon, E. Finkelshtein, D. Rotman, and R. Giryes, “Principled coarse-grained acceptance for speculative decoding in speech,” arXiv preprint arXiv:2511.13732, 2025.
[151]
Y. Teng et al., “Accelerating auto-regressive text-to-image generation with training-free speculative jacobi decoding,” arXiv preprint arXiv:2410.01699, 2024.
[152]
Z. Wang, R. Zhang, K. Ding, Q. Yang, F. Li, and S. Xiang, “Continuous speculative decoding for autoregressive image generation,” arXiv preprint arXiv:2411.11925, 2024.
[153]
J. So, J. Shin, H. Kook, and E. Park, “Grouped speculative decoding for autoregressive image generation,” in Proceedings of the IEEE/CVF international conference on computer vision, 2025, pp. 15375–15384.
[154]
H. Dong, Y. Li, R. Lu, C. Tang, S.-T. Xia, and Z. Wang, “VVS: Accelerating speculative decoding for visual autoregressive generation via partial verification skipping,” arXiv preprint arXiv:2511.13587, 2025.
[155]
Y. Li, chengfei lv, and H. Wang, “FreqExit: Enabling early-exit inference for visual autoregressive models via frequency-aware guidance,” in The thirty-ninth annual conference on neural information processing systems, 2025.
[156]
J. Li, Y. Ma, X. Zhang, Q. Wei, S. Liu, and L. Zhang, “SkipVAR: Accelerating visual autoregressive modeling via adaptive frequency-aware skipping,” arXiv preprint arXiv:2506.08908, 2025.
[157]
Y. Wang et al., “Parallelized autoregressive visual generation,” in Proceedings of the computer vision and pattern recognition conference, 2025, pp. 12955–12965.
[158]
H. Lei, H. Wang, X. Geng, L. Wang, and P. Zhou, “Fast inference of visual autoregressive model with adjacency-adaptive dynamical draft trees,” arXiv preprint arXiv:2512.21857, 2025.
[159]
D. Jang et al., “Lantern: Accelerating visual autoregressive models with relaxed speculative decoding,” arXiv preprint arXiv:2410.03355, 2024.
[160]
Y. Li et al., “Snapkv: Llm knows what you are looking for before generation,” Advances in Neural Information Processing Systems, vol. 37, pp. 22947–22970, 2024.
[161]
X. Zhou et al., “Dynamickv: Task-aware adaptive kv cache compression for long context llms,” arXiv preprint arXiv:2412.14838, 2024.
[162]
X. Liu et al., “Chunkkv: Semantic-preserving kv cache compression for efficient long-context llm inference,” arXiv preprint arXiv:2502.00299, 2025.
[163]
H. Wu, N. Kanda, S. E. Eskimez, and J. Li, “Ts3-codec: Transformer-based simple streaming single codec,” arXiv preprint arXiv:2411.18803, 2024.
[164]
Y.-J. Lu et al., “Latent speech-text transformer,” arXiv preprint arXiv:2510.06195, 2025.
[165]
W. Liu et al., “Speech token prediction via compressed-to-fine language modeling for speech generation,” in Proceedings of the 33rd ACM international conference on multimedia, 2025, pp. 10632–10641.
[166]
Z. Qin, Y. Lv, M. Lin, Z. Zhang, D. Zou, and W. Lin, “Head-aware kv cache compression for efficient visual autoregressive modeling,” arXiv preprint arXiv:2504.09261, 2025.
[167]
K. Li, Z. Chen, C.-Y. Yang, and J.-N. Hwang, “Memory-efficient visual autoregressive modeling with scale-aware KV cache compression,” arXiv preprint arXiv:2505.19602, 2025.
[168]
B. Xu, Y. Wang, Z. Wang, and P. Li, “AMS-KV: Adaptive KV caching in multi-scale visual autoregressive transformers,” arXiv preprint arXiv:2511.16047, 2025.
[169]
Z. Qin et al., “Autoregressive image generation needs only a few lines of cached tokens,” arXiv preprint arXiv:2512.04857, 2025.
[170]
M. Wang, T. Vu, J. Zhao, F. Shiri, E. Shareghi, and G. Haffari, “Simultaneous machine translation with large language models,” in Proceedings of the 22nd annual workshop of the australasian language technology association, 2024, pp. 89–103.
[171]
Z. Ye et al., “Codec does matter: Exploring the semantic shortcoming of codec for audio language model,” in Proceedings of the AAAI conference on artificial intelligence, 2025, vol. 39, pp. 25697–25705.
[172]
R. H. Bai, T. Likhomanenko, R. Zhang, Z. Gu, Z. Aldeneh, and N. Jaitly, “Dmel: Speech tokenization made simple,” arXiv preprint arXiv:2407.15835, 2024.
[173]
M. Frohmann, I. Sterner, I. Vulić, B. Minixhofer, and M. Schedl, “Segment any text: A universal approach for robust, efficient and adaptable sentence segmentation,” arXiv preprint arXiv:2406.16678, 2024.
[174]
M. Shi et al., “Semantic VAD: Low-latency voice activity detection for speech interaction,” arXiv preprint arXiv:2305.12450, 2023.
[175]
S. Zhang and Y. Feng, “End-to-end simultaneous speech translation with differentiable segmentation,” arXiv preprint arXiv:2305.16093, 2023.
[176]
A. Graves, “Connectionist temporal classification,” in Supervised sequence labelling with recurrent neural networks, Springer, 2012, pp. 61–93.
[177]
Z. Xin, Z. Dong, L. Shimin, Z. Yaqian, and Q. Xipeng, “Speechtokenizer: Unified speech tokenizer for speech language models,” in Proc. Int. Conf. Learn. representations, 2024, pp. 1–21.
[178]
Y. Zhao, C. Luo, C. Tang, D. Chen, N. Codella, and Z.-J. Zha, “Streaming video model,” in Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2023, pp. 14602–14612.
[179]
J. Iranzo-Sánchez, J. Iranzo-Sánchez, A. Giménez, J. Civera, and A. Juan, “Segmentation-free streaming machine translation,” Transactions of the Association for Computational Linguistics, vol. 12, pp. 1104–1121, 2024.
[180]
B. Minixhofer, J. Pfeiffer, and I. Vulić, “Where’s the point? Self-supervised multilingual punctuation-agnostic sentence segmentation,” arXiv preprint arXiv:2305.18893, 2023.
[181]
T. Kudo, “Subword regularization: Improving neural network translation models with multiple subword candidates,” arXiv preprint arXiv:1804.10959, 2018.
[182]
T. Kudo and J. Richardson, “SentencePiece: A simple and language independent subword tokenizer and detokenizer for neural text processing,” arXiv preprint arXiv:1808.06226, 2018.
[183]
A. Dosovitskiy, “An image is worth 16x16 words: Transformers for image recognition at scale,” arXiv preprint arXiv:2010.11929, 2020.
[184]
A. Radford et al., “Learning transferable visual models from natural language supervision,” in International conference on machine learning, 2021, pp. 8748–8763.
[185]
X. Chen, K. Tao, K. Shao, and H. Wang, “StreamingTOM: Streaming token compression for efficient video understanding,” arXiv preprint arXiv:2510.18269, 2025.
[186]
W. Zhong et al., “Enhancing large language models with long‑term memory,” AAAI Conference on Artificial Intelligence, 2024.
[187]
W. Wang et al., “Augmenting language models with long-term memory,” Advances in Neural Information Processing Systems, vol. 36, pp. 74530–74543, 2023.
[188]
R. Qian et al., “Streaming long video understanding with large language models,” Advances in Neural Information Processing Systems, vol. 37, pp. 119336–119360, 2024.
[189]
X. Huang, H. Zhou, and K. Han, “Prunevid: Visual token pruning for efficient video large language models,” in Findings of the association for computational linguistics: ACL 2025, 2025, pp. 19959–19973.
[190]
K. Tao, C. Qin, H. You, Y. Sui, and H. Wang, “DyCoke: Dynamic compression of tokens for fast video large language models,” in Proceedings of the computer vision and pattern recognition conference, 2025, pp. 18992–19001.
[191]
D. Chatterjee et al., “Streaming VideoLLMs for real-time procedural video understanding,” in Proceedings of the IEEE/CVF international conference on computer vision, 2025, pp. 22586–22598.
[192]
Y. Wang, Y. Song, C. Xie, Y. Liu, and Z. Zheng, “Videollamb: Long streaming video understanding with recurrent memory bridges,” in Proceedings of the IEEE/CVF international conference on computer vision, 2025, pp. 24170–24181.
[193]
C. Wei et al., “Focus: A streaming concentration architecture for efficient vision-language models,” arXiv preprint arXiv:2512.14661, 2025.
[194]
X. Zeng et al., “Streamforest: Efficient online video understanding with persistent event memory,” arXiv preprint arXiv:2509.24871, 2025.
[195]
Z. Cai et al., “Pyramidkv: Dynamic kv cache compression based on pyramidal information funneling,” arXiv preprint arXiv:2406.02069, 2024.
[196]
Y. Chen et al., “StreamKV: Streaming video question-answering with segment-based KV cache retrieval and compression,” arXiv preprint arXiv:2511.07278, 2025.
[197]
Y. Wang et al., “Accelerating streaming video large language models via hierarchical token compression,” arXiv preprint arXiv:2512.00891, 2025.
[198]
Y. Yang et al., “Streammem: Query-agnostic kv cache memory for streaming video understanding,” arXiv preprint arXiv:2508.15717, 2025.
[199]
D. Yang, X. Han, Y. Gao, Y. Hu, S. Zhang, and H. Zhao, “Pyramidinfer: Pyramid kv cache compression for high-throughput llm inference,” arXiv preprint arXiv:2405.12532, 2024.
[200]
A. Wang et al., “Prefixkv: Adaptive prefix kv cache is what vision instruction-following models need for efficient generation,” arXiv preprint arXiv:2412.03409, 2024.
[201]
Z. Qin et al., “Cake: Cascading and adaptive kv cache eviction with layer preferences,” arXiv preprint arXiv:2503.12491, 2025.
[202]
X. Zhang, C. Du, C. Du, T. Pang, W. Gao, and M. Lin, “Simlayerkv: A simple framework for layer-level KV cache reduction,” 2024.
[203]
Y. Feng, J. Lv, Y. Cao, X. Xie, and S. K. Zhou, “Ada-kv: Optimizing kv cache eviction by adaptive budget allocation for efficient llm inference,” arXiv preprint arXiv:2407.11550, 2024.
[204]
Y. Feng, J. Lv, Y. Cao, X. Xie, and S. K. Zhou, “Identify critical kv cache in llm inference from an output perturbation perspective,” arXiv preprint arXiv:2502.03805, 2025.
[205]
Y. Zhang, Y. Hu, R. Zhao, J. Lui, and H. Chen, “Unifying kv cache compression for large language models with leankv,” arXiv preprint arXiv:2412.03131, 2024.
[206]
H. Tang et al., “Razorattention: Efficient kv cache compression through retrieval heads,” arXiv preprint arXiv:2407.15891, 2024.
[207]
Y. Fu, Z. Cai, A. Asi, W. Xiong, Y. Dong, and W. Xiao, “Not all heads matter: A head-level kv cache compression method with integrated retrieval and reasoning,” arXiv preprint arXiv:2410.19258, 2024.
[208]
G. Xiao et al., “Duoattention: Efficient long-context llm inference with retrieval and streaming heads,” arXiv preprint arXiv:2410.10819, 2024.
[209]
Y. Yao, Z. Li, and H. Zhao, “Sirllm: Streaming infinite retentive llm,” arXiv preprint arXiv:2405.12528, 2024.
[210]
S. Yang, B. Wang, Y. Shen, R. Panda, and Y. Kim, “Gated linear attention transformers with hardware-efficient training,” arXiv preprint arXiv:2312.06635, 2023.
[211]
S. Yang, B. Wang, Y. Zhang, Y. Shen, and Y. Kim, “Parallelizing linear transformers with the delta rule over sequence length,” Advances in neural information processing systems, vol. 37, pp. 115491–115522, 2024.
[212]
Z. Qin, W. Sun, D. Li, X. Shen, W. Sun, and Y. Zhong, “Lightning attention-2: A free lunch for handling unlimited sequence lengths in large language models,” arXiv preprint arXiv:2401.04658, 2024.
[213]
Q. Zhu et al., “Sampleattention: Near-lossless acceleration of long context llm inference with adaptive structured sparse attention,” Proceedings of Machine Learning and Systems, vol. 7, 2025.
[214]
S. Yang et al., “Lserve: Efficient long-sequence llm serving with unified sparse attention,” arXiv preprint arXiv:2502.14866, 2025.
[215]
C. An et al., “Training-free long-context scaling of large language models,” arXiv preprint arXiv:2402.17463, 2024.
[216]
R. Koshkin, K. Sudoh, and S. Nakamura, “LLMs are zero-shot context-aware simultaneous translators,” in Proceedings of the 2024 conference on empirical methods in natural language processing, 2024, pp. 1192–1207.
[217]
Z. Xie and C. Wu, “Mini-omni: Language models can hear, talk while thinking in streaming,” arXiv preprint arXiv:2408.16725, 2024.
[218]
S. Fu et al., “ViSpeak: Visual instruction feedback in streaming videos,” arXiv preprint arXiv:2503.12769, 2025.
[219]
B. Fu et al., “Llms can achieve high-quality simultaneous machine translation as efficiently as offline,” in Findings of the association for computational linguistics: ACL 2025, 2025, pp. 20372–20395.
[220]
C.-H. Chiang et al., “SHANKS: Simultaneous hearing and thinking for spoken language models,” arXiv preprint arXiv:2510.06917, 2025.
[221]
C.-H. Chiang et al., “Stitch: Simultaneous thinking and talking with chunked reasoning for spoken language models,” arXiv preprint arXiv:2507.15375, 2025.
[222]
B. Fu et al., “Efficient and adaptive simultaneous speech translation with fully unidirectional architecture,” arXiv preprint arXiv:2504.11809, 2025.
[223]
S. Ouyang, X. Xu, and L. Li, “Infinisst: Simultaneous translation of unbounded speech with large language model,” in Findings of the association for computational linguistics: ACL 2025, 2025, pp. 3032–3046.
[224]
G. Wan, W. Zhang, J.-X. Zhang, S. Xiong, J. Gao, and Z. Ye, “Streaming speech recognition with decoder-only large language models and latency optimization,” arXiv preprint arXiv:2601.22779, 2026.
[225]
W. Yu et al., “SALMONN-omni: A codec-free LLM for full-duplex speech understanding and generation,” arXiv preprint arXiv:2411.18138, 2024.
[226]
H. Wang et al., “Streambridge: Turning your offline video large language model into a proactive streaming assistant,” arXiv preprint arXiv:2505.05467, 2025.
[227]
Z. Yang et al., “LiveStar: Live streaming assistant for real-world online video understanding,” arXiv preprint arXiv:2511.05299, 2025.
[228]
Z. Yang et al., “Svbench: A benchmark with temporal multi-turn dialogues for streaming video understanding,” arXiv preprint arXiv:2502.10810, 2025.
[229]
J. Zhang et al., “Think-as-you-see: Streaming chain-of-thought reasoning for large vision-language models,” arXiv preprint arXiv:2603.02872, 2026.
[230]
Y. Yang et al., “Interleaved speech-text language models are simple streaming text to speech synthesizers,” arXiv preprint arXiv:2412.16102, 2024.
[231]
Y. Xia et al., “MFLA: Monotonic finite look-ahead attention for streaming speech recognition,” arXiv preprint arXiv:2506.03722, 2025.
[232]
L. Zhao, J. Li, and Z. Zeng, “PsFuture: A pseudo-future-based zero-shot adaptive policy for simultaneous machine translation,” in Proceedings of the 2024 conference on empirical methods in natural language processing, 2024, pp. 1869–1881.
[233]
C. Le, B. Han, J. Li, S. Chen, and Y. Qian, “SimulMEGA: MoE routers are advanced policy makers for simultaneous speech translation,” arXiv preprint arXiv:2509.01200, 2025.
[234]
S. Zhang, Q. Fang, S. Guo, Z. Ma, M. Zhang, and Y. Feng, “Streamspeech: Simultaneous speech-to-speech translation with multi-task learning,” in Proceedings of the 62nd annual meeting of the association for computational linguistics (volume 1: Long papers), 2024, pp. 8964–8986.
[235]
Y. Zhang, C. Shi, Y. Wang, and S. Yang, “Eyes wide open: Ego proactive video-llm for streaming video,” arXiv preprint arXiv:2510.14560, 2025.
[236]
J. Xia, P. Chen, M. Zhang, X. Sun, and K. Zhou, “Streaming video instruction tuning,” arXiv preprint arXiv:2512.21334, 2025.
[237]
S. Wu et al., “Videollm-mod: Efficient video-language streaming with mixture-of-depths vision computation,” Advances in Neural Information Processing Systems, vol. 37, pp. 109922–109947, 2024.
[238]
W. Li, B. Hu, R. Shao, L. Shen, and L. Nie, “Lion-fs: Fast & slow video-language thinker as online video assistant,” in Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2025, pp. 3240–3251.
[239]
R. Xie et al., “Interleaved reasoning for large language models via reinforcement learning,” arXiv preprint arXiv:2505.19640, 2025.

  1. Corresponding author↩︎

  2. We provide a detailed description of motivation, survey scope, and difference with related surveys in Appendix 8.↩︎

  3. We provide related survey papers on efficient LLMs in 8 for reference.↩︎