What is the primary drawback of the standard chat interface when interacting with Bedrock?	The time between sending the request and receiving the full response can be very long (e.g., 30 seconds).
What function is used to implement immediate feedback by streaming the response as it is generated?	The `converse stream` function.
What is the nature of the initial response received when using `converse stream`?	It is an immediate message from Bedrock confirming the request has been received, but it contains no generated text.
How is the generated text delivered when using `converse stream`?	It is delivered as a stream of discrete events.
Which specific event type contains the actual piece of text generated by the model?	`content block delta`.
Where is the actual text located within a `content block delta` event?	At `delta.text`.
What is the typical sequence of events when generating text using `converse stream`?	`message start` -> multiple `content block delta` events -> `content block stop` -> `message stop` -> `metadata`.
When would you typically see a `content block start` event?	When the model is utilizing tool use.
How must the Python `print()` function be modified when displaying streamed text chunks to prevent automatic newlines?	By passing `end=""` to the print statement.
How is the complete, final message reconstructed from the streamed chunks?	By appending each chunk received from the stream to a cumulative text variable.
