Files
llama.cpp/tools/ui/tests/client/components/agentic-perf-state.svelte.ts
T
2026-08-10 08:38:37 +02:00

18 lines
477 B
TypeScript

// Shared reactive fixture state for the Tier 1 perf harness.
//
// The wrapper component reads this module directly rather than taking props,
// so the driver can mutate it without depending on how the test renderer
// forwards props.
import type { DatabaseMessage } from '$lib/types';
export const perfState = $state<{
message: DatabaseMessage | null;
toolMessages: DatabaseMessage[];
isStreaming: boolean;
}>({
isStreaming: true,
message: null,
toolMessages: []
});