Skip to content

Commit 666b8ea

Browse files
committed
added configurable custom prompt
This makes it easier to add to the existing internal prompt instead of completely overwriting it using the localization mechanism.
1 parent 120aaf7 commit 666b8ea

File tree

5 files changed

+7
-2
lines changed

5 files changed

+7
-2
lines changed

conf/default.php

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
$conf['embedmodel'] = 'OpenAI text-embedding-ada-002';
1212
$conf['storage'] = 'SQLite';
1313

14+
$conf['customprompt'] = '';
15+
1416
$conf['openai_apikey'] = '';
1517
$conf['openai_org'] = '';
1618

conf/metadata.php

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
)
1919
);
2020

21+
$meta['customprompt'] = array();
22+
2123
$meta['openai_apikey'] = array('password');
2224
$meta['openai_org'] = array('string');
2325

helper.php

+1
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,7 @@ public function askQuestion($question, $history = [], $contextQuestion = '')
202202
$prompt = $this->getPrompt('question', [
203203
'context' => $context,
204204
'question' => $question,
205+
'customprompt' => $this->getConf('customprompt'),
205206
]);
206207
} else {
207208
$prompt = $this->getPrompt('noanswer', [

lang/en/question.prompt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Your Task: Use the following documents as context to answer the users question. If you don't know the answer, just say that you don't know, don't try to make up an answer. {{LANGUAGE}}
1+
Your Task: Use the following documents as context to answer the users question. If you don't know the answer, just say that you don't know, don't try to make up an answer. {{LANGUAGE}} {{CUSTOMPROMPT}}
22

33
----------------
44
{{CONTEXT}}

lang/en/settings.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
$lang['rephrasemodel'] = 'The 🧠 model to use for rephrasing questions. Configure required credentials below.';
1111
$lang['embedmodel'] = 'The 🧠 model to use for text embedding. Configure required credentials below.<br>🔄 You need to rebuild the vector storage when changing this setting.';
1212
$lang['storage'] = 'Which 📥 vector storage to use. Configure required credentials below.<br>🔄 You need to rebuild the vector storage when changing this setting.';
13-
13+
$lang['customprompt'] = 'A custom prompt that is added to the prompt used by this plugin when querying the AI model. For consistency, it should be in English.';
1414

1515
$lang['openai_apikey'] = '🧠 <b>OpenAI</b> API key';
1616
$lang['openai_org'] = '🧠 <b>OpenAI</b> Organization ID (if any)';

0 commit comments

Comments
 (0)