Skip to content

mirascope.core.groq.call_response_chunk

This module contains the GroqCallResponseChunk class.

Usage Documentation

Streams

GroqCallResponseChunk

Bases: BaseCallResponseChunk[ChatCompletionChunk, FinishReason]

A convenience wrapper around the Groq ChatCompletionChunk streamed chunks.

When calling the Groq API using a function decorated with groq_call and stream set to True, the stream will contain GroqResponseChunk instances with properties that allow for more convenient access to commonly used attributes.

Example:

from mirascope.core import prompt_template
from mirascope.core.groq import groq_call


@groq_call("llama-3.1-8b-instant", stream=True)
@prompt_template("Recommend a {genre} book")
def recommend_book(genre: str):
    ...


stream = recommend_book("fantasy")  # response is an `GroqStream`
for chunk, _ in stream:
    print(chunk.content, end="", flush=True)

content property

content: str

Returns the content for the 0th choice delta.

finish_reasons property

finish_reasons: list[FinishReason]

Returns the finish reasons of the response.

model property

model: str

Returns the name of the response model.

id property

id: str

Returns the id of the response.

usage property

usage: CompletionUsage | None

Returns the usage of the chat completion.

input_tokens property

input_tokens: int | None

Returns the number of input tokens.

output_tokens property

output_tokens: int | None

Returns the number of output tokens.