From db86eea50a0e91c34dc333ae9cfd5ed59d63c606 Mon Sep 17 00:00:00 2001 From: 0xMRTT <0xMRTT@proton.me> Date: Sat, 17 Jun 2023 17:11:19 +0200 Subject: [PATCH] fix: missing arg --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index a7de592..b875c52 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!").await?; + let mut response = ai.ask("Hello, world!", /* Option */).await?; println!("{:?}", response);