Skip to content

Commit

Permalink
fix: update the max tokens configuration for Azure GPT-4o (2024-08-06…
Browse files Browse the repository at this point in the history
…) to 16384 (#11074)
  • Loading branch information
fengjiajie authored Nov 25, 2024
1 parent 8aae235 commit ab6dcf7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,7 @@ class AzureBaseModel(BaseModel):
name="frequency_penalty",
**PARAMETER_RULE_TEMPLATE[DefaultParameterName.FREQUENCY_PENALTY],
),
_get_max_tokens(default=512, min_val=1, max_val=4096),
_get_max_tokens(default=512, min_val=1, max_val=16384),
ParameterRule(
name="seed",
label=I18nObject(zh_Hans="种子", en_US="Seed"),
Expand Down

0 comments on commit ab6dcf7

Please sign in to comment.