summarize batch option added
This commit is contained in:
parent
ef7483031d
commit
b4e41c0ba0
3 changed files with 6 additions and 1 deletions
|
|
@ -2196,5 +2196,9 @@
|
|||
"prefs_chatgpt_win_position_info":{
|
||||
"message": "Leave empty to use the default position.",
|
||||
"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_enabled_accounts: [],
|
||||
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_max_display_length: 0, // 0 = no limit, otherwise max chars shown inline
|
||||
translate: true,
|
||||
|
|
|
|||
|
|
@ -34,6 +34,7 @@
|
|||
<option value="0">__MSG_prefs_OptionText_action_auto_disabled__</option>
|
||||
<option value="1">__MSG_prefs_OptionText_action_auto_manual__</option>
|
||||
<option value="2">__MSG_prefs_OptionText_action_auto_automatic__</option>
|
||||
<option value="3">__MSG_prefs_OptionText_action_auto_batch__</option>
|
||||
</select>
|
||||
<br>__MSG_prefs_OptionText_summarize_auto_Info__
|
||||
</label>
|
||||
|
|
|
|||
Loading…
Reference in a new issue