Revert "fix(app): support anthropic models on azure cognitive services" (#8966)

This commit is contained in:
Aiden Cline
2026-01-16 13:25:23 -08:00
committed by GitHub
parent b8e2895dfc
commit 14d1e20287
3 changed files with 13 additions and 67 deletions

View File

@@ -133,7 +133,12 @@ export namespace LLM {
const maxOutputTokens = isCodex
? undefined
: ProviderTransform.maxOutputTokens(input.model, params.options, OUTPUT_TOKEN_MAX)
: ProviderTransform.maxOutputTokens(
input.model.api.npm,
params.options,
input.model.limit.output,
OUTPUT_TOKEN_MAX,
)
const tools = await resolveTools(input)