mirascope.core.xai.call | Mirascope
MirascopeLilypad

mirascope.core.xai.call

Alias call

A decorator for calling the xAI API with a typed function.

Usage

This decorator is used to wrap a typed function that calls the xAI API. It parses the prompt template of the wrapped function as the messages array and templates the input arguments for the function into each message's template.

Example:

from mirascope.core import prompt_template
from mirascope.core.xai import xai_call


@xai_call("grok-2-latest")
def recommend_book(genre: str) -> str:
    return f"Recommend a {genre} book"

response = recommend_book("fantasy")
print(response.content)

Parameters

NameTypeDescription
modelstrThe model to use in the API call.
streamboolWhether to stream the response from the API call.
toolslist[BaseTool | Callable]The tools to use in the API call.
response_modelBaseModel | BaseTypeThe response model into which the response should be structured.
output_parser(OpenAICallResponse | ResponseModelT) => AnyA function for parsing the call response whose value will be returned in place of the original call response.
json_modeboolWhether to use JSON Mode.
clientNonexAI does not support a custom client.
call_paramsOpenAICallParamsThe `OpenAICallParams` call parameters to use in the API call.

Returns

TypeDescription
CallableThe decorator for turning a typed function into a xAI routed LLM API call.

Alias to: mirascope.core.xai._call.xai_call