diff --git a/community-chatbot/app/icon.png b/community-chatbot/app/icon.png new file mode 100644 index 00000000..8f215cb7 Binary files /dev/null and b/community-chatbot/app/icon.png differ diff --git a/community-chatbot/components/agent/Mode/Chat/Panel/MessageList.tsx b/community-chatbot/components/agent/Mode/Chat/Panel/MessageList.tsx index ccf88edc..6d97a6a4 100644 --- a/community-chatbot/components/agent/Mode/Chat/Panel/MessageList.tsx +++ b/community-chatbot/components/agent/Mode/Chat/Panel/MessageList.tsx @@ -23,11 +23,36 @@ export function MessageList({ messages }: MessageListProps) { : 'bg-white dark:bg-gray-700 shadow-sm border dark:border-gray-600 max-w-[80%]' }`} > -
- - {message.content} - -
+ + ( +
+                    {children}
+                  
+ ), + code: ({ inline, children }: any) => ( + + {children} + + ), + a: ({ children }) => ( + {children} + ), + table: ({ children }) => ( +
{children}
+ ), + }} + > + {message.content} +
+