Skip to content

Commit

Permalink
renamed auth module to credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
jpalvarezl committed Sep 30, 2024
1 parent 29baf06 commit f15c6c6
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sdk/openai/inference/src/clients/azure_openai_client.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::sync::Arc;

use crate::auth::{AzureKeyCredential, DEFAULT_SCOPE};
use crate::credentials::{AzureKeyCredential, DEFAULT_SCOPE};

use crate::options::AzureOpenAIClientOptions;
use azure_core::auth::TokenCredential;
Expand Down
2 changes: 1 addition & 1 deletion sdk/openai/inference/src/clients/openai_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use std::sync::Arc;

use azure_core::{Policy, Result, Url};

use crate::{auth::OpenAIKeyCredential, OpenAIClientOptions};
use crate::{credentials::OpenAIKeyCredential, OpenAIClientOptions};

use super::{BaseOpenAIClientMethods, ChatCompletionsClient};

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion sdk/openai/inference/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
mod auth;
mod credentials;
pub mod clients;
mod helpers;
mod models;
Expand Down

0 comments on commit f15c6c6

Please sign in to comment.