From 8b4227dbffaedfbe16f3a4682994a016f1312caf Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Thu, 13 Apr 2023 18:55:32 -0700 Subject: [PATCH] Comment --- src-tauri/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index 646edb01..f129d794 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -234,7 +234,7 @@ async fn actually_send_ephemeral_request( f.write_all(body_bytes.as_slice()) .expect("Failed to write to file"); - // Also story body directly on the model, if small enough + // Also store body directly on the model, if small enough if body_bytes.len() < 100_000 { response.body = Some(body_bytes); }