We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58d6b3d commit 559f2eeCopy full SHA for 559f2ee
1 file changed
lib/modules/agent_network/components/message_bubble.dart
@@ -111,8 +111,12 @@ class MessageBubble extends StatelessComponent {
111
112
for (final content in entry.content) {
113
if (content is TextContent) {
114
+ final hadTools = pendingTools.isNotEmpty;
115
flushToolGroup();
116
if (content.text.isNotEmpty) {
117
+ if (hadTools) {
118
+ widgets.add(SizedBox(height: 1));
119
+ }
120
final isContextFullError =
121
content.text.toLowerCase().contains('prompt is too long') ||
122
content.text.toLowerCase().contains('context window') ||
0 commit comments