From 1bafe6ee9800cc6f73485fa90d0fcb12c4466965 Mon Sep 17 00:00:00 2001 From: AT Date: Thu, 13 Apr 2023 17:37:18 -0400 Subject: [PATCH 1/3] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 36dbaeb4..63b5c118 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,7 @@ GPT-J model by following build instructions below. * Plugin support for langchain other developer tools * Save your prompt/responses to disk * Upload prompt/respones manually/automatically to nomic.ai to aid future training runs +* Syntax highlighting support for programming languages, etc. * YOUR IDEA HERE ## Building and running From 66a2fe3393e678098691db2a0607f6c3b313a270 Mon Sep 17 00:00:00 2001 From: AT Date: Thu, 13 Apr 2023 18:57:33 -0400 Subject: [PATCH 2/3] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 63b5c118..1beac2fc 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,8 @@ GPT-J model by following build instructions below. * Save your prompt/responses to disk * Upload prompt/respones manually/automatically to nomic.ai to aid future training runs * Syntax highlighting support for programming languages, etc. +* REST API with a built-in webserver in the chat gui itself with a headless operation mode as well +* Advanced settings for changing temperature, topk, etc. * YOUR IDEA HERE ## Building and running From 7c611e8ca88e7a47d30796874d9cf845db82b142 Mon Sep 17 00:00:00 2001 From: Adam Treat Date: Thu, 13 Apr 2023 20:06:46 -0400 Subject: [PATCH 3/3] Disable the text field from user interaction. --- main.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.qml b/main.qml index 20b25ec1..299559ba 100644 --- a/main.qml +++ b/main.qml @@ -25,7 +25,7 @@ Window { height: childrenRect.height visible: LLM.isModelLoaded - TextField { + Label { id: modelNameField color: "#d1d5db" padding: 20 @@ -34,7 +34,6 @@ Window { background: Rectangle { color: "#202123" } - focus: false horizontalAlignment: TextInput.AlignHCenter } } @@ -308,6 +307,7 @@ Window { color: "#d1d5db" wrapMode: Text.WordWrap focus: false + readOnly: true padding: 20 font.pixelSize: 24 cursorVisible: currentResponse ? (LLM.response !== "" ? LLM.responseInProgress : false) : false