No markdown in cot (#16483)
* fix: let the model think in plaintext * chore: npm run format + npm run build
This commit is contained in:
parent
56b4795842
commit
8328fd4bae
Binary file not shown.
|
|
@ -4,7 +4,6 @@
|
|||
import * as Collapsible from '$lib/components/ui/collapsible/index.js';
|
||||
import { buttonVariants } from '$lib/components/ui/button/index.js';
|
||||
import { Card } from '$lib/components/ui/card';
|
||||
import { MarkdownContent } from '$lib/components/app';
|
||||
import { config } from '$lib/stores/settings.svelte';
|
||||
|
||||
interface Props {
|
||||
|
|
@ -59,7 +58,9 @@
|
|||
<Collapsible.Content>
|
||||
<div class="border-t border-muted px-3 pb-3">
|
||||
<div class="pt-3">
|
||||
<MarkdownContent content={reasoningContent || ''} class="text-xs leading-relaxed" />
|
||||
<div class="text-xs leading-relaxed break-words whitespace-pre-wrap">
|
||||
{reasoningContent ?? ''}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</Collapsible.Content>
|
||||
|
|
|
|||
Loading…
Reference in New Issue