169 | {!threadId ? (
170 |
193 | ) : (
194 | <>
195 |
196 |
Chatting with: {agentId}
197 |
203 |
204 |
205 |
206 | {messages.length === 0 ? (
207 |
208 | Send a message to start the conversation
209 |
210 | ) : (
211 | [...messages].map((msg) => (
212 |
221 |
222 | {msg.role === "user"
223 | ? "You"
224 | : msg.role === "assistant"
225 | ? "Agent"
226 | : "System"}
227 |
228 |
229 | {formatMessageContent(msg.content)}
230 |
231 |
232 | ))
233 | )}
234 |
235 |
236 |
237 |
254 | >
255 | )}
256 | {error &&
{error}
}
257 |
258 |