Duplicate Models from Model Specs #9057
Replies: 1 comment 2 replies
-
What you’re seeing is caused by a config overlap — the same model is being declared in both the endpoints section and inside modelSpecs. LibreChat doesn’t automatically deduplicate them, so they each show up as separate entries. Two ways people usually resolve this: Keep the definition in modelSpecs only, and remove the redundant one from endpoints. Or, if you need both sections for other providers, make sure the titleModel / modelMap fields don’t collide (so the UI can distinguish them cleanly). In our internal checks this usually falls under a No 1.0 category (config ambiguity) — basically a small semantic drift between two sources of truth. A quick way to test is to strip down to a minimal TXTOS or wfgy core (wfgy 2.0) config, ask the model for completions, and verify only a single instance appears. If that works, then it’s just a matter of pruning or aligning your yaml. Would you like me to sketch a minimal example yaml that avoids duplication? |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Having some trouble correctly configuring librechat.yaml. What I currently have is making models show up twice, once because they are in endpoints and once from model specs. I don't understand how to just make the model specs ones show up.
This is how the model selection dropdown looks:
Beta Was this translation helpful? Give feedback.
All reactions