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:" ] }, {