Get completions with J1:
```rust use ai21::AI21;
let ai21 = AI21::new(token).temperature(0.9).build(); let output = ai21.complete("The meaning of life is").await.unwrap(); ```