Enhancement
Add Modelsell as a named OpenAI-compatible LLM provider in Continue.
Modelsell exposes the standard endpoints Continue needs for an initial integration:
Motivation
Modelsell can be configured through Continue's existing OpenAI-compatible path, but users must manually repeat the API base, credential setup, and model identifiers. A named provider would make the integration discoverable and give Continue a stable place for provider defaults without introducing a separate transport implementation.
Proposed implementation
- Add a
modelsell provider that reuses or extends the existing OpenAI Chat Completions implementation.
- Default the API base to
https://modelsell.com/v1 and use MODELSELL_API_KEY/the normal Continue secret mechanism.
- Discover model IDs from
GET /v1/models rather than maintaining a static catalog.
- Add a provider documentation page with a minimal
config.yaml example and links to the API key page and API docs.
- Keep the first integration scoped to Chat Completions; no provider-specific payload transformation is required.
I can contribute the implementation and focused tests following the existing provider patterns.
Disclosure: I represent Modelsell.
Enhancement
Add Modelsell as a named OpenAI-compatible LLM provider in Continue.
Modelsell exposes the standard endpoints Continue needs for an initial integration:
https://modelsell.com/v1POST /v1/chat/completionsGET /v1/modelsMotivation
Modelsell can be configured through Continue's existing OpenAI-compatible path, but users must manually repeat the API base, credential setup, and model identifiers. A named provider would make the integration discoverable and give Continue a stable place for provider defaults without introducing a separate transport implementation.
Proposed implementation
modelsellprovider that reuses or extends the existing OpenAI Chat Completions implementation.https://modelsell.com/v1and useMODELSELL_API_KEY/the normal Continue secret mechanism.GET /v1/modelsrather than maintaining a static catalog.config.yamlexample and links to the API key page and API docs.I can contribute the implementation and focused tests following the existing provider patterns.
Disclosure: I represent Modelsell.