fix: add missing arg

This commit is contained in:
0xMRTT 2023-06-17 17:12:25 +02:00
parent db86eea50a
commit 2d2ab71d0d
Signed by: 0xMRTT
GPG Key ID: 910B287304120902

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);