summarize batch option added
This commit is contained in:
parent
681f0f0f18
commit
13681c297b
3 changed files with 6 additions and 1 deletions
|
|
@ -2084,5 +2084,9 @@
|
||||||
"prefs_chatgpt_win_position_info":{
|
"prefs_chatgpt_win_position_info":{
|
||||||
"message": "Leave empty to use the default position.",
|
"message": "Leave empty to use the default position.",
|
||||||
"description": ""
|
"description": ""
|
||||||
|
},
|
||||||
|
"prefs_OptionText_action_auto_batch": {
|
||||||
|
"message": "When the email is received",
|
||||||
|
"description": ""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -138,7 +138,7 @@ export const prefs_default = {
|
||||||
spamfilter_threshold: 70,
|
spamfilter_threshold: 70,
|
||||||
spamfilter_enabled_accounts: [],
|
spamfilter_enabled_accounts: [],
|
||||||
summarize: false,
|
summarize: false,
|
||||||
summarize_auto: 1, // 0: disabled, 1: manual button, 2: automatic
|
summarize_auto: 1, // 0: disabled, 1: manual button, 2: automatic, 3: batch processing
|
||||||
summarize_display_mode: 'inline', // 'inline' or 'webchat'
|
summarize_display_mode: 'inline', // 'inline' or 'webchat'
|
||||||
summarize_max_display_length: 0, // 0 = no limit, otherwise max chars shown inline
|
summarize_max_display_length: 0, // 0 = no limit, otherwise max chars shown inline
|
||||||
spamfilter_show_msg_panel: true,
|
spamfilter_show_msg_panel: true,
|
||||||
|
|
|
||||||
|
|
@ -34,6 +34,7 @@
|
||||||
<option value="0">__MSG_prefs_OptionText_summarize_auto_disabled__</option>
|
<option value="0">__MSG_prefs_OptionText_summarize_auto_disabled__</option>
|
||||||
<option value="1">__MSG_prefs_OptionText_summarize_auto_manual__</option>
|
<option value="1">__MSG_prefs_OptionText_summarize_auto_manual__</option>
|
||||||
<option value="2">__MSG_prefs_OptionText_summarize_auto_automatic__</option>
|
<option value="2">__MSG_prefs_OptionText_summarize_auto_automatic__</option>
|
||||||
|
<option value="3">__MSG_prefs_OptionText_action_auto_batch__</option>
|
||||||
</select>
|
</select>
|
||||||
<br>__MSG_prefs_OptionText_summarize_auto_Info__
|
<br>__MSG_prefs_OptionText_summarize_auto_Info__
|
||||||
</label>
|
</label>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue