fix bedrock name in assistant settings schema (#30805)

Closes #30778 

Release Notes:

- Fixed an issue with the assistant settings where `amazon-bedrock` was
incorrectly called `bedrock` in the settings schema
This commit is contained in:
Ben Kunkle 2025-05-16 04:29:58 -05:00 committed by GitHub
parent 05955e4faa
commit 2da37988b5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -692,7 +692,7 @@ impl JsonSchema for LanguageModelProviderSetting {
schemars::schema::SchemaObject {
enum_values: Some(vec![
"anthropic".into(),
"bedrock".into(),
"amazon-bedrock".into(),
"google".into(),
"lmstudio".into(),
"ollama".into(),