Skip to content

Commit

Permalink
Don't show system messages in server chat view.
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Treat <[email protected]>
  • Loading branch information
manyoso committed Jan 23, 2025
1 parent 770f68c commit 93f335c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gpt4all-chat/qml/ChatView.qml
Original file line number Diff line number Diff line change
Expand Up @@ -828,7 +828,7 @@ Rectangle {
textInput.cursorPosition = text.length;
}
height: visible ? implicitHeight : 0
visible: name !== "ToolResponse: "
visible: name !== "ToolResponse: " && name !== "System: "
}

remove: Transition {
Expand Down

0 comments on commit 93f335c

Please sign in to comment.