Allow Anthropic custom models to override temperature (#18160)

Release Notes:

- Allow Anthropic custom models to override "temperature"

This also centralized the defaulting of "temperature" to be inside of
each model's `into_x` call instead of being sprinkled around the code.
This commit is contained in:
Roy Williams 2024-09-20 16:59:12 -04:00 committed by GitHub
parent 7d62fda5a3
commit 5905fbb9ac
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 54 additions and 17 deletions

View file

@ -99,6 +99,7 @@ impl AnthropicSettingsContent {
tool_override,
cache_configuration,
max_output_tokens,
default_temperature,
} => Some(provider::anthropic::AvailableModel {
name,
display_name,
@ -112,6 +113,7 @@ impl AnthropicSettingsContent {
},
),
max_output_tokens,
default_temperature,
}),
_ => None,
})