This commit is contained in:
Timothy Jaeryang Baek
2026-03-24 20:25:47 -05:00
parent 8b6fa1f4ab
commit 1cf1b2ca17
3 changed files with 12 additions and 5 deletions
@@ -29,7 +29,7 @@
$: toolCallCount = tokens.filter((t) => t?.attributes?.type === 'tool_calls').length;
$: reasoningCount = tokens.filter((t) => t?.attributes?.type === 'reasoning').length;
$: hasPending = tokens.some(
$: hasPending = !messageDone && tokens.some(
(t) => t?.attributes?.done !== undefined && t?.attributes?.done !== 'true'
);
@@ -384,6 +384,7 @@
title={detailToken.summary}
open={$settings?.expandDetails ?? false}
attributes={detailToken?.attributes}
messageDone={done}
className="w-full space-y-1"
dir="auto"
>
@@ -406,6 +407,7 @@
open={false}
disabled={true}
attributes={detailToken?.attributes}
messageDone={done}
className="w-full space-y-1"
dir="auto"
/>
@@ -429,6 +431,7 @@
title={token.summary}
open={$settings?.expandDetails ?? false}
attributes={token?.attributes}
messageDone={done}
className="w-full space-y-1"
dir="auto"
>
@@ -451,6 +454,7 @@
open={false}
disabled={true}
attributes={token?.attributes}
messageDone={done}
className="w-full space-y-1"
dir="auto"
/>
+7 -4
View File
@@ -50,6 +50,7 @@
export let grow = false;
export let disabled = false;
export let messageDone = false;
export let hide = false;
export let onChange: Function = () => {};
@@ -73,12 +74,12 @@
>
<div
class=" w-full flex items-center justify-between gap-2 {attributes?.done &&
attributes?.done !== 'true'
attributes?.done !== 'true' && !messageDone
? 'shimmer'
: ''}
"
>
{#if attributes?.done && attributes?.done !== 'true'}
{#if attributes?.done && attributes?.done !== 'true' && !messageDone}
<div>
<Spinner className="size-4" />
</div>
@@ -86,7 +87,7 @@
<div class="">
{#if attributes?.type === 'reasoning'}
{#if attributes?.done === 'true' && attributes?.duration}
{#if (attributes?.done === 'true' || messageDone) && attributes?.duration}
{#if attributes.duration < 1}
{$i18n.t('Thought for less than a second')}
{:else if attributes.duration < 60}
@@ -98,11 +99,13 @@
DURATION: dayjs.duration(attributes.duration, 'seconds').humanize()
})}
{/if}
{:else if attributes?.done === 'true' || messageDone}
{$i18n.t('Thought')}
{:else}
{$i18n.t('Thinking...')}
{/if}
{:else if attributes?.type === 'code_interpreter'}
{#if attributes?.done === 'true'}
{#if attributes?.done === 'true' || messageDone}
{$i18n.t('Analyzed')}
{:else}
{$i18n.t('Analyzing...')}