feat: show more session flags

This commit is contained in:
Peter Steinberger
2026-01-10 05:14:07 +01:00
parent 7b478909b2
commit a7c8341452

View File

@@ -26,6 +26,8 @@ type SessionRow = {
thinkingLevel?: string; thinkingLevel?: string;
verboseLevel?: string; verboseLevel?: string;
reasoningLevel?: string; reasoningLevel?: string;
elevatedLevel?: string;
responseUsage?: string;
groupActivation?: string; groupActivation?: string;
inputTokens?: number; inputTokens?: number;
outputTokens?: number; outputTokens?: number;
@@ -98,6 +100,8 @@ const formatFlagsCell = (row: SessionRow, rich: boolean) => {
row.thinkingLevel ? `think:${row.thinkingLevel}` : null, row.thinkingLevel ? `think:${row.thinkingLevel}` : null,
row.verboseLevel ? `verbose:${row.verboseLevel}` : null, row.verboseLevel ? `verbose:${row.verboseLevel}` : null,
row.reasoningLevel ? `reasoning:${row.reasoningLevel}` : null, row.reasoningLevel ? `reasoning:${row.reasoningLevel}` : null,
row.elevatedLevel ? `elev:${row.elevatedLevel}` : null,
row.responseUsage ? `usage:${row.responseUsage}` : null,
row.groupActivation ? `activation:${row.groupActivation}` : null, row.groupActivation ? `activation:${row.groupActivation}` : null,
row.systemSent ? "system" : null, row.systemSent ? "system" : null,
row.abortedLastRun ? "aborted" : null, row.abortedLastRun ? "aborted" : null,
@@ -147,6 +151,8 @@ function toRows(store: Record<string, SessionEntry>): SessionRow[] {
thinkingLevel: entry?.thinkingLevel, thinkingLevel: entry?.thinkingLevel,
verboseLevel: entry?.verboseLevel, verboseLevel: entry?.verboseLevel,
reasoningLevel: entry?.reasoningLevel, reasoningLevel: entry?.reasoningLevel,
elevatedLevel: entry?.elevatedLevel,
responseUsage: entry?.responseUsage,
groupActivation: entry?.groupActivation, groupActivation: entry?.groupActivation,
inputTokens: entry?.inputTokens, inputTokens: entry?.inputTokens,
outputTokens: entry?.outputTokens, outputTokens: entry?.outputTokens,