feat: display model name badge in header for active session

Shows the model (e.g. claude-opus-4-6) as a subtle chip next to the
session label in the header. Hovering reveals agent ID if available.
Model and agentId are now extracted from sessions.list response.
This commit is contained in:
Nicolas Varrot
2026-02-12 12:06:12 +00:00
parent 4312a71bc9
commit 96f28836cd
4 changed files with 27 additions and 2 deletions

View File

@@ -27,6 +27,8 @@ export interface Session {
outputTokens?: number;
channel?: string;
kind?: string;
model?: string;
agentId?: string;
}
export type ConnectionStatus = 'disconnected' | 'connecting' | 'connected';