fix: missing arg

This commit is contained in:
0xMRTT 2023-06-17 17:11:19 +02:00
parent eb1c54e719
commit db86eea50a
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!").await?;
let mut response = ai.ask("Hello, world!", /* Option<String> */).await?;
println!("{:?}", response);