diff --git a/apps/playground/src/components/chat/MessageBubble.tsx b/apps/playground/src/components/chat/MessageBubble.tsx index 8e85993..3fdf0f9 100644 --- a/apps/playground/src/components/chat/MessageBubble.tsx +++ b/apps/playground/src/components/chat/MessageBubble.tsx @@ -92,6 +92,18 @@ export function MessageBubble({ )} + + {/* Tool Error */} + {toolPart.error && ( +
+
Error:
+
+                            {typeof toolPart.error === 'string'
+                              ? toolPart.error
+                              : JSON.stringify(toolPart.error, null, 2)}
+                          
+
+ )} ); }