Skip to content

Commit

Permalink
chore: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
rellfy committed Aug 27, 2024
1 parent 25cbe9a commit c87e096
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/chat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,9 @@ mod tests {

#[test]
fn builder_clone_and_eq() {
let builder_a = ChatCompletion::builder("gpt-4", []).temperature(0.0).seed(65u64);
let builder_a = ChatCompletion::builder("gpt-4", [])
.temperature(0.0)
.seed(65u64);
let builder_b = builder_a.clone();
let builder_c = builder_b.clone().temperature(1.0);
let builder_d = ChatCompletionBuilder::default();
Expand Down

0 comments on commit c87e096

Please sign in to comment.