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