diff --git a/src/agents/models-config.providers.ts b/src/agents/models-config.providers.ts index 5597784859..b07e67a0d3 100644 --- a/src/agents/models-config.providers.ts +++ b/src/agents/models-config.providers.ts @@ -474,7 +474,7 @@ function buildTogetherProvider(): ProviderConfig { return { baseUrl: TOGETHER_BASE_URL, api: "openai-completions", - models: [], + models: TOGETHER_MODEL_CATALOG.map(buildTogetherModelDefinition), }; } diff --git a/src/wizard/onboarding.ts b/src/wizard/onboarding.ts index 8c4a62920c..97655d71c2 100644 --- a/src/wizard/onboarding.ts +++ b/src/wizard/onboarding.ts @@ -403,17 +403,14 @@ export async function runOnboardingWizard( nextConfig = authResult.config; } - if (authChoiceFromPrompt && authChoice !== "custom-api-key") { + if (authChoiceFromPrompt) { const modelSelection = await promptDefaultModel({ config: nextConfig, prompter, allowKeep: true, ignoreAllowlist: true, - preferredProvider: - customPreferredProvider ?? resolvePreferredProviderForAuthChoice(authChoice), includeVllm: true, - preferredProvider: - customPreferredProvider ?? resolvePreferredProviderForAuthChoice(authChoice), + preferredProvider: customPreferredProvider ?? resolvePreferredProviderForAuthChoice(authChoice), }); if (modelSelection.config) { nextConfig = modelSelection.config;