From 0bb52fc5fea63ee48fe6abefc348284436d13d8d Mon Sep 17 00:00:00 2001 From: Adam Treat Date: Wed, 3 May 2023 12:19:14 -0400 Subject: [PATCH] Experiment with a much shorter default prompt template. --- qml/SettingsDialog.qml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/qml/SettingsDialog.qml b/qml/SettingsDialog.qml index 7560c29a..92906dd1 100644 --- a/qml/SettingsDialog.qml +++ b/qml/SettingsDialog.qml @@ -37,11 +37,9 @@ Dialog { property real defaultRepeatPenalty: 1.10 property int defaultRepeatPenaltyTokens: 64 property int defaultThreadCount: 0 - property string defaultPromptTemplate: "### Instruction: -The prompt below is a question to answer, a task to complete, or a conversation to respond to; decide which and write an appropriate response. -### Prompt: + property string defaultPromptTemplate: "### Human: %1 -### Response:\n" +### Assistant:\n" property string defaultModelPath: Download.defaultLocalModelsPath() property alias temperature: settings.temperature