From 156ccddf8ed4ff51ea85d9f859de5cbaaa5ae228 Mon Sep 17 00:00:00 2001 From: Riccardo Giorato Date: Tue, 27 Jan 2026 16:35:16 +0100 Subject: [PATCH] Update models-config.providers.ts --- src/agents/models-config.providers.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/agents/models-config.providers.ts b/src/agents/models-config.providers.ts index 36f05f420..9085d66d6 100644 --- a/src/agents/models-config.providers.ts +++ b/src/agents/models-config.providers.ts @@ -361,14 +361,10 @@ async function buildOllamaProvider(): Promise { } function buildTogetherProvider(): ProviderConfig { - // Always use static catalog instead of dynamic discovery - // This prevents timeout issues with the Together AI API - const models = TOGETHER_MODEL_CATALOG; - return { baseUrl: TOGETHER_BASE_URL, api: "openai-completions", - models, + models: TOGETHER_MODEL_CATALOG, }; }