feat: add passthrough_auth option for forwarding client Authorization header

This commit is contained in:
tqtensor 2026-01-12 10:53:54 +01:00
parent ab391f96c7
commit 88e41e9de6
7 changed files with 159 additions and 23 deletions

View file

@ -324,6 +324,7 @@ pub struct LlmProvider {
pub cluster_name: Option<String>,
pub base_url_path_prefix: Option<String>,
pub internal: Option<bool>,
pub passthrough_auth: Option<bool>,
}
pub trait IntoModels {
@ -367,6 +368,7 @@ impl Default for LlmProvider {
cluster_name: None,
base_url_path_prefix: None,
internal: None,
passthrough_auth: None,
}
}
}