This commit is contained in:
Octopus 2026-04-23 10:42:05 +00:00 committed by GitHub
commit ca4a82533e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 22 additions and 0 deletions

View file

@ -481,6 +481,7 @@ pub struct LlmProvider {
pub base_url_path_prefix: Option<String>,
pub internal: Option<bool>,
pub passthrough_auth: Option<bool>,
pub http_headers: Option<HashMap<String, String>>,
}
pub trait IntoModels {
@ -524,6 +525,7 @@ impl Default for LlmProvider {
base_url_path_prefix: None,
internal: None,
passthrough_auth: None,
http_headers: None,
}
}
}

View file

@ -277,6 +277,7 @@ mod tests {
internal: None,
stream: None,
passthrough_auth: None,
http_headers: None,
}
}