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