Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion public/entry-rendering.js
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ function addEntry(e) {
const cacheMode = typeof getCacheMode === 'function' ? getCacheMode(e.provider || 'anthropic') : 'ephemeral-ttl';
gapTitle = cacheMode === 'ephemeral-ttl'
? (gapMs < 5 * 60000 ? 'Cache likely warm (< 5m)' : gapMs < 60 * 60000 ? 'Default cache expired (5m–1h)' : 'All cache expired (> 1h)')
: 'Server cache (retention varies)';
: 'Cached automatically';
}
}

Expand Down
2 changes: 1 addition & 1 deletion public/miller-columns.js
Original file line number Diff line number Diff line change
Expand Up @@ -1481,7 +1481,7 @@ function renderSessionItem(sess, sid) {
const tokK = sess.latestCacheReadTokens >= 1000
? Math.round(sess.latestCacheReadTokens / 1000) + 'K'
: String(sess.latestCacheReadTokens);
cacheRowHtml = '<div class="si-cache cache-server" title="Server-managed cache · last turn">' +
cacheRowHtml = '<div class="si-cache cache-server" title="Cached automatically · last turn">' +
'cache ' + pct + '% hit · ' + tokK + ' tok</div>';
}
const isOnline = getStatusClass(sid) !== 'sdot-off';
Expand Down
Loading