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, }; }