diff --git a/gpt4all-chat/qml/ChatView.qml b/gpt4all-chat/qml/ChatView.qml index 53bda055..77de2f38 100644 --- a/gpt4all-chat/qml/ChatView.qml +++ b/gpt4all-chat/qml/ChatView.qml @@ -841,6 +841,32 @@ Rectangle { } } + Text { + Layout.alignment: Qt.AlignHCenter + textFormat: Text.StyledText + text: qsTr( + "
Documentation + ") + onLinkActivated: { Qt.openUrlExternally("https://docs.gpt4all.io/index.html") } + color: theme.textColor + linkColor: theme.linkColor + font.pixelSize: theme.fontSizeLarge + wrapMode: Text.WordWrap + } + + Text { + Layout.alignment: Qt.AlignHCenter + textFormat: Text.StyledText + text: qsTr( + "Frequently Asked Questions + ") + onLinkActivated: { Qt.openUrlExternally("https://docs.gpt4all.io/gpt4all_faq.html") } + color: theme.textColor + linkColor: theme.linkColor + font.pixelSize: theme.fontSizeLarge + wrapMode: Text.WordWrap + } + MyButton { id: downloadButton visible: LLM.isNetworkOnline