textgen

AIAGPL-3.0

textgen release notes.

Latest v4.9 · by textgenWritten in PythonWebsiteoobabooga/textgenRSS

Release activity

Release activity — 10 releases across 5 days since Apr 15, 2026. Each cell is one day; darker means more releases that day. Nothing is recorded before Apr 15, 2026. Older weeks are hidden at this screen width.
JunJulAugSep
SundayNo releases on May 24, 2026No releases on May 31, 2026No releases on Jun 7, 2026No releases on Jun 14, 2026No releases on Jun 21, 2026No releases on Jun 28, 2026No releases on Jul 5, 2026No releases on Jul 12, 2026No releases on Jul 19, 2026No releases on Jul 26, 2026No releases on Aug 2, 2026No releases on Aug 9, 2026No releases on Aug 16, 2026No releases on Aug 23, 2026No releases on Aug 30, 2026No releases on Sep 6, 2026
MondayNo releases on May 25, 2026No releases on Jun 1, 2026No releases on Jun 8, 2026No releases on Jun 15, 2026No releases on Jun 22, 2026No releases on Jun 29, 2026No releases on Jul 6, 2026No releases on Jul 13, 2026No releases on Jul 20, 2026No releases on Jul 27, 2026No releases on Aug 3, 2026No releases on Aug 10, 2026No releases on Aug 17, 2026No releases on Aug 24, 2026No releases on Aug 31, 2026No releases on Sep 7, 2026
TuesdayNo releases on May 26, 2026No releases on Jun 2, 2026No releases on Jun 9, 2026No releases on Jun 16, 2026No releases on Jun 23, 2026No releases on Jun 30, 2026No releases on Jul 7, 2026No releases on Jul 14, 2026No releases on Jul 21, 2026No releases on Jul 28, 2026No releases on Aug 4, 2026No releases on Aug 11, 2026No releases on Aug 18, 2026No releases on Aug 25, 2026No releases on Sep 1, 2026No releases on Sep 8, 2026
WednesdayNo releases on May 27, 2026No releases on Jun 3, 2026No releases on Jun 10, 2026No releases on Jun 17, 2026No releases on Jun 24, 2026No releases on Jul 1, 2026No releases on Jul 8, 2026No releases on Jul 15, 2026No releases on Jul 22, 2026No releases on Jul 29, 2026No releases on Aug 5, 2026No releases on Aug 12, 2026No releases on Aug 19, 2026No releases on Aug 26, 2026No releases on Sep 2, 2026No releases on Sep 9, 2026
ThursdayNo releases on May 28, 2026No releases on Jun 4, 2026No releases on Jun 11, 2026No releases on Jun 18, 2026No releases on Jun 25, 2026No releases on Jul 2, 2026No releases on Jul 9, 2026No releases on Jul 16, 2026No releases on Jul 23, 2026No releases on Jul 30, 2026No releases on Aug 6, 2026No releases on Aug 13, 2026No releases on Aug 20, 2026No releases on Aug 27, 2026No releases on Sep 3, 2026No releases on Sep 10, 2026
FridayNo releases on May 29, 2026No releases on Jun 5, 2026No releases on Jun 12, 2026No releases on Jun 19, 2026No releases on Jun 26, 2026No releases on Jul 3, 2026No releases on Jul 10, 2026No releases on Jul 17, 2026No releases on Jul 24, 2026No releases on Jul 31, 2026No releases on Aug 7, 2026No releases on Aug 14, 2026No releases on Aug 21, 2026No releases on Aug 28, 2026No releases on Sep 4, 2026
SaturdayNo releases on May 30, 2026No releases on Jun 6, 2026No releases on Jun 13, 2026No releases on Jun 20, 2026No releases on Jun 27, 2026No releases on Jul 4, 2026No releases on Jul 11, 2026No releases on Jul 18, 2026No releases on Jul 25, 2026No releases on Aug 1, 2026No releases on Aug 8, 2026No releases on Aug 15, 2026No releases on Aug 22, 2026No releases on Aug 29, 2026No releases on Sep 5, 2026

10 releases since Apr 15, 2026, busiest day 4

Changelog

v4.9

Latest
Added 9
  • Add `draft-mtp` as a new `--spec-type` option for MTP speculative decoding support, auto-enabled when loading MTP GGUFs
  • Add snippet support to the `web_search` tool with short text excerpts in results
  • Show live generation speed in tokens/s and context size while generating
  • Add Linux aarch64 portable builds for DGX Spark support
  • Add Check for updates button in the Electron Session tab
  • Add folder picker for the models directory in Electron
Changed 9
  • Drop link URLs from `fetch_webpage` output, displaying links as plain text instead of markdown
  • Render `web_search` results with prettier formatting and spinner during calls
  • Auto-detect and auto-select sibling mmproj files when loading a model
  • Detect `mmproj-*.gguf` files in the main models folder, appearing in mmproj dropdown and hidden from regular model dropdown
  • Store Electron app data in `user_data/cache/electron` instead of OS default location
  • Reorganize the right sidebar with Mode/Character/Chat style on top
Fixed 11
  • Fix llama-server not being killed when the parent process exits on Windows
  • Fix streaming output leaking across chats when switching mid-stream
  • Fix continue-mode regressions across template families
  • Fix incorrect prompts generated with continue mode
  • Fix thinking channel being lost across tool-call turns
  • Fix API model load silently dropping hyphenated arg keys
Security 4
  • Restrict CORS to localhost by default to prevent drive-by API access, with `--listen` and `--public-api` opting into network exposure
  • Sanitize character name in `load_character` to prevent path traversal
  • Prevent path traversal in load_template_by_name
  • Improve web search security by rejecting non-HTTP links

From textgen

Changes
  • MTP speculative decoding support: Add draft-mtp as a new --spec-type option. Auto-enabled when loading MTP GGUFs (e.g. Qwen 3.6 MoE MTP builds).
  • Web search improvements:
    • Add snippet support to the web_search tool: results now include a short text excerpt that often answers the query directly, eliminating the need for a follow-up fetch_webpage call (#7548).
    • Drop link URLs from fetch_webpage output (links now appear as plain text instead of [text](url) markdown), significantly reducing tokens used per page.
    • Prettier rendering of web_search results in the chat, with a spinner during the call.
    • Add an info message to the "Activate web search" checkbox.
  • Show live generation speed (tokens/s) and context size while generating (#7563).
  • DGX Spark support: Add Linux aarch64 portable builds.
  • Electron
    • Add "Check for updates" button in the Session tab.
    • Add a folder picker for the models directory.
    • Add right-click context menu for copying text.
    • Add a spellcheck toggle in the Session tab (#7550).
    • Store app data in user_data/cache/electron instead of the OS default location.
    • Disable DNS-over-HTTPS probes.
  • One-click installer: Track the latest release tag instead of bleeding-edge main.
  • Auto-detect and auto-select sibling mmproj files when loading a model (#7564).
  • Detect mmproj-*.gguf files in the main models folder: They appear in the mmproj dropdown and are hidden from the regular model dropdown.
  • Project icon: Add an icon, courtesy of LMLocalizer on Reddit.
  • Treat negative --ctx-size values as auto (0).
  • UI
    • Add drag-and-drop file upload support to the chat input (Gradio fork).
    • Reorganize the right sidebar with Mode/Character/Chat style on top.
    • Hide reasoning and tools controls in chat mode (only shown in instruct / chat-instruct).
    • Fade in new messages, fix scroll-up jump on send.
    • Rename "Send dummy message/reply" to "Insert user/assistant message".
    • Polish character dropdown in chat tab.
    • Tighten spacing between dropdowns and refresh buttons.
    • Improve the looks of the Session tab.
Security
  • Restrict CORS to localhost by default to prevent drive-by API access. --listen and --public-api opt into network exposure.
  • Sanitize character name in load_character to prevent path traversal.
  • fix: prevent path traversal in load_template_by_name (#7562). Thanks, @Allen930311.
  • UI: Improve web search security by rejecting non-HTTP links.
Bug fixes
  • Fix llama-server not being killed when the parent process exits on Windows, e.g. when closing the console window or killing python.exe (#7574).
  • Fix streaming output leaking across chats when switching mid-stream (#7555).
  • Fix continue-mode regressions across template families.
  • Fix incorrect prompts generated with continue mode. Thanks, @MeemeeLab.
  • Fix thinking channel being lost across tool-call turns (#7578).
  • Fix API model load silently dropping hyphenated arg keys (#7577).
  • Fix chat deletion failing when user_data/logs is a symlink (#7579).
  • Fix token count not being set in non-streaming mode.
  • Keep web search blocks closed when the user closes them mid-stream.
  • fix(win): set PYTHONUTF8 for non-ASCII locale Windows compatibility (#7560). Thanks, @jerry78424.
  • Set TORCH_VERSION to 2.9.0 to match xformers 0.0.33's torch pin (#7581). Thanks, @AJ-Gazin.
Dependency updates
Portable builds

TextGen is now a desktop app for local LLMs. Download, unzip, double-click.

[!NOTE] NVIDIA GPU: If nvidia-smi reports CUDA Version >= 13.1, use the cuda13.1 build. Otherwise, use cuda12.4.

ik_llama.cpp is a llama.cpp fork with new quant types. If unsure, use the llama.cpp column.

Windows
GPU/Platformllama.cppik_llama.cpp
NVIDIA (CUDA 12.4)Download (936 MB)Download (1.24 GB)
NVIDIA (CUDA 13.1)Download (840 MB)Download (1.33 GB)
AMD/Intel (Vulkan)Download (336 MB)
AMD (ROCm 7.2)Download (617 MB)
CPU onlyDownload (319 MB)Download (335 MB)
Linux
GPU/Platformllama.cppik_llama.cpp
NVIDIA (CUDA 12.4)Download (893 MB)Download (1.21 GB)
NVIDIA (CUDA 13.1)Download (826 MB)Download (1.33 GB)
NVIDIA ARM64 (CUDA 13.1)Download (910 MB)
AMD/Intel (Vulkan)Download (324 MB)
AMD (ROCm 7.2)Download (409 MB)
CPU onlyDownload (307 MB)Download (338 MB)
macOS

macOS note: You need to run xattr -cr /path/to/your/textgen-folder on the extracted folder before launching. See https://github.com/oobabooga/textgen/issues/7558.

Architecturellama.cpp
Apple Silicon (arm64)Download (272 MB)
Intel (x86_64)Download (284 MB)
Updating a portable install:
  1. Download and extract the latest version.
  2. Replace the user_data folder with the one in your existing install. All your settings and models will be moved.

Starting with 4.0, you can also move user_data one folder up, next to the install folder. It will be detected automatically, making updates easier:

textgen-4.6/
textgen-4.7/
user_data/    <-- shared by both installs
View originalPermalink
How v4.9 went

v4.8

Added 4
  • Smooth scroll animation when sending a new message
  • Persist window bounds and maximize state across Electron launches
  • Add --no-electron flag to skip the desktop window and use the web UI in the browser instead
  • Support list-format content in tool and assistant messages in the API
Changed 3
  • Redesign chat composer with taller input area and paperclip and message-action buttons pinned to the bottom
  • Disable spellcheck in the Electron chat input
  • Add more space below the last chat/chat-instruct message for action button breathing room
Fixed 6
  • Fix --listen mode in the Electron launcher
  • Fix missing log colors on Windows in Electron
  • Fix big character picture failing to load
  • Fix speculative decoding broken by upstream llama.cpp arg renames
  • Fix truncation length reverting after model load on UI reload
  • Don't clear the chat input when sending a message with no model loaded

From textgen

Changes
  • Redesigned chat composer: Taller input area with the paperclip and message-action buttons pinned to the bottom, similar to Gemini and DeepSeek.
  • Smooth scroll animation when sending a new message: Inspired by Gemini's chat UI.
  • Electron improvements:
    • Persist window bounds and maximize state across launches.
    • Add a --no-electron flag to skip the desktop window and use the web UI in the browser instead.
    • Disable spellcheck in the chat input.
  • API: Add support for list-format content in tool and assistant messages.
  • Add more space below the last chat/chat-instruct message so its action buttons have breathing room.
Bug fixes
  • Electron:
    • Fix --listen mode in the launcher.
    • Fix missing log colors on Windows.
    • Fix big character picture failing to load (#7540).
  • Fix speculative decoding broken by upstream llama.cpp arg renames (#7541).
  • Fix truncation length reverting after model load on UI reload (#7540).
  • Don't clear the chat input when sending a message with no model loaded (#7542).
Dependency updates
Portable builds

TextGen is now a desktop app for local LLMs. Download, unzip, double-click.

[!NOTE] NVIDIA GPU: If nvidia-smi reports CUDA Version >= 13.1, use the cuda13.1 build. Otherwise, use cuda12.4.

ik_llama.cpp is a llama.cpp fork with new quant types. If unsure, use the llama.cpp column.

Windows
GPU/Platformllama.cppik_llama.cpp
NVIDIA (CUDA 12.4)Download (891 MB)Download (1.23 GB)
NVIDIA (CUDA 13.1)Download (817 MB)Download (1.33 GB)
AMD/Intel (Vulkan)Download (336 MB)
AMD (ROCm 7.2)Download (604 MB)
CPU onlyDownload (319 MB)Download (334 MB)
Linux
GPU/Platformllama.cppik_llama.cpp
NVIDIA (CUDA 12.4)Download (848 MB)Download (1.20 GB)
NVIDIA (CUDA 13.1)Download (803 MB)Download (1.33 GB)
AMD/Intel (Vulkan)Download (324 MB)
AMD (ROCm 7.2)Download (396 MB)
CPU onlyDownload (307 MB)Download (334 MB)
macOS

macOS note: You need to run xattr -cr /path/to/your/textgen-folder on the extracted folder before launching. See https://github.com/oobabooga/textgen/issues/7558.

Architecturellama.cpp
Apple Silicon (arm64)Download (271 MB)
Intel (x86_64)Download (283 MB)
Updating a portable install:
  1. Download and extract the latest version.
  2. Replace the user_data folder with the one in your existing install. All your settings and models will be moved.

Starting with 4.0, you can also move user_data one folder up, next to the install folder. It will be detected automatically, making updates easier:

textgen-4.6/
textgen-4.7/
user_data/    <-- shared by both installs
View originalPermalink
How v4.8 went

v4.7.3

Added 4
  • Native desktop app with Electron bundling that opens as a native window, run with `textgen` or `textgen.bat` instead of previous start scripts
  • Support `--listen` and `--nowebui` flags to skip the native window and run the server directly
  • New `--split-mode` flag for llama.cpp tensor parallelism that can make multi-GPU inference 60%+ faster
  • Support for standalone `.jinja` and `.jinja2` instruction template files in the UI in addition to existing `.yaml` format
Changed 11
  • Replace default font from Noto Sans to Inter
  • Replace emoji refresh/save/delete buttons with Lucide SVG icons
  • Convert chat mode selector into a 3-button segmented control
  • Redesign chat input as a single rounded card with circular accent-colored send button
  • Use flat underline for active tab indicator
  • Replace sidebar toggle buttons with 3px hairline handles on desktop
Fixed 3
  • Fix Stop button being ignored during tool call approval and not interrupting between tool turns in multi-turn tool loops
  • Fix race condition in the ExLlamaV3 backend that could affect concurrent API requests
  • Fix extension settings not saving for extensions inside `user_data/extensions`

From textgen

Changes
  • Native desktop app: Portable builds now bundle Electron and open as a native window. Run textgen / textgen.bat instead of the previous start scripts. Pass --listen or --nowebui to skip the window and run the server directly.
  • Major UI overhaul:
    • Replace Noto Sans with Inter as the default font.
    • Replace emoji refresh/save/delete buttons with Lucide SVG icons.
    • Turn the chat mode selector (chat / chat-instruct / instruct) into a 3-button segmented control.
    • Redesign the chat input as a single rounded card with a circular accent-colored send button.
    • Use a flat underline for the active tab indicator.
    • Replace the sidebar toggle buttons with 3px hairline handles on desktop.
  • Tensor parallelism for llama.cpp: New --split-mode flag (replacing --row-split) with a tensor option that can make multi-GPU inference 60%+ faster. On the ik_llama.cpp backend, tensor and row fall back to graph.
  • Replace DuckDuckGo HTML scraping in the web search tool with the ddgs library, which is more robust against DuckDuckGo's bot blocking.
  • Add support for standalone .jinja/.jinja2 instruction template files in the UI, in addition to the existing .yaml format (#7517).
Bug fixes
  • Fix Stop button being ignored during tool call approval, and not interrupting between tool turns in multi-turn tool loops.
  • Fix race condition in the ExLlamaV3 backend that could affect concurrent API requests.
  • Fix extension settings not saving for extensions inside user_data/extensions (#7525).
Dependency updates
Portable builds

TextGen is now a desktop app for local LLMs. Download, unzip, double-click.

[!NOTE] NVIDIA GPU: If nvidia-smi reports CUDA Version >= 13.1, use the cuda13.1 build. Otherwise, use cuda12.4.

ik_llama.cpp is a llama.cpp fork with new quant types. If unsure, use the llama.cpp column.

Windows
GPU/Platformllama.cppik_llama.cpp
NVIDIA (CUDA 12.4)Download (891 MB)Download (1.23 GB)
NVIDIA (CUDA 13.1)Download (816 MB)Download (1.33 GB)
AMD/Intel (Vulkan)Download (336 MB)
AMD (ROCm 7.2)Download (604 MB)
CPU onlyDownload (318 MB)Download (334 MB)
Linux
GPU/Platformllama.cppik_llama.cpp
NVIDIA (CUDA 12.4)Download (848 MB)Download (1.20 GB)
NVIDIA (CUDA 13.1)Download (803 MB)Download (1.32 GB)
AMD/Intel (Vulkan)Download (324 MB)
AMD (ROCm 7.2)Download (395 MB)
CPU onlyDownload (306 MB)Download (334 MB)
macOS
Architecturellama.cpp
Apple Silicon (arm64)Download (271 MB)
Intel (x86_64)Download (283 MB)
Updating a portable install:
  1. Download and extract the latest version.
  2. Replace the user_data folder with the one in your existing install. All your settings and models will be moved.

Starting with 4.0, you can also move user_data one folder up, next to the install folder. It will be detected automatically, making updates easier:

textgen-4.6/
textgen-4.7/
user_data/    <-- shared by both installs
View originalPermalink
How v4.7.3 went

v4.6.2

Added 3
  • Add inline approve/reject/always-approve buttons that appear before each tool call is executed, enabled via the new "Confirm tool calls" checkbox in the Chat tab
  • Support local subprocess-based MCP servers configured via user_data/mcp.json using the same format as Claude Desktop and Cursor
  • Add preserve_thinking chat template parameter with UI checkbox and --preserve-thinking CLI flag to control whether thinking blocks from prior turns are kept in the context
Changed 5
  • Sidebars now toggle independently and persist their state on page refresh, with default visibility adapting to viewport width
  • Pass --draft-min 48 by default for llama.cpp draftless speculative decoding
  • Only show the "Reasoning effort" and "Enable thinking" controls for models whose chat template actually uses them
  • Cache MCP tool discovery to avoid re-querying servers on each generation
  • Improve border colors in light theme, fix code block copy button colors and centering, fix code block scrollbar flash during page load, improve past chats menu spacing
Fixed 4
  • Fix Gemma 4 thinking tags not hidden after tool calls
  • Fix GPT-OSS channel tokens leaking in UI after tool calls
  • Fix Slider preprocess not handling None from cleared number input
  • Fix llama.cpp multimodal by using server's random media marker
Security 1
  • Fix SSRF vulnerabilities in URL fetching by adding backslash and userinfo rejection and validating every redirect hop

From textgen

Changes
  • Tool call confirmation: Add inline approve/reject/always-approve buttons that appear before each tool call is executed. Enable via the new "Confirm tool calls" checkbox in the Chat tab.
  • Stdio MCP server support: In addition to HTTP MCP servers, you can now configure local subprocess-based MCP servers via user_data/mcp.json, using the same format as Claude Desktop and Cursor. [Tutorial]
  • preserve_thinking chat template parameter: New UI checkbox and --preserve-thinking CLI flag to control whether thinking blocks from prior turns are kept in the context.
  • UI: Sidebars overhaul: Sidebars now toggle independently and persist their state on page refresh. Default visibility adapts to viewport width.
  • llama.cpp: Pass --draft-min 48 by default for draftless speculative decoding.
  • Only show the "Reasoning effort" and "Enable thinking" controls for models whose chat template actually uses them.
  • Cache MCP tool discovery to avoid re-querying servers on each generation.
  • Add model download branch handling in download_model_wrapper (#7506). Thanks, @Th-Underscore.
  • UI: Improve border colors in light theme, fix code block copy button colors and centering, fix code block scrollbar flash during page load, improve past chats menu spacing.
Security
  • Fix SSRF vulnerabilities in URL fetching: add backslash and userinfo rejection, validate every redirect hop.
Bug fixes
  • Fix Gemma 4 thinking tags not hidden after tool calls (#7509).
  • Fix GPT-OSS channel tokens leaking in UI after tool calls.
  • Fix Slider preprocess not handling None from cleared number input. 🆕 - v4.6.1.
  • llama.cpp: Fix multimodal by using server's random media marker. 🆕 - v4.6.1.
Dependency updates
Portable builds

Below you can find self-contained packages that work with GGUF models (llama.cpp) and require no installation! Just download the right version for your system, unzip/extract, and run.

[!NOTE] NVIDIA GPU: If nvidia-smi reports CUDA Version >= 13.1, use the cuda13.1 build. Otherwise, use cuda12.4.

ik_llama.cpp is a llama.cpp fork with new quant types. If unsure, use the llama.cpp column.

Windows
GPU/Platformllama.cppik_llama.cpp
NVIDIA (CUDA 12.4)Download (766 MB)Download (1.1 GB)
NVIDIA (CUDA 13.1)Download (686 MB)Download (1.19 GB)
AMD/Intel (Vulkan)Download (196 MB)
AMD (ROCm 7.2)Download (499 MB)
CPU onlyDownload (178 MB)Download (194 MB)
Linux
GPU/Platformllama.cppik_llama.cpp
NVIDIA (CUDA 12.4)Download (747 MB)Download (1.09 GB)
NVIDIA (CUDA 13.1)Download (696 MB)Download (1.21 GB)
AMD/Intel (Vulkan)Download (208 MB)
AMD (ROCm 7.2)Download (307 MB)
CPU onlyDownload (190 MB)Download (217 MB)
macOS
Architecturellama.cpp
Apple Silicon (arm64)Download (156 MB)
Intel (x86_64)Download (162 MB)
Updating a portable install:
  1. Download and extract the latest version.
  2. Replace the user_data folder with the one in your existing install. All your settings and models will be moved.

Starting with 4.0, you can also move user_data one folder up, next to the install folder. It will be detected automatically, making updates easier:

text-generation-webui-4.0/
text-generation-webui-4.1/
user_data/                    <-- shared by both installs
View originalPermalink
How v4.6.2 went

v4.5.2

Added 1
  • Add sky-blue color for quoted text in light mode
Changed 5
  • Project renamed to TextGen with GitHub URL now at github.com/oobabooga/textgen
  • Improve logits display
  • Reduce VRAM peak in prompt logprobs forward pass
  • Update llama.cpp to commit 5d14e5d19bd6af7fc38eb92d96aa185e5948a03d
  • Update ik_llama.cpp to commit 47986f0844a16d1f498e3c8095812a24f969351f
Fixed 12
  • Fix Gemma-4 tool calling to handle double quotes and newline chars in arguments
  • Fix chat scroll getting stuck on thinking blocks
  • Prevent Tool Icon SVG shrinking when tool calls are long
  • Fix wrong chat being deleted when selection changes before confirm
  • Fix bos/eos tokens not being set for models without a chat template by resetting defaults before reading model metadata
  • Fix duplicate BOS token being prepended in ExLlamav3

From textgen

Changes
  • The project has been renamed to TextGen! The GitHub URL is now github.com/oobabooga/textgen.
  • Logits display improvements (#7486). Thanks, @wiger3.
  • UI: Add sky-blue color for quoted text in light mode (#7473). Thanks, @Th-Underscore.
  • Reduce VRAM peak in prompt logprobs forward pass.
Bug fixes
  • Fix Gemma-4 tool calling: handle double quotes and newline chars in arguments (#7477). Thanks, @mamei16.
  • Fix chat scroll getting stuck on thinking blocks (#7485).
  • Prevent Tool Icon SVG Shrinking When Tool Calls Are Long (#7488). Thanks, @mamei16.
  • Fix: wrong chat deleted when selection changes before confirm (#7483). Thanks, @lawrence3699.
  • Fix bos/eos tokens not being set for models without a chat template. Defaults are now reset before reading model metadata.
  • Fix duplicate BOS token being prepended in ExLlamav3.
  • Fix version metadata not syncing on Continue (#7492).
  • Fix row_split not working with ik_llama.cpp — --split-mode row is now converted to --split-mode graph (#7489).
  • Fix "Start reply with" crash (#7497). 🆕 - v4.5.1.
  • Fix tool responses with Gemma 4 template (#7498). 🆕 - v4.5.1.
  • UI: Fix consecutive thinking blocks rendering with Gemma 4. 🆕 - v4.5.1.
  • Fix bos/eos tokens being overwritten after GGUF metadata sets them (#7496). 🆕 - v4.5.2
Dependency updates

Portable builds

Below you can find self-contained packages that work with GGUF models (llama.cpp) and require no installation! Just download the right version for your system, unzip/extract, and run.

[!NOTE] NVIDIA GPU: If nvidia-smi reports CUDA Version >= 13.1, use the cuda13.1 build. Otherwise, use cuda12.4.

ik_llama.cpp is a llama.cpp fork with new quant types. If unsure, use the llama.cpp column.

Windows
GPU/Platformllama.cppik_llama.cpp
NVIDIA (CUDA 12.4)Download (774 MB)Download (1.09 GB)
NVIDIA (CUDA 13.1)Download (696 MB)Download (1.19 GB)
AMD/Intel (Vulkan)Download (209 MB)
AMD (ROCm 7.2)Download (517 MB)
CPU onlyDownload (191 MB)Download (192 MB)
Linux
GPU/Platformllama.cppik_llama.cpp
NVIDIA (CUDA 12.4)Download (758 MB)Download (1.09 GB)
NVIDIA (CUDA 13.1)Download (710 MB)Download (1.21 GB)
AMD/Intel (Vulkan)Download (225 MB)
AMD (ROCm 7.2)Download (330 MB)
CPU onlyDownload (207 MB)Download (218 MB)
macOS
Architecturellama.cpp
Apple Silicon (arm64)Download (182 MB)
Intel (x86_64)Download (188 MB)
Updating a portable install:
  1. Download and extract the latest version.
  2. Replace the user_data folder with the one in your existing install. All your settings and models will be moved.

Starting with 4.0, you can also move user_data one folder up, next to the install folder. It will be detected automatically, making updates easier:

text-generation-webui-4.0/
text-generation-webui-4.1/
user_data/                    <-- shared by both installs
View originalPermalink
How v4.5.2 went
View all

Discussion

If you publish textgen, you can claim this product by proving you administer its repository.