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