Add openrouter to /api slash command

This commit is contained in:
Cohee 2023-07-26 21:22:57 +03:00
parent e4e2ff20a2
commit 68819a1afc
1 changed files with 7 additions and 2 deletions

View File

@ -6743,6 +6743,11 @@ function connectAPISlash(_, text) {
source: 'windowai', source: 'windowai',
button: '#api_button_openai', button: '#api_button_openai',
}, },
'openrouter': {
selected: 'openai',
source: 'openrouter',
button: '#api_button_openai',
},
}; };
const apiConfig = apiMap[text]; const apiConfig = apiMap[text];
@ -6751,11 +6756,11 @@ function connectAPISlash(_, text) {
return; return;
} }
$("#main_api option[value='" + (apiConfig.selected || text) + "']").prop("selected", true); $(`#main_api option[value='${apiConfig.selected || text}']`).prop("selected", true);
$("#main_api").trigger('change'); $("#main_api").trigger('change');
if (apiConfig.source) { if (apiConfig.source) {
$("#chat_completion_source option[value='" + apiConfig.source + "']").prop("selected", true); $(`#chat_completion_source option[value='${apiConfig.source}']`).prop("selected", true);
$("#chat_completion_source").trigger('change'); $("#chat_completion_source").trigger('change');
} }