turbollm 0.1.1 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -38,6 +38,7 @@ LLMs** — built for people who today hand-compile forks and hunt forums for the
38
38
  ## Contents
39
39
 
40
40
  - [Why TurboLLM](#why-turbollm)
41
+ - [Features](#features)
41
42
  - [Quick start](#quick-start)
42
43
  - [⭐ Bring any engine — the headline feature](#-bring-any-engine--the-headline-feature)
43
44
  - [Models — bring your own, or browse Hugging Face](#models)
@@ -46,6 +47,7 @@ LLMs** — built for people who today hand-compile forks and hunt forums for the
46
47
  - [APIs & integrations](#apis--integrations)
47
48
  - [Run Claude Code on your own GPU](#run-claude-code-on-your-own-gpu)
48
49
  - [Use it from any device on your network](#use-it-from-any-device-on-your-network)
50
+ - [Share the GPU with ComfyUI](#share-the-gpu-with-comfyui)
49
51
  - [Command-line reference](#command-line-reference)
50
52
  - [Configuration & data](#configuration--data)
51
53
  - [Requirements](#requirements)
@@ -85,6 +87,37 @@ TurboLLM does the opposite:
85
87
 
86
88
  ---
87
89
 
90
+ ## Features
91
+
92
+ The current capability list (kept in sync with [CHANGELOG.md](CHANGELOG.md)):
93
+
94
+ **Engines**
95
+ - Bring any `llama-server`-compatible engine — stock builds or community forks — with real capability probing
96
+ - Auto-provision a GPU-matched `llama-server` build on first run (CUDA / ROCm / Metal / SYCL / Vulkan, CPU fallback)
97
+ - **vLLM** and **MLX** backends in addition to llama.cpp
98
+ - One-click backend install + switch from the Engines screen
99
+
100
+ **Models**
101
+ - Use your own local GGUF / safetensors, or browse & download from Hugging Face in-app
102
+ - Per-model load profiles (context, GPU offload, KV-cache quant, flash-attn, draft models)
103
+ - Auto-tune on load with a **VRAM-fit verdict before you load**
104
+ - Measured tokens/sec per model — never faked — live while you chat and remembered
105
+
106
+ **Chat**
107
+ - Streaming chat with live t/s, TTFT, context meter, and reasoning/thinking support
108
+ - Image and document attachments — including **send an image or file with no text**
109
+
110
+ **Integrations**
111
+ - OpenAI- **and** Anthropic-compatible APIs — run Claude Code on your own GPU
112
+ - LAN sharing with optional API-key auth
113
+ - **Share the GPU with ComfyUI** — auto-unload the model while ComfyUI renders, reload when it's done
114
+
115
+ **Platform**
116
+ - ~0.3 MB npm package on Node — no Electron, no Chromium, no Python
117
+ - Offline-first, no account, no telemetry
118
+
119
+ ---
120
+
88
121
  ## Quick start
89
122
 
90
123
  ```bash
@@ -251,6 +284,29 @@ Turn on **Require API key** in Settings → Network when you expose it.
251
284
 
252
285
  ---
253
286
 
287
+ ## Share the GPU with ComfyUI
288
+
289
+ If you run **ComfyUI** on the same GPU, an LLM holding VRAM while ComfyUI renders means both
290
+ fight for memory (and one usually OOMs). TurboLLM can hand the GPU over automatically:
291
+
292
+ - The instant ComfyUI starts a render, TurboLLM **unloads its model and pauses new loads**.
293
+ - When ComfyUI's queue drains, TurboLLM **reloads the exact model it unloaded**.
294
+
295
+ It's **push-based, not polling** — ComfyUI signals TurboLLM the moment a job starts/ends, so
296
+ the handoff is immediate and deterministic (the model is gone *before* ComfyUI executes).
297
+
298
+ **One-time setup** (Settings → ComfyUI):
299
+
300
+ 1. Turn on **Pause for ComfyUI** and **Save**.
301
+ 2. Enter your ComfyUI folder (the one containing `custom_nodes`) and click **Install gate**.
302
+ TurboLLM writes a small custom node into ComfyUI, wired to this daemon.
303
+ 3. **Restart ComfyUI** once so it loads the node.
304
+
305
+ The Settings panel shows a live indicator (rendering / idle / connected). To undo it, click
306
+ **Remove** in the same panel.
307
+
308
+ ---
309
+
254
310
  ## Command-line reference
255
311
 
256
312
  ```bash