promptong

This commit is contained in:
legop3
2026-02-25 23:04:02 -05:00
parent 0d3b3b0995
commit a687d191c1
5 changed files with 41 additions and 8 deletions
+3
View File
@@ -296,6 +296,9 @@ function LlmCommentaryPanel({ status, onClearHistory, clearingHistory }) {
{ label: 'frequency', value: `${status.frequencyMs} ms` },
{ label: 'tick count', value: status.tickCount ?? 0 },
{ label: 'skip streak', value: status.skipStreak ?? 0 },
{ label: 'last gen', value: status.lastGenerationMs != null ? `${status.lastGenerationMs} ms` : '--' },
{ label: 'avg gen', value: status.avgGenerationMs != null ? `${status.avgGenerationMs} ms` : '--' },
{ label: 'gen count', value: status.generationCount ?? 0 },
{ label: 'last outcome', value: status.lastOutcome || '--' },
{ label: 'last reason', value: status.lastReason || '--' },
{ label: 'last tick', value: lastTickAt },