OpenRouter: Use display name for options on text completion

28f5b74cc7b1834329d26e3798cc6b5fb22677a9

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +1 -1Ignore whitespace
public/scripts/textgen-models.js+1 -1
@@ -267,7 +267,7 @@ export async function loadOpenRouterModels(data) {
267267 for (const model of data) {
268268 const option = document.createElement('option');
269269 option.value = model.id;
270270 option.text = model.idname;
271271 option.selected = model.id === textgen_settings.openrouter_model;
272272 $('#openrouter_model').append(option);
273273 }