mirascope.core.azure.call_response_chunk | Mirascope
MirascopeLilypad

mirascope.core.azure.call_response_chunk

This module contains the AzureCallResponseChunk class.

Usage

Class AzureCallResponseChunk

A convenience wrapper around the Azure ChatCompletionChunk streamed chunks.

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

Example:

from mirascope.core import prompt_template
from mirascope.core.azure import azure_call


@azure_call("gpt-4o-mini", stream=True)
def recommend_book(genre: str) -> str:
    return f"Recommend a {genre} book"


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

Bases:

BaseCallResponseChunk[StreamingChatCompletionsUpdate, CompletionsFinishReason]

Attributes

NameTypeDescription
chunkSkipValidation[StreamingChatCompletionsUpdate]-
contentstrReturns the content for the 0th choice delta.
finish_reasonslist[CompletionsFinishReason]Returns the finish reasons of the response.
modelstrReturns the name of the response model.
idstrReturns the id of the response.
usageCompletionsUsageReturns the usage of the chat completion.
input_tokensintReturns the number of input tokens.
cached_tokensintReturns the number of cached tokens.
output_tokensintReturns the number of output tokens.
cost_metadataCostMetadataReturns the cost metadata.
common_finish_reasonslist[FinishReason] | NoneProvider-agnostic finish reasons.