skillfed

transformers-stream-generator

This is a text generation method which returns a generator, streaming out each token in real-time during inference, based on Huggingface/Transformers.

transformers-stream-generator v0.0.5 345.9K downloads/30d#7,360 on PyPI95
Permissive license MIT License DORMANT released

What it is and what it does

This package wraps Hugging Face Transformers to enable token-by-token streaming during text generation. Instead of waiting for model.generate() to complete and return all tokens at once, you call init_stream_support() once, then pass do_stream=True to generate(), and receive a generator that yields each token as it is produced. This is useful for real-time applications like chatbots or live transcription where you want to display output incrementally rather than after the full inference completes.

The package works by modifying Transformers internals through monkey-patching. It has no explicit runtime dependencies and supports Python 3.5 and later. However, it is dormant (last updated 2024-03-11) and may not work with newer Transformers versions that have changed their generation API or internal structure.

Use it for:

  • Build a chatbot or conversational interface that displays model responses token-by-token as they are generated.
  • Stream long-form text generation (summaries, articles) to a web client in real-time without waiting for completion.
  • Implement live transcription or translation where partial results appear as soon as each token is ready.
  • Create interactive demos where users see model output appearing incrementally, improving perceived responsiveness.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Modifies Hugging Face Transformers model.generate() to return a token-by-token generator instead of waiting for full inference completion, enabling real-time streaming output during text generation.

Yes, with conditions. Install if you need token-by-token streaming for a Transformers model and your Transformers version is close to 2024-03-11 or earlier. Do not install if you are using a recent Transformers version, as the dormant status and monkey-patching approach mean compatibility is not guaranteed. Test thoroughly in your environment before production use.

Install

transformers-stream-generator on PyPI

pip

pip install transformers-stream-generator

uv

uv add transformers-stream-generator

poetry

poetry add transformers-stream-generator

Installing transformers-stream-generator

Before you install

High install friction: no runtime dependencies listed, but the package modifies Transformers internals via monkey-patching (init_stream_support). Last commit was 2024-03-11 and the project is dormant, meaning it may not track breaking changes in newer Transformers versions.

License in practice

MIT License is permissive and imposes no restrictions on use or redistribution, though you should verify compatibility with your Transformers version's license.

Quickstart

pip install transformers-stream-generator

from transformers_stream_generator import init_stream_support
init_stream_support()

generator = model.generate(input_ids, do_stream=True, do_sample=True)
for token in generator:
    word = tokenizer.decode(token)
    print(word)

Requires an existing Transformers installation and a compatible model; the package monkey-patches Transformers internals, so compatibility with your installed Transformers version is not guaranteed given the project's dormant status.

Verify before relying

  • Compatibility with Transformers versions released after 2024-03-11 (the last commit date).
  • Whether the monkey-patching approach in init_stream_support() breaks or conflicts with recent Transformers API changes.
  • Performance overhead or memory implications of streaming vs. standard generation.

Package facts

License MIT License (permissive)
Python support supports the current Python release (>=3.5)
Install friction high — source build required
Runtime dependencies none
Maintenance dormant — 886 days since the last release
Last repo commit
First released
Downloads 345,880/month — #7,360 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: transformers-stream-generator-0.0.5.tar.gz

Keywords: GPT, stream, transformers, NLP, model hub, transformer, text generation, summarization, translation, q&a, qg, machine learning, CausalLM

Intended Audience :: DevelopersLicense :: OSI Approved :: Apache Software LicenseProgramming Language :: Python :: 3Programming Language :: Python :: 3.10Programming Language :: Python :: 3.5Programming Language :: Python :: 3.6Programming Language :: Python :: 3.7Programming Language :: Python :: 3.8Programming Language :: Python :: 3.9Topic :: Scientific/Engineering :: Artificial Intelligence

Tags

streaming text generationtoken streaming transformersreal-time language model outputgenerator-based inferencehuggingface streamingincremental token output
streaming-inferencemonkey-patching

More Artificial Intelligence packages