feat: add AWS Bedrock (Mantle) as post-processing provider (#1288)
This commit is contained in:
parent
564fbc84df
commit
aee682f63d
1 changed files with 10 additions and 0 deletions
|
|
@ -589,6 +589,16 @@ fn default_post_process_providers() -> Vec<PostProcessProvider> {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// AWS Bedrock via Mantle (OpenAI-compatible endpoint)
|
||||||
|
providers.push(PostProcessProvider {
|
||||||
|
id: "bedrock_mantle".to_string(),
|
||||||
|
label: "AWS Bedrock (Mantle)".to_string(),
|
||||||
|
base_url: "https://bedrock-mantle.us-east-1.api.aws/v1".to_string(),
|
||||||
|
allow_base_url_edit: false,
|
||||||
|
models_endpoint: Some("/models".to_string()),
|
||||||
|
supports_structured_output: true,
|
||||||
|
});
|
||||||
|
|
||||||
// Custom provider always comes last
|
// Custom provider always comes last
|
||||||
providers.push(PostProcessProvider {
|
providers.push(PostProcessProvider {
|
||||||
id: "custom".to_string(),
|
id: "custom".to_string(),
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue