wwf
3 天以前 a430284aa21e3ae1f0d5654e55b2ad2852519cc2
app/components/base/chat/chat/answer/agent-content.tsx
@@ -11,12 +11,10 @@
type AgentContentProps = {
  item: ChatItem
  responding?: boolean
  content?: string
}
const AgentContent: FC<AgentContentProps> = ({
  item,
  responding,
  content,
}) => {
  const {
    annotation,
@@ -28,7 +26,7 @@
  return (
    <div>
      {content ? <Markdown content={content} /> : agent_thoughts?.map((thought, index) => (
      {agent_thoughts?.map((thought, index) => (
        <div key={index} className='px-2 py-1'>
          {thought.thought && (
            <Markdown content={thought.thought} />