chenbhao commited on
Commit
0df0b05
·
1 Parent(s): ceeca02

feat: load all openrouter model

Browse files
Files changed (1) hide show
  1. src/utils/model/modelOptions.ts +1 -1
src/utils/model/modelOptions.ts CHANGED
@@ -483,7 +483,7 @@ function getModelOptionsBase(fastMode = false): ModelOption[] {
483
 
484
  // If we have cached models, show them
485
  if (cachedModels.length > 0) {
486
- let modelsToShow = cachedModels.slice(0, 100) // Show top 100 models
487
 
488
  // If there's a free model, put it at the front
489
  if (firstFreeModel) {
 
483
 
484
  // If we have cached models, show them
485
  if (cachedModels.length > 0) {
486
+ let modelsToShow = cachedModels // Show all models
487
 
488
  // If there's a free model, put it at the front
489
  if (firstFreeModel) {