Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add with_headers method #245

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 27 additions & 1 deletion async-openai/src/config.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
//! Client configurations: [OpenAIConfig] for OpenAI, [AzureConfig] for Azure OpenAI Service.
use reqwest::header::{HeaderMap, AUTHORIZATION};
use std::collections::HashMap;

use reqwest::header::{HeaderMap, HeaderName, HeaderValue, AUTHORIZATION};
use secrecy::{ExposeSecret, Secret};
use serde::Deserialize;

Expand Down Expand Up @@ -31,17 +33,28 @@ pub trait Config: Clone {
pub struct OpenAIConfig {
api_base: String,
api_key: Secret<String>,
#[serde(deserialize_with = "deserialize_header_map")]
headers: HashMap<String, String>,
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please use native HeaderMap instead of custom conversion with custom deserializer.

org_id: String,
project_id: String,
}

fn deserialize_header_map<'de, D>(deserializer: D) -> Result<HashMap<String, String>, D::Error>
where
D: serde::Deserializer<'de>,
{
let header_map: HashMap<String, String> = HashMap::deserialize(deserializer)?;
Ok(header_map)
}

impl Default for OpenAIConfig {
fn default() -> Self {
Self {
api_base: OPENAI_API_BASE.to_string(),
api_key: std::env::var("OPENAI_API_KEY")
.unwrap_or_else(|_| "".to_string())
.into(),
headers: HashMap::new(),
Copy link
Owner

@64bit 64bit Jul 24, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: since this is platform independent - this and with_headers could be a nice addition to AzureConfig as well for consistency. Not required though.

org_id: Default::default(),
project_id: Default::default(),
}
Expand Down Expand Up @@ -78,6 +91,12 @@ impl OpenAIConfig {
self
}

/// Add custom headers to the existing headers
pub fn with_headers(mut self, headers: HashMap<String, String>) -> Self {
self.headers.extend(headers);
self
}

pub fn org_id(&self) -> &str {
&self.org_id
}
Expand Down Expand Up @@ -112,6 +131,13 @@ impl Config for OpenAIConfig {
// Calls to the Assistants API require that you pass a Beta header
headers.insert(OPENAI_BETA_HEADER, "assistants=v2".parse().unwrap());

headers.extend(self.headers.iter().map(|(k, v)| {
(
HeaderName::from_bytes(k.as_bytes()).unwrap(),
HeaderValue::from_str(v).unwrap(),
)
}));

headers
}

Expand Down