To get started with a free API key, click here.
stream
parameter to True
within the chat.completions.create
method. This will result in the API returning an iterable containing the chunks of the message.
Similarly, the same can be done in TypeScript by setting the stream
property to true
within the chat.completions.create
method.
1
Initial Setup
Begin by importing the Cerebras SDK and setting up the client.
2
Streaming Responses
Set the
stream
parameter to True
within the chat.completions.create
method to enable streaming responses.