diff --git a/internal/version/version.go b/internal/version/version.go index 20bb970..3040116 100644 --- a/internal/version/version.go +++ b/internal/version/version.go @@ -7,7 +7,7 @@ import ( const ( Name = "muyue" - Version = "0.9.1" + Version = "0.9.2" Author = "La Légion de Muyue" ) diff --git a/web/index.html b/web/index.html index 18f15cb..74f1cf7 100644 --- a/web/index.html +++ b/web/index.html @@ -5,9 +5,9 @@ - - - + + + diff --git a/web/src/components/Studio.jsx b/web/src/components/Studio.jsx index 654ce22..6390d9f 100644 --- a/web/src/components/Studio.jsx +++ b/web/src/components/Studio.jsx @@ -277,6 +277,17 @@ function CodeBlockWithCopy({ part, index, copiedIdx, setCopiedIdx }) { ) } +function MarkdownContent({ content, raw }) { + if (raw) { + return
{content}
+ } + return ( +
+ {content} +
+ ) +} + function FeedItem({ msg, activeAgents, onModeChange }) { const isUser = msg.role === 'user' const isSystem = msg.role === 'system'