style: Removed redundant '&' from paths module function calls

This commit is contained in:
2026-07-13 17:12:58 -06:00
parent bc3cc10a7b
commit 382916c3ee
4 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -50,7 +50,7 @@ fn prepare_chat_completions(
let url = format!(
"{}/openai/deployments/{}/chat/completions?api-version=2024-12-01-preview",
&api_base,
api_base,
self_.model.real_name()
);
@@ -69,7 +69,7 @@ fn prepare_embeddings(self_: &AzureOpenAIClient, data: &EmbeddingsData) -> Resul
let url = format!(
"{}/openai/deployments/{}/embeddings?api-version=2024-10-21",
&api_base,
api_base,
self_.model.real_name()
);