**Is your feature request related to a problem? Please describe.** The Model Management preference page lists a fixed set of providers (Azure, OpenAI, Anthropic, OpenRouter, Gemini, Groq). There is no way to add a model from a custom inference endpoint, such as an enterprise API gateway or a locally running inference server, because every provider targets a hard-coded upstream host. **Describe the solution you'd like** Add a Gateway entry to the provider list alongside the existing ones. When the user selects Gateway and clicks "Add Model...", a credentials dialog should collect: - Gateway base URL (e.g. _https://my-gateway.internal/v1_ or _http://localhost:11434_) - API key with show/hide toggle (optional for local servers) - Auth scheme selector: _x-api-key_ header or _Authorization: Bearer_ - Model discovery toggle to fetch available models from _{baseUrl}/v1/models_ automatically The rest of the flow (Remove Model, Enable, Reload, Change API, Delete API) stays exactly as it is for all other providers. **Describe alternatives you've considered** There is no working alternative within the current UI. The existing providers cannot be redirected to a custom endpoint. Configuring an HTTP proxy is the only partial workaround but it adds infrastructure complexity and does not cover local servers on loopback. **Additional context** The screenshot below shows the current provider list. The request is to add Gateway as a seventh entry in the same list, with no changes to the existing provider flows. <img width="1147" height="693" alt="Image" src="https://github.com/user-attachments/assets/879c3253-fe30-4e18-b983-75de2da3c42e" />