From 3417a37c5472fb5111a7bd0ed747c8df749c595e Mon Sep 17 00:00:00 2001 From: AMOGUS <96608645+pingpongching@users.noreply.github.com> Date: Fri, 23 Jun 2023 23:28:52 +0300 Subject: [PATCH] Change "web server" to "API server" for less confusion (#1039) * Change "Web server" to "API server" * Changed "API server" to "OpenAPI server" * Reversed back to "API server" and updated tooltip --- gpt4all-chat/qml/SettingsDialog.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gpt4all-chat/qml/SettingsDialog.qml b/gpt4all-chat/qml/SettingsDialog.qml index 1db1e4ab..82f7569b 100644 --- a/gpt4all-chat/qml/SettingsDialog.qml +++ b/gpt4all-chat/qml/SettingsDialog.qml @@ -767,7 +767,7 @@ Dialog { } Label { id: serverChatLabel - text: qsTr("Enable web server:") + text: qsTr("Enable API server:") color: theme.textColor Layout.row: 6 Layout.column: 0 @@ -782,7 +782,7 @@ Dialog { LLM.serverEnabled = serverChatBox.checked settings.sync() } - ToolTip.text: qsTr("WARNING: This enables the gui to act as a local web server for AI API requests and will increase your RAM usage as well") + ToolTip.text: qsTr("WARNING: This enables the gui to act as a local REST web server(OpenAI API compliant) for API requests and will increase your RAM usage as well") ToolTip.visible: hovered } MyButton {