diff --git a/app/components/chat.module.scss b/app/components/chat.module.scss index a3ab56062..b6f0c1d1b 100644 --- a/app/components/chat.module.scss +++ b/app/components/chat.module.scss @@ -348,6 +348,37 @@ } } +.chat-message-checkmark { + display: inline-block; + margin-right: 5px; + height: 12px; + width: 12px; + color: #13a10e; + fill: #13a10e; + user-select: none; + backface-visibility: hidden; + transform: translateZ(0px); +} + +.chat-message-tools-status { + display: flex; + justify-content: center; + align-items: center; + font-size: 12px; + margin-top: 5px; + line-height: 1.5; +} + +.chat-message-tools-name { + color: #aaa; +} + +.chat-message-tools-details { + margin-left: 5px; + font-weight: bold; + color: #999; +} + .chat-message-status { font-size: 12px; color: #aaa; diff --git a/app/components/chat.tsx b/app/components/chat.tsx index febef7188..87835f984 100644 --- a/app/components/chat.tsx +++ b/app/components/chat.tsx @@ -36,6 +36,7 @@ import StopIcon from "../icons/pause.svg"; import RobotIcon from "../icons/robot.svg"; import SearchCloseIcon from "../icons/search_close.svg"; import SearchOpenIcon from "../icons/search_open.svg"; +import CheckmarkIcon from "../icons/checkmark.svg"; import { ChatMessage, @@ -1148,6 +1149,21 @@ export function Chat() { )} + +
+
+
+ + web search: + + xxxxxxxxxxxxxxxx + +
+
+
+ {showTyping && (
{Locale.Chat.Typing} diff --git a/app/icons/checkmark.svg b/app/icons/checkmark.svg new file mode 100644 index 000000000..e07bf8a8d --- /dev/null +++ b/app/icons/checkmark.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file