From adc65765d87c571112b4cd88154090ba8ef9e7d3 Mon Sep 17 00:00:00 2001 From: Riccardo Giorato Date: Tue, 27 Jan 2026 13:41:20 +0100 Subject: [PATCH] Update together-models.ts --- src/agents/together-models.ts | 43 ++++------------------------------- 1 file changed, 5 insertions(+), 38 deletions(-) diff --git a/src/agents/together-models.ts b/src/agents/together-models.ts index c3d207d8f..16803f50d 100644 --- a/src/agents/together-models.ts +++ b/src/agents/together-models.ts @@ -157,10 +157,6 @@ export async function discoverTogetherModels(apiKey?: string): Promise = { @@ -176,19 +172,14 @@ export async function discoverTogetherModels(apiKey?: string): Promise model.type === "chat"); - console.log( - `[together-models] Found ${models.length} total models, ${chatModels.length} chat models`, - ); - return chatModels.map((model: TogetherModel, index: number) => { - console.log(`[together-models] Processing model ${index + 1}/${chatModels.length}:`, { - id: model.id, - name: model.name, - display_name: model.display_name, - type: model.type, - context_length: model.context_length, - capabilities: model.capabilities, - pricing: model.pricing, - }); + return chatModels.map((model: TogetherModel) => { const modelId = model.id; const displayName = model.display_name || model.name || modelId; @@ -284,11 +256,6 @@ export async function discoverTogetherModels(apiKey?: string): Promise