Skip to content

Commit

Permalink
fix: typo in comments for openai example (#293)
Browse files Browse the repository at this point in the history
  • Loading branch information
ghislaine-laios authored Jun 30, 2024
1 parent e3547db commit 9e6e49e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
.unwrap();

// Print the result to the console
// Call `res.primary_textual_output()` explictly to get the streamed response.
// Call `res.primary_textual_output()` explicitly to get the streamed response.
let mut stream = res.as_stream().await?;
while let Some(v) = stream.next().await {
print!("{}", v);
Expand Down

0 comments on commit 9e6e49e

Please sign in to comment.