From 496126316ac975213b8c1a3dcb2f2f58207c7425 Mon Sep 17 00:00:00 2001 From: alikonainofficial Date: Wed, 23 Oct 2024 18:44:01 +0500 Subject: [PATCH] Fixed typo --- anthropic_api_fundamentals/05_Streaming.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anthropic_api_fundamentals/05_Streaming.ipynb b/anthropic_api_fundamentals/05_Streaming.ipynb index 0e1bceb..f0215fd 100644 --- a/anthropic_api_fundamentals/05_Streaming.ipynb +++ b/anthropic_api_fundamentals/05_Streaming.ipynb @@ -258,7 +258,7 @@ "id": "e791652f", "metadata": {}, "source": [ - "All of the actual model-generated content we care about comes from the ContentBlockDeltaEvents, which each contain a type set to \"content_block_delta.\" To actually get the content itself, we want to access the `text` property inside of `delta`. Let's try exclusively printing out the text that was generated:" + "All of the actual model-generated content we care about comes from the ContentBlockDeltaEvents, each of which contains a type set to \"content_block_delta.\" To actually get the content itself, we want to access the `text` property inside of `delta`. Let's try exclusively printing out the text that was generated:" ] }, {