2023-05-23 15:05:04 +00:00
import QtCore
2023-05-22 13:03:06 +00:00
import QtQuick
import QtQuick . Controls
import QtQuick . Controls . Basic
import QtQuick . Layouts
2023-05-23 15:05:04 +00:00
import QtQuick . Dialogs
2023-05-23 02:13:42 +00:00
import localdocs
2023-05-22 13:03:06 +00:00
2023-05-23 02:13:42 +00:00
Item {
2023-05-23 15:05:04 +00:00
id: root
2023-05-24 00:26:31 +00:00
2023-05-23 15:05:04 +00:00
property string collection: ""
property string folder_path: ""
2023-05-24 00:26:31 +00:00
property int defaultChunkSize: 256
property int defaultRetrievalSize: 3
property alias chunkSize: settings . chunkSize
property alias retrievalSize: settings . retrievalSize
Settings {
id: settings
category: "localdocs"
property int chunkSize: root . defaultChunkSize
property int retrievalSize: root . defaultRetrievalSize
}
function restoreLocalDocsDefaults ( ) {
settings . chunkSize = root . defaultChunkSize
settings . retrievalSize = root . defaultRetrievalSize
LocalDocs . chunkSize = settings . chunkSize
LocalDocs . retrievalSize = settings . retrievalSize
settings . sync ( )
}
2023-05-23 15:05:04 +00:00
FolderDialog {
id: folderDialog
title: "Please choose a directory"
2023-05-25 15:13:02 +00:00
currentFolder: StandardPaths . writableLocation ( StandardPaths . HomeLocation )
2023-05-23 15:05:04 +00:00
onAccepted: {
root . folder_path = selectedFolder
2023-05-23 02:13:42 +00:00
}
2023-05-22 13:03:06 +00:00
}
2023-05-23 15:05:04 +00:00
Rectangle {
id: addCollection
anchors.left: parent . left
anchors.right: parent . right
height: collection . height + 20
color: theme . backgroundDark
2023-05-23 02:13:42 +00:00
2023-05-23 15:05:04 +00:00
MyTextField {
id: collection
anchors.verticalCenter: parent . verticalCenter
anchors.left: parent . left
width: 225
horizontalAlignment: Text . AlignJustify
2023-05-23 02:13:42 +00:00
color: theme . textColor
2023-05-23 15:05:04 +00:00
placeholderText: qsTr ( "Collection name..." )
placeholderTextColor: theme . mutedTextColor
ToolTip.text: qsTr ( "Name of the collection to add (Required)" )
ToolTip.visible: hovered
onEditingFinished: {
root . collection = text
}
Accessible.role: Accessible . EditableText
Accessible.name: collection . text
Accessible.description: ToolTip . text
2023-05-23 02:13:42 +00:00
}
MyTextField {
2023-05-23 15:05:04 +00:00
id: folderLabel
anchors.left: collection . right
anchors.leftMargin: 10
anchors.right: browseButton . left
anchors.rightMargin: 10
anchors.verticalCenter: parent . verticalCenter
text: root . folder_path
readOnly: true
color: theme . textColor
placeholderText: qsTr ( "Folder path..." )
placeholderTextColor: theme . mutedTextColor
ToolTip.text: qsTr ( "Folder path to documents (Required)" )
ToolTip.visible: hovered
2023-05-23 02:13:42 +00:00
}
2023-05-23 15:05:04 +00:00
MyButton {
id: browseButton
text: qsTr ( "Browse" )
anchors.right: addButton . left
anchors.rightMargin: 10
anchors.verticalCenter: parent . verticalCenter
onClicked: {
folderDialog . open ( ) ;
}
2023-05-22 13:03:06 +00:00
}
2023-05-23 02:13:42 +00:00
2023-05-23 15:05:04 +00:00
MyButton {
id: addButton
text: qsTr ( "Add" )
anchors.right: parent . right
anchors.verticalCenter: parent . verticalCenter
enabled: root . collection !== "" && root . folder_path != ""
Accessible.role: Accessible . Button
Accessible.name: text
Accessible.description: qsTr ( "Add button" )
onClicked: {
LocalDocs . addFolder ( root . collection , root . folder_path )
root . collection = ""
root . folder_path = ""
collection . clear ( )
}
2023-05-22 13:03:06 +00:00
}
2023-05-23 02:13:42 +00:00
}
ScrollView {
id: scrollView
2023-05-23 15:05:04 +00:00
anchors.top: addCollection . bottom
anchors.bottom: gridLayout . top
anchors.bottomMargin: 20
2023-05-23 02:13:42 +00:00
anchors.left: parent . left
anchors.right: parent . right
clip: true
contentHeight: 300
ScrollBar.vertical.policy: ScrollBar . AlwaysOn
background: Rectangle {
color: theme . backgroundLighter
2023-05-22 13:03:06 +00:00
}
2023-05-23 02:13:42 +00:00
ListView {
id: listView
model: LocalDocs . localDocsModel
boundsBehavior: Flickable . StopAtBounds
delegate: Rectangle {
id: item
width: listView . width
height: buttons . height + 20
color: index % 2 === 0 ? theme.backgroundLight : theme . backgroundLighter
property bool removing: false
Text {
id: collectionId
anchors.verticalCenter: parent . verticalCenter
anchors.left: parent . left
anchors.margins: 20
text: collection
elide: Text . ElideRight
color: theme . textColor
width: 200
}
Text {
id: folderId
anchors.left: collectionId . right
anchors.margins: 20
anchors.verticalCenter: parent . verticalCenter
text: folder_path
elide: Text . ElideRight
color: theme . textColor
}
Item {
id: buttons
anchors.right: parent . right
anchors.verticalCenter: parent . verticalCenter
anchors.margins: 20
2023-05-23 15:05:04 +00:00
width: Math . max ( removeButton . width , busyIndicator . width )
2023-05-23 02:13:42 +00:00
height: Math . max ( removeButton . height , busyIndicator . height )
MyButton {
id: removeButton
2023-05-23 15:05:04 +00:00
anchors.centerIn: parent
2023-05-23 02:13:42 +00:00
text: qsTr ( "Remove" )
visible: ! item . removing
onClicked: {
item . removing = true
LocalDocs . removeFolder ( collection , folder_path )
}
}
2023-05-31 23:28:09 +00:00
MyBusyIndicator {
2023-05-23 02:13:42 +00:00
id: busyIndicator
2023-05-23 15:05:04 +00:00
anchors.centerIn: parent
2023-05-23 02:13:42 +00:00
visible: item . removing
}
}
}
}
}
2023-05-23 15:05:04 +00:00
GridLayout {
id: gridLayout
2023-05-23 02:13:42 +00:00
anchors.bottom: parent . bottom
2023-05-23 15:05:04 +00:00
anchors.left: parent . left
anchors.right: parent . right
columns: 3
rowSpacing: 10
columnSpacing: 10
Label {
id: chunkLabel
Layout.row: 0
Layout.column: 0
color: theme . textColor
text: qsTr ( "Document snippet size (characters):" )
2023-05-23 02:13:42 +00:00
}
2023-05-23 15:05:04 +00:00
MyTextField {
id: chunkSizeTextField
Layout.row: 0
Layout.column: 1
2023-05-23 18:51:14 +00:00
ToolTip.text: qsTr ( "Number of characters per document snippet.\nNOTE: larger numbers increase likelihood of factual responses, but also result in slower generation." )
2023-05-23 15:05:04 +00:00
ToolTip.visible: hovered
2023-05-24 00:26:31 +00:00
text: settings . chunkSize . toString ( )
validator: IntValidator {
bottom: 1
}
onEditingFinished: {
var val = parseInt ( text )
if ( ! isNaN ( val ) ) {
settings . chunkSize = val
settings . sync ( )
focus = false
LocalDocs . chunkSize = settings . chunkSize
} else {
text = settings . chunkSize . toString ( )
}
}
2023-05-23 15:05:04 +00:00
}
Label {
id: contextItemsPerPrompt
Layout.row: 1
Layout.column: 0
color: theme . textColor
text: qsTr ( "Document snippets to process per prompt:" )
}
MyTextField {
Layout.row: 1
Layout.column: 1
2023-05-23 18:51:14 +00:00
ToolTip.text: qsTr ( "Best N matches of retrieved document snippets to add to the context for prompt.\nNOTE: larger numbers increase likelihood of factual responses, but also result in slower generation." )
2023-05-23 15:05:04 +00:00
ToolTip.visible: hovered
2023-05-24 00:26:31 +00:00
text: settings . retrievalSize . toString ( )
validator: IntValidator {
bottom: 1
}
onEditingFinished: {
var val = parseInt ( text )
if ( ! isNaN ( val ) ) {
settings . retrievalSize = val
settings . sync ( )
focus = false
LocalDocs . retrievalSize = settings . retrievalSize
} else {
text = settings . retrievalSize . toString ( )
}
}
2023-05-23 15:05:04 +00:00
}
MyButton {
id: restoreDefaultsButton
Layout.row: 2
Layout.column: 1
Layout.fillWidth: true
text: qsTr ( "Restore Defaults" )
Accessible.role: Accessible . Button
Accessible.name: text
Accessible.description: qsTr ( "Restores the settings dialog to a default state" )
onClicked: {
2023-05-24 00:26:31 +00:00
root . restoreLocalDocsDefaults ( ) ;
2023-05-23 15:05:04 +00:00
}
2023-05-22 13:03:06 +00:00
}
}
}