Added the option to use ChatGPT4. Related to #27
This commit is contained in:
parent
3652874632
commit
e6790b285c
4 changed files with 32 additions and 0 deletions
|
|
@ -129,6 +129,16 @@
|
||||||
"description": ""
|
"description": ""
|
||||||
},
|
},
|
||||||
|
|
||||||
|
"prefs_OptionText_chatpgt_use_gpt4": {
|
||||||
|
"message": "Use ChatGPT-4",
|
||||||
|
"description": ""
|
||||||
|
},
|
||||||
|
|
||||||
|
"prefs_OptionText_chatpgt_use_gpt4_info": {
|
||||||
|
"message": "After changing this option, you have to choose the right model the first time you use it.",
|
||||||
|
"description": ""
|
||||||
|
},
|
||||||
|
|
||||||
"prefsInfoTitle": {
|
"prefsInfoTitle": {
|
||||||
"message": "Important Information",
|
"message": "Important Information",
|
||||||
"description": ""
|
"description": ""
|
||||||
|
|
|
||||||
|
|
@ -129,6 +129,16 @@
|
||||||
"description": ""
|
"description": ""
|
||||||
},
|
},
|
||||||
|
|
||||||
|
"prefs_OptionText_chatpgt_use_gpt4": {
|
||||||
|
"message": "Usa il modello ChatGPT-4",
|
||||||
|
"description": ""
|
||||||
|
},
|
||||||
|
|
||||||
|
"prefs_OptionText_chatpgt_use_gpt4_info": {
|
||||||
|
"message": "Dopo aver modificato questa opzione, devi scegliere il modello corretto la prima volta che lo usi.",
|
||||||
|
"description": ""
|
||||||
|
},
|
||||||
|
|
||||||
"prefsInfoTitle": {
|
"prefsInfoTitle": {
|
||||||
"message": "Informazioni Importanti",
|
"message": "Informazioni Importanti",
|
||||||
"description": ""
|
"description": ""
|
||||||
|
|
|
||||||
|
|
@ -19,4 +19,5 @@
|
||||||
export const prefs_default = {
|
export const prefs_default = {
|
||||||
chatgpt_win_height: 800,
|
chatgpt_win_height: 800,
|
||||||
chatgpt_win_width: 700,
|
chatgpt_win_width: 700,
|
||||||
|
chatpgt_use_gpt4: false,
|
||||||
}
|
}
|
||||||
|
|
@ -58,6 +58,17 @@
|
||||||
</label>
|
</label>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><label>
|
||||||
|
<span>__MSG_prefs_OptionText_chatpgt_use_gpt4__</span>
|
||||||
|
</label></td>
|
||||||
|
<td>
|
||||||
|
<label>
|
||||||
|
<input type="checkbox" id="chatpgt_use_gpt4" name="chatpgt_use_gpt4" class="option-input" />
|
||||||
|
<span>__MSG_prefs_OptionText_chatpgt_use_gpt4_info__</span>
|
||||||
|
</label>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<div id="miczDescription">
|
<div id="miczDescription">
|
||||||
<h1>__MSG_prefsInfoTitle__</h1>
|
<h1>__MSG_prefsInfoTitle__</h1>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue