Skip to content

Commit

Permalink
added module visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
jpalvarezl committed Sep 12, 2024
1 parent 94b9f6e commit 7ae0883
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions sdk/openai/inference/src/options/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ mod openai_client_options;

pub use service_version::AzureServiceVersion;
pub use azure_openai_client_options::*;
pub use openai_client_options::*;
6 changes: 6 additions & 0 deletions sdk/openai/inference/src/options/openai_client_options.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
use azure_core::ClientOptions;

#[derive(Clone, Debug, Default)]
pub struct OpenAIClientOptions {
pub(crate) client_options: ClientOptions,
}

0 comments on commit 7ae0883

Please sign in to comment.