mirascope.core.azure.dynamic_config | Mirascope
MirascopeLilypad

mirascope.core.azure.dynamic_config

Module dynamic_config

This module defines the function return type for functions as LLM calls.

Attribute AsyncAzureDynamicConfig

Type: BaseDynamicConfig[ChatRequestMessage | BaseMessageParam, AzureCallParams, AsyncChatCompletionsClient]

Attribute AzureDynamicConfig

Type: BaseDynamicConfig[ChatRequestMessage | BaseMessageParam, AzureCallParams, ChatCompletionsClient]

The function return type for functions wrapped with the azure_call decorator.

Example:

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


@azure_call("gpt-4o-mini")
@prompt_template("Recommend a {capitalized_genre} book")
def recommend_book(genre: str) -> AzureDynamicConfig:
    return {"computed_fields": {"capitalized_genre": genre.capitalize()}}