gpt4all/main.qml

894 lines
31 KiB
QML
Raw Normal View History

import QtCore
2023-04-09 03:28:39 +00:00
import QtQuick
import QtQuick.Controls
2023-04-10 19:03:00 +00:00
import QtQuick.Controls.Basic
2023-04-16 05:14:42 +00:00
import QtQuick.Layouts
2023-04-09 03:28:39 +00:00
import llm
2023-04-28 14:54:05 +00:00
import download
import network
2023-04-09 03:28:39 +00:00
Window {
id: window
width: 1280
height: 720
visible: true
title: qsTr("GPT4All v") + Qt.application.version
Theme {
id: theme
}
2023-05-01 21:13:20 +00:00
property var currentChat: LLM.chatListModel.currentChat
property var chatModel: currentChat.chatModel
2023-04-24 01:05:38 +00:00
color: theme.textColor
2023-04-09 03:28:39 +00:00
2023-04-28 14:54:05 +00:00
// Startup code
Component.onCompleted: {
if (!LLM.compatHardware)
errorCompatHardware.open();
else
startupDialogs();
2023-04-28 14:54:05 +00:00
}
Connections {
target: firstStartDialog
function onClosed() {
startupDialogs();
}
}
Connections {
target: downloadNewModels
function onClosed() {
startupDialogs();
}
}
Connections {
target: Download
function onHasNewerReleaseChanged() {
startupDialogs();
}
}
Connections {
target: currentChat
function onResponseInProgressChanged() {
if (Network.isActive && !currentChat.responseInProgress)
Network.sendConversation(currentChat.id, getConversationJson());
}
}
2023-04-28 14:54:05 +00:00
function startupDialogs() {
// check for first time start of this version
if (Download.isFirstStart()) {
firstStartDialog.open();
return;
}
// check for any current models and if not, open download dialog
if (currentChat.modelList.length === 0 && !firstStartDialog.opened) {
2023-04-28 14:54:05 +00:00
downloadNewModels.open();
return;
}
// check for new version
if (Download.hasNewerRelease && !firstStartDialog.opened && !downloadNewModels.opened) {
2023-04-28 14:54:05 +00:00
newVersionDialog.open();
return;
}
}
PopupDialog {
id: errorCompatHardware
anchors.centerIn: parent
shouldTimeOut: false
shouldShowBusy: false
closePolicy: Popup.NoAutoClose
modal: true
text: qsTr("Incompatible hardware detected. Please try the avx-only installer on https://gpt4all.io")
}
2023-04-28 14:54:05 +00:00
StartupDialog {
id: firstStartDialog
anchors.centerIn: parent
}
NewVersionDialog {
id: newVersionDialog
anchors.centerIn: parent
}
2023-05-05 14:47:05 +00:00
AboutDialog {
id: aboutDialog
anchors.centerIn: parent
}
2023-04-18 12:39:48 +00:00
Item {
Accessible.role: Accessible.Window
Accessible.name: title
}
Rectangle {
2023-04-11 03:34:34 +00:00
id: header
anchors.left: parent.left
anchors.right: parent.right
anchors.top: parent.top
height: 100
color: theme.backgroundDarkest
Item {
anchors.centerIn: parent
height: childrenRect.height
2023-05-01 21:13:20 +00:00
visible: currentChat.isModelLoaded
Label {
id: modelLabel
color: theme.textColor
padding: 20
2023-05-01 21:13:20 +00:00
font.pixelSize: theme.fontSizeLarger
text: ""
background: Rectangle {
color: theme.backgroundDarkest
}
horizontalAlignment: TextInput.AlignRight
}
ComboBox {
id: comboBox
2023-04-24 04:22:31 +00:00
width: 350
anchors.top: modelLabel.top
anchors.bottom: modelLabel.bottom
anchors.horizontalCenter: parent.horizontalCenter
2023-04-23 15:23:02 +00:00
font.pixelSize: theme.fontSizeLarge
spacing: 0
model: currentChat.modelList
Accessible.role: Accessible.ComboBox
Accessible.name: qsTr("ComboBox for displaying/picking the current model")
Accessible.description: qsTr("Use this for picking the current model to use; the first item is the current model")
contentItem: Text {
anchors.horizontalCenter: parent.horizontalCenter
leftPadding: 10
rightPadding: 10
text: comboBox.displayText
font: comboBox.font
color: theme.textColor
verticalAlignment: Text.AlignVCenter
horizontalAlignment: Text.AlignHCenter
elide: Text.ElideRight
}
delegate: ItemDelegate {
width: comboBox.width
contentItem: Text {
text: modelData
color: theme.textColor
2023-04-23 15:23:02 +00:00
font: comboBox.font
elide: Text.ElideRight
verticalAlignment: Text.AlignVCenter
}
background: Rectangle {
color: highlighted ? theme.backgroundLight : theme.backgroundDark
}
highlighted: comboBox.highlightedIndex === index
}
popup: Popup {
y: comboBox.height - 1
width: comboBox.width
implicitHeight: contentItem.implicitHeight
padding: 0
contentItem: ListView {
clip: true
implicitHeight: contentHeight
model: comboBox.popup.visible ? comboBox.delegateModel : null
currentIndex: comboBox.highlightedIndex
ScrollIndicator.vertical: ScrollIndicator { }
}
background: Rectangle {
color: theme.backgroundDark
}
}
background: Rectangle {
color: theme.backgroundDark
}
onActivated: {
2023-05-01 21:13:20 +00:00
currentChat.stopGenerating()
currentChat.reset();
currentChat.modelName = comboBox.currentText
}
}
2023-04-11 03:34:34 +00:00
}
2023-04-09 03:28:39 +00:00
BusyIndicator {
anchors.centerIn: parent
2023-05-01 21:13:20 +00:00
visible: !currentChat.isModelLoaded
running: !currentChat.isModelLoaded
2023-04-18 12:39:48 +00:00
Accessible.role: Accessible.Animation
Accessible.name: qsTr("Busy indicator")
Accessible.description: qsTr("Displayed when the model is loading")
}
2023-04-11 03:34:34 +00:00
}
2023-04-23 10:58:07 +00:00
SettingsDialog {
2023-04-16 05:14:42 +00:00
id: settingsDialog
anchors.centerIn: parent
width: Math.min(1024, window.width - (window.width * .2))
height: Math.min(600, window.height - (window.height * .2))
2023-04-16 05:14:42 +00:00
}
2023-04-11 03:34:34 +00:00
Button {
id: drawerButton
anchors.left: parent.left
2023-04-11 03:34:34 +00:00
anchors.top: parent.top
anchors.topMargin: 30
anchors.leftMargin: 30
width: 40
2023-04-11 03:34:34 +00:00
height: 40
z: 200
padding: 15
2023-04-18 12:39:48 +00:00
Accessible.role: Accessible.ButtonMenu
Accessible.name: qsTr("Hamburger button")
Accessible.description: qsTr("Hamburger button that reveals a drawer on the left of the application")
2023-04-11 03:34:34 +00:00
background: Item {
anchors.centerIn: parent
width: 30
height: 30
2023-04-11 03:34:34 +00:00
Rectangle {
id: bar1
color: theme.backgroundLightest
2023-04-11 03:34:34 +00:00
width: parent.width
height: 6
2023-04-11 03:34:34 +00:00
radius: 2
antialiasing: true
}
Rectangle {
id: bar2
anchors.centerIn: parent
color: theme.backgroundLightest
2023-04-11 03:34:34 +00:00
width: parent.width
height: 6
2023-04-11 03:34:34 +00:00
radius: 2
antialiasing: true
}
Rectangle {
id: bar3
anchors.bottom: parent.bottom
color: theme.backgroundLightest
2023-04-11 03:34:34 +00:00
width: parent.width
height: 6
2023-04-11 03:34:34 +00:00
radius: 2
antialiasing: true
}
}
onClicked: {
drawer.visible = !drawer.visible
}
}
NetworkDialog {
id: networkDialog
anchors.centerIn: parent
width: Math.min(1024, window.width - (window.width * .2))
height: Math.min(600, window.height - (window.height * .2))
Item {
Accessible.role: Accessible.Dialog
Accessible.name: qsTr("Network dialog")
Accessible.description: qsTr("Dialog for opt-in to sharing feedback/conversations")
}
}
2023-04-11 03:34:34 +00:00
Button {
id: networkButton
2023-04-09 03:28:39 +00:00
anchors.right: parent.right
anchors.top: parent.top
2023-04-24 04:31:39 +00:00
anchors.topMargin: 30
anchors.rightMargin: 30
2023-04-24 04:25:57 +00:00
width: 40
2023-04-24 04:31:39 +00:00
height: 40
z: 200
padding: 15
Accessible.role: Accessible.Button
Accessible.name: qsTr("Network button")
Accessible.description: qsTr("Reveals a dialogue where you can opt-in for sharing data over network")
background: Item {
anchors.fill: parent
Rectangle {
anchors.fill: parent
color: "transparent"
visible: Network.isActive
border.color: theme.backgroundLightest
border.width: 1
radius: 10
}
Image {
anchors.centerIn: parent
2023-04-24 04:20:21 +00:00
width: 30
height: 30
source: "qrc:/gpt4all/icons/network.svg"
}
}
onClicked: {
if (Network.isActive) {
Network.isActive = false
Network.sendNetworkToggled(false);
} else
networkDialog.open()
}
}
Connections {
target: Network
function onHealthCheckFailed(code) {
healthCheckFailed.open();
}
}
Button {
id: settingsButton
anchors.right: networkButton.left
anchors.top: parent.top
2023-04-11 03:34:34 +00:00
anchors.topMargin: 30
anchors.rightMargin: 30
2023-04-24 04:25:57 +00:00
width: 40
2023-04-11 03:34:34 +00:00
height: 40
z: 200
padding: 15
2023-04-09 03:28:39 +00:00
background: Item {
anchors.fill: parent
Image {
anchors.centerIn: parent
2023-04-24 04:20:21 +00:00
width: 30
height: 30
source: "qrc:/gpt4all/icons/settings.svg"
}
}
2023-04-18 12:39:48 +00:00
Accessible.role: Accessible.Button
Accessible.name: qsTr("Settings button")
Accessible.description: qsTr("Reveals a dialogue where you can change various settings")
onClicked: {
settingsDialog.open()
}
}
PopupDialog {
id: copyMessage
anchors.centerIn: parent
text: qsTr("Conversation copied to clipboard.")
}
PopupDialog {
id: healthCheckFailed
anchors.centerIn: parent
text: qsTr("Connection to datalake failed.")
}
PopupDialog {
id: recalcPopup
anchors.centerIn: parent
shouldTimeOut: false
shouldShowBusy: true
text: qsTr("Recalculating context.")
Connections {
target: currentChat
function onRecalcChanged() {
if (currentChat.isRecalc)
recalcPopup.open()
else
recalcPopup.close()
}
}
}
Button {
id: copyButton
anchors.right: settingsButton.left
anchors.top: parent.top
anchors.topMargin: 30
anchors.rightMargin: 30
2023-04-24 04:25:57 +00:00
width: 40
height: 40
z: 200
padding: 15
2023-04-18 12:39:48 +00:00
Accessible.role: Accessible.Button
Accessible.name: qsTr("Copy button")
Accessible.description: qsTr("Copy the conversation to the clipboard")
2023-04-11 12:54:57 +00:00
background: Item {
anchors.fill: parent
Image {
anchors.centerIn: parent
2023-04-24 04:20:21 +00:00
width: 30
height: 30
source: "qrc:/gpt4all/icons/copy.svg"
2023-04-11 12:54:57 +00:00
}
}
TextEdit{
id: copyEdit
visible: false
}
onClicked: {
var conversation = getConversation()
2023-04-11 12:54:57 +00:00
copyEdit.text = conversation
copyEdit.selectAll()
copyEdit.copy()
copyMessage.open()
2023-04-11 12:54:57 +00:00
}
}
function getConversation() {
var conversation = "";
for (var i = 0; i < chatModel.count; i++) {
var item = chatModel.get(i)
var string = item.name;
var isResponse = item.name === qsTr("Response: ")
string += chatModel.get(i).value
if (isResponse && item.stopped)
string += " <stopped>"
string += "\n"
conversation += string
}
return conversation
}
function getConversationJson() {
var str = "{\"conversation\": [";
for (var i = 0; i < chatModel.count; i++) {
var item = chatModel.get(i)
var isResponse = item.name === qsTr("Response: ")
str += "{\"content\": ";
str += JSON.stringify(item.value)
str += ", \"role\": \"" + (isResponse ? "assistant" : "user") + "\"";
if (isResponse && item.thumbsUpState !== item.thumbsDownState)
str += ", \"rating\": \"" + (item.thumbsUpState ? "positive" : "negative") + "\"";
if (isResponse && item.newResponse !== "")
2023-04-26 02:49:23 +00:00
str += ", \"edited_content\": " + JSON.stringify(item.newResponse);
if (isResponse && item.stopped)
str += ", \"stopped\": \"true\""
if (!isResponse)
str += "},"
else
str += ((i < chatModel.count - 1) ? "}," : "}")
}
return str + "]}"
}
2023-04-11 12:54:57 +00:00
Button {
id: resetContextButton
anchors.right: copyButton.left
anchors.top: parent.top
anchors.topMargin: 30
anchors.rightMargin: 30
2023-04-24 04:25:57 +00:00
width: 40
2023-04-11 12:54:57 +00:00
height: 40
z: 200
padding: 15
2023-04-18 12:39:48 +00:00
Accessible.role: Accessible.Button
Accessible.name: text
Accessible.description: qsTr("Reset the context which erases current conversation")
2023-04-11 03:34:34 +00:00
background: Item {
anchors.fill: parent
Image {
anchors.centerIn: parent
2023-04-24 04:20:21 +00:00
width: 30
height: 30
source: "qrc:/gpt4all/icons/regenerate.svg"
2023-04-11 03:34:34 +00:00
}
}
2023-04-11 03:34:34 +00:00
onClicked: {
Network.sendResetContext(chatModel.count)
2023-05-01 21:13:20 +00:00
currentChat.reset();
2023-04-11 03:34:34 +00:00
}
}
Dialog {
id: checkForUpdatesError
anchors.centerIn: parent
modal: false
opacity: 0.9
padding: 20
2023-04-11 03:34:34 +00:00
Text {
horizontalAlignment: Text.AlignJustify
text: qsTr("ERROR: Update system could not find the MaintenanceTool used<br>
to check for updates!<br><br>
Did you install this application using the online installer? If so,<br>
the MaintenanceTool executable should be located one directory<br>
above where this application resides on your filesystem.<br><br>
If you can't start it manually, then I'm afraid you'll have to<br>
reinstall.")
color: theme.textColor
2023-04-18 12:39:48 +00:00
Accessible.role: Accessible.Dialog
Accessible.name: text
Accessible.description: qsTr("Dialog indicating an error")
2023-04-11 03:34:34 +00:00
}
background: Rectangle {
anchors.fill: parent
color: theme.backgroundDarkest
2023-04-11 03:34:34 +00:00
border.width: 1
border.color: theme.dialogBorder
2023-04-11 03:34:34 +00:00
radius: 10
}
}
2023-04-19 01:10:06 +00:00
ModelDownloaderDialog {
id: downloadNewModels
anchors.centerIn: parent
width: Math.min(1024, window.width - (window.width * .2))
height: Math.min(600, window.height - (window.height * .2))
2023-04-19 01:10:06 +00:00
Item {
Accessible.role: Accessible.Dialog
Accessible.name: qsTr("Download new models dialog")
Accessible.description: qsTr("Dialog for downloading new models")
}
}
ChatDrawer {
2023-04-11 03:34:34 +00:00
id: drawer
y: header.height
width: 0.3 * window.width
height: window.height - y
onDownloadClicked: {
downloadNewModels.open()
}
2023-05-05 14:47:05 +00:00
onAboutClicked: {
aboutDialog.open()
}
2023-04-11 03:34:34 +00:00
}
Rectangle {
id: conversation
color: theme.backgroundLight
2023-04-11 03:34:34 +00:00
anchors.left: parent.left
anchors.right: parent.right
anchors.bottom: parent.bottom
anchors.top: header.bottom
2023-04-09 03:28:39 +00:00
ScrollView {
id: scrollView
anchors.left: parent.left
anchors.right: parent.right
anchors.top: parent.top
2023-04-20 12:31:33 +00:00
anchors.bottom: textInputView.top
2023-04-09 03:28:39 +00:00
anchors.bottomMargin: 30
ScrollBar.vertical.policy: ScrollBar.AlwaysOn
Rectangle {
anchors.fill: parent
color: theme.backgroundLighter
2023-04-09 03:28:39 +00:00
ListView {
id: listView
anchors.fill: parent
model: chatModel
2023-04-18 12:39:48 +00:00
Accessible.role: Accessible.List
Accessible.name: qsTr("List of prompt/response pairs")
Accessible.description: qsTr("This is the list of prompt/response pairs comprising the actual conversation with the model")
2023-04-09 03:28:39 +00:00
delegate: TextArea {
text: value
width: listView.width
color: theme.textColor
2023-04-09 03:28:39 +00:00
wrapMode: Text.WordWrap
focus: false
readOnly: true
2023-04-23 15:23:02 +00:00
font.pixelSize: theme.fontSizeLarge
cursorVisible: currentResponse ? currentChat.responseInProgress : false
2023-04-09 03:28:39 +00:00
cursorPosition: text.length
background: Rectangle {
color: name === qsTr("Response: ") ? theme.backgroundLighter : theme.backgroundLight
2023-04-09 03:28:39 +00:00
}
2023-04-18 12:39:48 +00:00
Accessible.role: Accessible.Paragraph
Accessible.name: name
Accessible.description: name === qsTr("Response: ") ? "The response by the model" : "The prompt by the user"
topPadding: 20
bottomPadding: 20
2023-04-09 03:28:39 +00:00
leftPadding: 100
rightPadding: 100
2023-04-09 03:28:39 +00:00
BusyIndicator {
anchors.left: parent.left
anchors.leftMargin: 90
anchors.top: parent.top
anchors.topMargin: 5
visible: (currentResponse ? true : false) && value === "" && currentChat.responseInProgress
running: (currentResponse ? true : false) && value === "" && currentChat.responseInProgress
2023-04-18 12:39:48 +00:00
Accessible.role: Accessible.Animation
Accessible.name: qsTr("Busy indicator")
Accessible.description: qsTr("Displayed when the model is thinking")
}
2023-04-09 03:28:39 +00:00
Rectangle {
anchors.left: parent.left
anchors.top: parent.top
anchors.leftMargin: 20
anchors.topMargin: 20
width: 30
height: 30
radius: 5
color: name === qsTr("Response: ") ? theme.assistantColor : theme.userColor
2023-04-09 03:28:39 +00:00
Text {
anchors.centerIn: parent
text: name === qsTr("Response: ") ? "R" : "P"
color: "white"
}
}
ThumbsDownDialog {
id: thumbsDownDialog
property point globalPoint: mapFromItem(window,
window.width / 2 - width / 2,
window.height / 2 - height / 2)
x: globalPoint.x
y: globalPoint.y
property string text: value
2023-04-27 15:44:41 +00:00
response: newResponse === undefined || newResponse === "" ? text : newResponse
onAccepted: {
var responseHasChanged = response !== text && response !== newResponse
if (thumbsDownState && !thumbsUpState && !responseHasChanged)
return
chatModel.updateNewResponse(index, response)
chatModel.updateThumbsUpState(index, false)
chatModel.updateThumbsDownState(index, true)
2023-05-01 21:13:20 +00:00
Network.sendConversation(currentChat.id, getConversationJson());
}
}
Column {
visible: name === qsTr("Response: ") &&
2023-05-01 21:13:20 +00:00
(!currentResponse || !currentChat.responseInProgress) && Network.isActive
anchors.right: parent.right
anchors.rightMargin: 20
anchors.top: parent.top
anchors.topMargin: 20
spacing: 10
Item {
width: childrenRect.width
height: childrenRect.height
Button {
id: thumbsUp
width: 30
height: 30
opacity: thumbsUpState || thumbsUpState == thumbsDownState ? 1.0 : 0.2
background: Image {
anchors.fill: parent
source: "qrc:/gpt4all/icons/thumbs_up.svg"
}
onClicked: {
if (thumbsUpState && !thumbsDownState)
return
chatModel.updateNewResponse(index, "")
chatModel.updateThumbsUpState(index, true)
chatModel.updateThumbsDownState(index, false)
2023-05-01 21:13:20 +00:00
Network.sendConversation(currentChat.id, getConversationJson());
}
}
Button {
id: thumbsDown
anchors.top: thumbsUp.top
anchors.topMargin: 10
anchors.left: thumbsUp.right
anchors.leftMargin: 2
width: 30
height: 30
checked: thumbsDownState
opacity: thumbsDownState || thumbsUpState == thumbsDownState ? 1.0 : 0.2
transform: [
Matrix4x4 {
matrix: Qt.matrix4x4(-1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
},
Translate {
x: thumbsDown.width
}
]
background: Image {
anchors.fill: parent
source: "qrc:/gpt4all/icons/thumbs_down.svg"
}
onClicked: {
thumbsDownDialog.open()
}
}
}
}
2023-04-09 03:28:39 +00:00
}
property bool shouldAutoScroll: true
property bool isAutoScrolling: false
Connections {
target: currentChat
2023-04-09 03:28:39 +00:00
function onResponseChanged() {
if (listView.shouldAutoScroll) {
listView.isAutoScrolling = true
listView.positionViewAtEnd()
listView.isAutoScrolling = false
}
}
}
onContentYChanged: {
if (!isAutoScrolling)
shouldAutoScroll = atYEnd
}
Component.onCompleted: {
shouldAutoScroll = true
positionViewAtEnd()
}
footer: Item {
id: bottomPadding
width: parent.width
height: 60
}
}
}
}
Button {
2023-04-26 01:20:21 +00:00
visible: chatModel.count
2023-04-09 03:28:39 +00:00
Image {
anchors.verticalCenter: parent.verticalCenter
anchors.left: parent.left
anchors.leftMargin: 15
2023-05-01 21:13:20 +00:00
source: currentChat.responseInProgress ? "qrc:/gpt4all/icons/stop_generating.svg" : "qrc:/gpt4all/icons/regenerate.svg"
2023-04-09 03:28:39 +00:00
}
2023-04-09 11:38:25 +00:00
leftPadding: 50
2023-04-09 03:28:39 +00:00
onClicked: {
var index = Math.max(0, chatModel.count - 1);
var listElement = chatModel.get(index);
2023-05-01 21:13:20 +00:00
if (currentChat.responseInProgress) {
listElement.stopped = true
2023-05-01 21:13:20 +00:00
currentChat.stopGenerating()
} else {
2023-05-01 21:13:20 +00:00
currentChat.regenerateResponse()
2023-04-09 03:28:39 +00:00
if (chatModel.count) {
if (listElement.name === qsTr("Response: ")) {
chatModel.updateCurrentResponse(index, true);
chatModel.updateStopped(index, false);
chatModel.updateThumbsUpState(index, false);
chatModel.updateThumbsDownState(index, false);
chatModel.updateNewResponse(index, "");
2023-05-01 21:13:20 +00:00
currentChat.prompt(listElement.prompt, settingsDialog.promptTemplate,
2023-04-23 10:58:07 +00:00
settingsDialog.maxLength,
2023-04-24 04:27:45 +00:00
settingsDialog.topK, settingsDialog.topP,
2023-04-23 10:58:07 +00:00
settingsDialog.temperature,
settingsDialog.promptBatchSize,
settingsDialog.repeatPenalty,
settingsDialog.repeatPenaltyTokens)
2023-04-09 03:28:39 +00:00
}
}
}
}
2023-04-20 12:31:33 +00:00
anchors.bottom: textInputView.top
anchors.horizontalCenter: textInputView.horizontalCenter
2023-04-09 03:28:39 +00:00
anchors.bottomMargin: 40
padding: 15
2023-04-11 03:34:34 +00:00
contentItem: Text {
2023-05-01 21:13:20 +00:00
text: currentChat.responseInProgress ? qsTr("Stop generating") : qsTr("Regenerate response")
color: theme.textColor
2023-04-18 12:39:48 +00:00
Accessible.role: Accessible.Button
Accessible.name: text
Accessible.description: qsTr("Controls generation of the response")
2023-04-11 03:34:34 +00:00
}
2023-04-09 03:28:39 +00:00
background: Rectangle {
opacity: .5
border.color: theme.backgroundLightest
2023-04-09 03:28:39 +00:00
border.width: 1
radius: 10
color: theme.backgroundLight
2023-04-09 03:28:39 +00:00
}
}
2023-04-20 12:31:33 +00:00
ScrollView {
id: textInputView
2023-04-09 03:28:39 +00:00
anchors.left: parent.left
anchors.right: parent.right
2023-04-09 03:28:39 +00:00
anchors.bottom: parent.bottom
anchors.margins: 30
2023-04-20 12:31:33 +00:00
height: Math.min(contentHeight, 200)
TextArea {
id: textInput
color: theme.textColor
2023-04-20 12:31:33 +00:00
padding: 20
rightPadding: 40
2023-05-01 21:13:20 +00:00
enabled: currentChat.isModelLoaded
wrapMode: Text.WordWrap
2023-04-23 15:23:02 +00:00
font.pixelSize: theme.fontSizeLarge
2023-04-20 12:31:33 +00:00
placeholderText: qsTr("Send a message...")
placeholderTextColor: theme.backgroundLightest
2023-04-20 12:31:33 +00:00
background: Rectangle {
color: theme.backgroundLighter
2023-04-20 12:31:33 +00:00
radius: 10
}
Accessible.role: Accessible.EditableText
Accessible.name: placeholderText
Accessible.description: qsTr("Textfield for sending messages/prompts to the model")
Keys.onReturnPressed: (event)=> {
2023-04-20 12:31:33 +00:00
if (event.modifiers & Qt.ControlModifier || event.modifiers & Qt.ShiftModifier)
event.accepted = false;
else {
2023-04-20 12:31:33 +00:00
editingFinished();
sendMessage()
}
2023-04-09 03:28:39 +00:00
}
function sendMessage() {
2023-04-20 12:31:33 +00:00
if (textInput.text === "")
return
2023-05-01 21:13:20 +00:00
currentChat.stopGenerating()
2023-04-09 03:28:39 +00:00
2023-04-20 12:31:33 +00:00
if (chatModel.count) {
var index = Math.max(0, chatModel.count - 1);
var listElement = chatModel.get(index);
chatModel.updateCurrentResponse(index, false);
2023-04-20 12:31:33 +00:00
}
2023-05-01 21:13:20 +00:00
currentChat.newPromptResponsePair(textInput.text);
currentChat.prompt(textInput.text, settingsDialog.promptTemplate,
2023-04-23 10:58:07 +00:00
settingsDialog.maxLength,
settingsDialog.topK,
settingsDialog.topP,
settingsDialog.temperature,
settingsDialog.promptBatchSize,
settingsDialog.repeatPenalty,
settingsDialog.repeatPenaltyTokens)
2023-04-20 12:31:33 +00:00
textInput.text = ""
2023-04-09 03:28:39 +00:00
}
2023-04-20 12:31:33 +00:00
}
}
2023-04-09 03:28:39 +00:00
2023-04-20 12:31:33 +00:00
Button {
anchors.right: textInputView.right
anchors.verticalCenter: textInputView.verticalCenter
anchors.rightMargin: 15
width: 30
height: 30
2023-04-18 12:39:48 +00:00
2023-04-20 12:31:33 +00:00
background: Image {
anchors.centerIn: parent
source: "qrc:/gpt4all/icons/send_message.svg"
2023-04-20 12:31:33 +00:00
}
Accessible.role: Accessible.Button
Accessible.name: qsTr("Send the message button")
Accessible.description: qsTr("Sends the message/prompt contained in textfield to the model")
onClicked: {
textInput.sendMessage()
2023-04-09 03:28:39 +00:00
}
}
}
}