better descriptions for prompts

This commit is contained in:
Guido Kraemer 2026-01-10 22:59:26 +01:00
parent 30a7de3756
commit d601121852
2 changed files with 33 additions and 1 deletions

View file

@ -1091,6 +1091,18 @@
"message": "You can change the prompt as you wish, the first field is the main prompt, the second field is the template for a single mail. The list of emails will be appended to the main prompt. Emails will be separated by the separator specified in the third field.", "message": "You can change the prompt as you wish, the first field is the main prompt, the second field is the template for a single mail. The list of emails will be appended to the main prompt. Emails will be separated by the separator specified in the third field.",
"description": "" "description": ""
}, },
"prefs_OptionText_Summarize_main_prompt": {
"message": "The main prompt describing the task to be performed on all selected emails:",
"description": ""
},
"prefs_OptionText_Summarize_email_template": {
"message": "The template for a single email:",
"description": ""
},
"prefs_OptionText_Summarize_email_separator": {
"message": "The separator between emails:",
"description": ""
},
"prefs_OptionText_get_calendar_event_Sparks_not_present": { "prefs_OptionText_get_calendar_event_Sparks_not_present": {
"message": "To use the calendar event and task features, please install the ThunderAI Sparks addon.", "message": "To use the calendar event and task features, please install the ThunderAI Sparks addon.",
"description": "" "description": ""

View file

@ -27,6 +27,8 @@
<tr id="connection_ui_anchor"></tr> <tr id="connection_ui_anchor"></tr>
<tr id="connection_ui_end"><td colspan="2"></td></tr> <tr id="connection_ui_end"><td colspan="2"></td></tr>
</table> </table>
<!-- PROMPTS -->
<div id="summarize_prompt_container"> <div id="summarize_prompt_container">
<!--title and description--> <!--title and description-->
<span class="section_title"> <span class="section_title">
@ -47,8 +49,14 @@
</span> </span>
<br> <br>
<!--main prompt--> <!--main prompt-->
<span class="infoline">
__MSG_prefs_OptionText_Summarize_main_prompt__
</span>
<br>
<div class="autocomplete-container"> <div class="autocomplete-container">
<textarea id="summarize_prompt_text" rows="15"></textarea> <textarea id="summarize_prompt_text" rows="15"></textarea>
<ul class="autocomplete-list hidden"></ul> <ul class="autocomplete-list hidden"></ul>
@ -65,6 +73,12 @@
</div> </div>
<!--email template--> <!--email template-->
<span class="infoline">
__MSG_prefs_OptionText_Summarize_email_template__
</span>
<br>
<div class="autocomplete-container"> <div class="autocomplete-container">
<textarea id="summarize_email_template_text" rows="15"></textarea> <textarea id="summarize_email_template_text" rows="15"></textarea>
<ul class="autocomplete-list hidden"></ul> <ul class="autocomplete-list hidden"></ul>
@ -81,6 +95,12 @@
</div> </div>
<!-- separator --> <!-- separator -->
<span class="infoline">
__MSG_prefs_OptionText_Summarize_email_separator__
</span>
<br>
<div class="autocomplete-container"> <div class="autocomplete-container">
<textarea id="summarize_email_separator_text" rows="7"></textarea> <textarea id="summarize_email_separator_text" rows="7"></textarea>
<ul class="autocomplete-list hidden"></ul> <ul class="autocomplete-list hidden"></ul>