OpenRouter: Use display name for options on text completion
| @@ -267,7 +267,7 @@ export async function loadOpenRouterModels(data) { | ||
| 267 | 267 | for (const model of data) { |
| 268 | 268 | const option = document.createElement('option'); |
| 269 | 269 | option.value = model.id; |
| 270 | 270 | option.text = model.idname; |
| 271 | 271 | option.selected = model.id === textgen_settings.openrouter_model; |
| 272 | 272 | $('#openrouter_model').append(option); |
| 273 | 273 | } |