mirascope.core.google.call | Mirascope
MirascopeLilypad

mirascope.core.google.call

Alias call

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

Usage

This decorator is used to wrap a typed function that calls the Google 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.google import google_call


@google_call("google-1.5-flash")
def recommend_book(genre: str) -> str:
    return f"Recommend a {genre} book"

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

Parameters

NameTypeDescription
modelstrThe Google 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 Google API call.
response_modelBaseModel | BaseTypeThe response model into which the response should be structured.
output_parser(GoogleCallResponse | ResponseModelT) => AnyA function for parsing the call response whose value will be returned in place of the original call response.
json_modemboolWhether to use JSON Mode.
clientobjectAn optional custom client to use in place of the default client.
call_paramsGoogleCallParamsThe `GoogleCallParams` call parameters to use in the API call.

Returns

TypeDescription
CallableThe decorator for turning a typed function into a Google API call.

Alias to: mirascope.core.google._call.google_call