fix(app): support anthropic models on azure cognitive services (#8335)

This commit is contained in:
Unies Ananda Raja
2026-01-17 04:24:06 +07:00
committed by GitHub
parent 6e028ec2dc
commit b8e2895dfc
3 changed files with 67 additions and 13 deletions

View File

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