From 2d2ab71d0d0a54c33d1f9f7d1c57b5957fb41ae5 Mon Sep 17 00:00:00 2001 From: 0xMRTT <0xMRTT@proton.me> Date: Sat, 17 Jun 2023 17:12:25 +0200 Subject: [PATCH] fix: add missing arg --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index b875c52..129d027 100644 --- a/src/main.rs +++ b/src/main.rs @@ -8,7 +8,7 @@ async fn main() -> Result<(), Box> { let mut ai = ThebAI::new(None); - let mut response = ai.ask("Hello, world!", /* Option */).await?; + let mut response = ai.ask("Hello, world!", None).await?; println!("{:?}", response);