summaryrefslogtreecommitdiff
path: root/pi
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-23 23:04:29 +0200
committerPaul Buetow <paul@buetow.org>2026-03-23 23:04:29 +0200
commit5c6cf70d84f288dc80cfb94af53bd6107ae15835 (patch)
treef53fb7139c548235017132fda7b572405d9fd825 /pi
parent8606cc1c7113f752a6de5945e689286a8f33d494 (diff)
Add vLLM watch dashboard, side-by-side layout, and insert-mode default
- hyperstack.rb: add VllmWatcher class and `watch` subcommand — live terminal dashboard polling all active VMs every 5 s via SSH; shows GPU util/VRAM/temp/power bars and vLLM throughput/requests/KV-cache/ cache-hit bars aligned in a shared column layout - draw(): render two or more VM panels side-by-side (horizontal) with a │ separator, padded to equal visible width; single VM falls back to vertical layout - pi/agent/extensions/modal-editor: start in INSERT mode instead of NORMAL - README: document watch command and update fish script rename Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'pi')
-rw-r--r--pi/agent/extensions/modal-editor/index.ts2
-rw-r--r--pi/agent/settings.json2
2 files changed, 2 insertions, 2 deletions
diff --git a/pi/agent/extensions/modal-editor/index.ts b/pi/agent/extensions/modal-editor/index.ts
index abb660a..ecf36c3 100644
--- a/pi/agent/extensions/modal-editor/index.ts
+++ b/pi/agent/extensions/modal-editor/index.ts
@@ -41,7 +41,7 @@ function charKind(char: string | null): CharKind {
}
class ModalEditor extends CustomEditor {
- private mode: Mode = "normal";
+ private mode: Mode = "insert";
private pending: PendingAction = null;
private internals(): EditorStateAccess {
diff --git a/pi/agent/settings.json b/pi/agent/settings.json
index 972476b..fbb3874 100644
--- a/pi/agent/settings.json
+++ b/pi/agent/settings.json
@@ -1,5 +1,5 @@
{
- "lastChangelogVersion": "0.61.1",
+ "lastChangelogVersion": "0.62.0",
"defaultProvider": "openai",
"defaultModel": "gpt-4.1"
} \ No newline at end of file