2025-09-17 19:29:13 +02:00
|
|
|
<script lang="ts">
|
|
|
|
|
import { PROCESSING_INFO_TIMEOUT } from '$lib/constants/processing-info';
|
|
|
|
|
import { useProcessingState } from '$lib/hooks/use-processing-state.svelte';
|
|
|
|
|
import { slotsService } from '$lib/services/slots';
|
|
|
|
|
import { isLoading, activeMessages, activeConversation } from '$lib/stores/chat.svelte';
|
|
|
|
|
import { config } from '$lib/stores/settings.svelte';
|
|
|
|
|
|
|
|
|
|
const processingState = useProcessingState();
|
|
|
|
|
|
2025-10-20 12:41:13 +02:00
|
|
|
let isCurrentConversationLoading = $derived(isLoading());
|
2025-09-17 19:29:13 +02:00
|
|
|
let processingDetails = $derived(processingState.getProcessingDetails());
|
2025-10-20 12:41:13 +02:00
|
|
|
let showSlotsInfo = $derived(isCurrentConversationLoading || config().keepStatsVisible);
|
2025-09-17 19:29:13 +02:00
|
|
|
|
2025-10-20 12:41:13 +02:00
|
|
|
// Track loading state reactively by checking if conversation ID is in loading conversations array
|
2025-09-17 19:29:13 +02:00
|
|
|
$effect(() => {
|
|
|
|
|
const keepStatsVisible = config().keepStatsVisible;
|
|
|
|
|
|
2025-10-20 12:41:13 +02:00
|
|
|
if (keepStatsVisible || isCurrentConversationLoading) {
|
2025-09-17 19:29:13 +02:00
|
|
|
processingState.startMonitoring();
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-20 12:41:13 +02:00
|
|
|
if (!isCurrentConversationLoading && !keepStatsVisible) {
|
2025-09-17 19:29:13 +02:00
|
|
|
setTimeout(() => {
|
|
|
|
|
if (!config().keepStatsVisible) {
|
|
|
|
|
processingState.stopMonitoring();
|
|
|
|
|
}
|
|
|
|
|
}, PROCESSING_INFO_TIMEOUT);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
2025-10-20 12:41:13 +02:00
|
|
|
// Update processing state from stored timings
|
2025-09-17 19:29:13 +02:00
|
|
|
$effect(() => {
|
2025-10-20 12:41:13 +02:00
|
|
|
const conversation = activeConversation();
|
2025-09-17 19:29:13 +02:00
|
|
|
const messages = activeMessages() as DatabaseMessage[];
|
|
|
|
|
const keepStatsVisible = config().keepStatsVisible;
|
|
|
|
|
|
2025-10-20 12:41:13 +02:00
|
|
|
if (keepStatsVisible && conversation) {
|
2025-09-17 19:29:13 +02:00
|
|
|
if (messages.length === 0) {
|
2025-10-20 12:41:13 +02:00
|
|
|
slotsService.clearConversationState(conversation.id);
|
2025-09-17 19:29:13 +02:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-20 12:41:13 +02:00
|
|
|
// Search backwards through messages to find most recent assistant message with timing data
|
|
|
|
|
// Using reverse iteration for performance - avoids array copy and stops at first match
|
2025-09-17 19:29:13 +02:00
|
|
|
let foundTimingData = false;
|
|
|
|
|
|
|
|
|
|
for (let i = messages.length - 1; i >= 0; i--) {
|
|
|
|
|
const message = messages[i];
|
|
|
|
|
if (message.role === 'assistant' && message.timings) {
|
|
|
|
|
foundTimingData = true;
|
|
|
|
|
|
|
|
|
|
slotsService
|
2025-10-20 12:41:13 +02:00
|
|
|
.updateFromTimingData(
|
|
|
|
|
{
|
|
|
|
|
prompt_n: message.timings.prompt_n || 0,
|
|
|
|
|
predicted_n: message.timings.predicted_n || 0,
|
|
|
|
|
predicted_per_second:
|
|
|
|
|
message.timings.predicted_n && message.timings.predicted_ms
|
|
|
|
|
? (message.timings.predicted_n / message.timings.predicted_ms) * 1000
|
|
|
|
|
: 0,
|
|
|
|
|
cache_n: message.timings.cache_n || 0
|
|
|
|
|
},
|
|
|
|
|
conversation.id
|
|
|
|
|
)
|
2025-09-17 19:29:13 +02:00
|
|
|
.catch((error) => {
|
|
|
|
|
console.warn('Failed to update processing state from stored timings:', error);
|
|
|
|
|
});
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!foundTimingData) {
|
2025-10-20 12:41:13 +02:00
|
|
|
slotsService.clearConversationState(conversation.id);
|
2025-09-17 19:29:13 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<div class="chat-processing-info-container" class:visible={showSlotsInfo}>
|
|
|
|
|
<div class="chat-processing-info-content">
|
|
|
|
|
{#each processingDetails as detail (detail)}
|
|
|
|
|
<span class="chat-processing-info-detail">{detail}</span>
|
|
|
|
|
{/each}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
.chat-processing-info-container {
|
|
|
|
|
position: sticky;
|
|
|
|
|
top: 0;
|
|
|
|
|
z-index: 10;
|
|
|
|
|
padding: 1.5rem 1rem;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transform: translateY(50%);
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
transition:
|
|
|
|
|
opacity 300ms ease-out,
|
|
|
|
|
transform 300ms ease-out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chat-processing-info-container.visible {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
pointer-events: auto;
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chat-processing-info-content {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 1rem;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
max-width: 48rem;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chat-processing-info-detail {
|
|
|
|
|
color: var(--muted-foreground);
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
padding: 0.25rem 0.75rem;
|
|
|
|
|
background: var(--muted);
|
|
|
|
|
border-radius: 0.375rem;
|
|
|
|
|
font-family:
|
|
|
|
|
ui-monospace, SFMono-Regular, 'SF Mono', Consolas, 'Liberation Mono', Menlo, monospace;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
.chat-processing-info-content {
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chat-processing-info-detail {
|
|
|
|
|
font-size: 0.7rem;
|
|
|
|
|
padding: 0.2rem 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|