We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a18681b commit 2dfcc58Copy full SHA for 2dfcc58
core/src/main/kotlin/cc/unitmesh/devti/llms/custom/CustomSSEProcessor.kt
@@ -147,7 +147,9 @@ open class CustomSSEProcessor(private val project: Project) {
147
148
if (output.isNotEmpty()) {
149
messages += Message(ChatRole.Assistant.roleName(), output)
150
- AutoDevNotifications.notify(project, reasonerOutput)
+ if (reasonerOutput.isNotEmpty()) {
151
+ AutoDevNotifications.notify(project, reasonerOutput)
152
+ }
153
}
154
155
recording.write(RecordingInstruction(promptText, output))
0 commit comments