Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
erhant committed Nov 4, 2024
1 parent 0696537 commit 32d70eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api_interface/openai_api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ impl OpenAIExecutor {
})?;

let result = self.client.chat().create(parameters).await.map_err(|e| {
OllamaError::from(format!("Failed to parse Gemini API response: {:?}", e))
OllamaError::from(format!("Failed to parse OpenAI API response: {:?}", e))
})?;
let message = result.choices[0].message.clone();

Expand Down

0 comments on commit 32d70eb

Please sign in to comment.