pi-open-tui 0.2.6 → 0.2.7
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
|
@@ -68,7 +68,7 @@ Run `/open-tui` to open the interactive settings UI. Configuration is stored at
|
|
|
68
68
|
After each complete agent run, open-tui shows one transient notification. Tool-call turns are aggregated into that single result:
|
|
69
69
|
|
|
70
70
|
```text
|
|
71
|
-
> TPS 42.5 tok/s | ~ TTFT 1.2s | + 29.7s |
|
|
71
|
+
> TPS 42.5 tok/s | ~ TTFT 1.2s | + 29.7s | ↑ 567 | ↓ 1.2k | ! stall 1x / 4.3s | $ $3.60/M
|
|
72
72
|
```
|
|
73
73
|
|
|
74
74
|
The notification uses the footer's icon mode and semantic theme colors. Configure its master switch and individual TPS, TTFT, duration, token, stall, and cost segments from the **Telemetry** tab in `/open-tui`.
|
|
Binary file
|
|
@@ -36,8 +36,9 @@ const NERD_GLYPHS: IconGlyphs = {
|
|
|
36
36
|
context: "",
|
|
37
37
|
model: "",
|
|
38
38
|
thinking: "",
|
|
39
|
-
|
|
40
|
-
|
|
39
|
+
// client network view: input = upload to API, output = download from API
|
|
40
|
+
input: "",
|
|
41
|
+
output: "",
|
|
41
42
|
cacheHit: "",
|
|
42
43
|
cost: "",
|
|
43
44
|
speed: "",
|
|
@@ -67,8 +68,8 @@ const ASCII_GLYPHS: IconGlyphs = {
|
|
|
67
68
|
context: "%",
|
|
68
69
|
model: "M",
|
|
69
70
|
thinking: "~",
|
|
70
|
-
input: "
|
|
71
|
-
output: "
|
|
71
|
+
input: "↑",
|
|
72
|
+
output: "↓",
|
|
72
73
|
cacheHit: "c",
|
|
73
74
|
cost: "$",
|
|
74
75
|
speed: ">",
|
|
@@ -362,8 +362,8 @@ export function formatTurnTelemetry(
|
|
|
362
362
|
parts.push(theme.fg("success", `${glyphs.done} ${formatTurnDuration(telemetry.totalMs)}`));
|
|
363
363
|
}
|
|
364
364
|
if (config.tokens) {
|
|
365
|
-
parts.push(theme.fg("accent", `${glyphs.input}
|
|
366
|
-
parts.push(theme.fg("success", `${glyphs.output}
|
|
365
|
+
parts.push(theme.fg("accent", `${glyphs.input} ${fmtTokens(telemetry.inputTokens)}`));
|
|
366
|
+
parts.push(theme.fg("success", `${glyphs.output} ${fmtTokens(telemetry.outputTokens)}`));
|
|
367
367
|
}
|
|
368
368
|
if (config.stalls && telemetry.stallMs > 0) {
|
|
369
369
|
parts.push(theme.fg("warning", `${glyphs.stall} stall ${telemetry.stallCount}x / ${formatTurnDuration(telemetry.stallMs)}`));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-open-tui",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.7",
|
|
4
4
|
"description": "A polished TUI for Pi coding agent: animated logo header, Starship-style footer, rounded editor with model metadata, and prompt-box user messages. Combines the best of pi-haiku, pi-claude-code-tui, and pi-zentui.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|