We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c52382 commit 7bfd9acCopy full SHA for 7bfd9ac
2 files changed
src/lib/components/chat/Messages/Markdown/ConsecutiveDetailsGroup.svelte
@@ -31,7 +31,7 @@
31
32
export let messageDone = true;
33
34
- let open = false;
+ let open = $settings?.expandDetails ?? false;
35
36
function parseJSONString(str: string) {
37
try {
src/lib/components/chat/Messages/Markdown/MarkdownTokens.svelte
@@ -381,7 +381,7 @@
381
id={`${id}-${tokenIdx}-${detailIdx}-tc`}
382
attributes={detailToken.attributes}
383
grouped={true}
384
- open={false}
+ open={$settings?.expandDetails ?? false}
385
className="w-full space-y-1"
386
/>
387
{:else if textContent.length > 0}
@@ -428,7 +428,7 @@
428
<ToolCallDisplay
429
id={`${id}-${tokenIdx}-tc`}
430
attributes={token.attributes}
431
432
433
434
0 commit comments