"Prompt this" added. Fixes #15

This commit is contained in:
mic 2024-04-05 00:51:24 +02:00
parent eb319aaacf
commit fcabeae80e
3 changed files with 11 additions and 0 deletions

View file

@ -44,6 +44,11 @@
"description": ""
},
"prompt_this": {
"message": "Prompt this",
"description": ""
},
"prompt_selection_needed": {
"message": "To proceed, you need to select some text!",
"description": ""

View file

@ -44,6 +44,11 @@
"description": ""
},
"prompt_this": {
"message": "Chedi a ChatGPT",
"description": ""
},
"prompt_selection_needed": {
"message": "Per procedere è necessario che selezioni del testo!",
"description": ""

View file

@ -26,4 +26,5 @@ export const defaultPrompts = [
{ id: 'prompt_classify', name: "__MSG_prompt_classify__", text: "Classify the following text in terms of Politeness, Warmth, Formality, Assertiveness, Offensiveness giving a percentage for each category. Reply with only the category and score with no extra comments or other text.", type: 0, action: 0, need_selected: 0, need_signature: 0 },
{ id: 'prompt_summarize_this', name: "__MSG_prompt_summarize_this__", text: "Summarize the following email into a bullet point list.", type: 0, action: 0, need_selected: 0, need_signature: 0 },
{ id: 'prompt_translate_this', name: "__MSG_prompt_translate_this__", text: "Translate the following email in ", type: 0, action: 0, need_selected: 0, need_signature: 0 },
{ id: 'prompt_this', name: "__MSG_prompt_this__", text: "Reply with only the needed text and with no extra comments or other text.", type: 2, action: 2, need_selected: 1, need_signature: 0 },
];