mirascope.core.gemini.dynamic_config¶
This module defines the function return type for functions as LLM calls.
GeminiDynamicConfig
module-attribute
¶
GeminiDynamicConfig = BaseDynamicConfig[
ContentsType | BaseMessageParam,
GeminiCallParams,
GenerativeModel,
]
The function return type for functions wrapped with the gemini_call
decorator.
Example:
from mirascope.core import prompt_template
from mirascope.core.gemini import GeminiDynamicConfig, gemini_call
@gemini_call("gemini-1.5-flash")
@prompt_template("Recommend a {capitalized_genre} book")
def recommend_book(genre: str) -> GeminiDynamicConfig:
return {"computed_fields": {"capitalized_genre": genre.capitalize()}}