fix: add missing arg

This commit is contained in:
2023-06-17 17:12:25 +02:00
parent db86eea50a
commit 2d2ab71d0d

View File

@@ -8,7 +8,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
let mut ai = ThebAI::new(None);
let mut response = ai.ask("Hello, world!", /* Option<String> */).await?;
let mut response = ai.ask("Hello, world!", None).await?;
println!("{:?}", response);