Mirascope Frog Logo
Mirascope
DocsBlogPricingCloud
⌘K
Type to search
⌘Kto search
Escto close
mirascope
v2.0.2
1.4k
Join our
WelcomeLearnGuidesAPI Referencev1 (Legacy)
DocsGuidesAPI
Overview
Core
CallCall ParamsCall ResponseCall Response ChunkDynamic ConfigStreamTool
Llm
CallCall ResponseCall Response ChunkContextOverrideStreamTool
Mcp
Client
Retries
FallbackTenacity
Tools
# mirascope.core.google.call_response_chunk This module contains the `GoogleCallResponseChunk` class. <Info title="Usage"> [Streams](/docs/v1/learn/streams#handling-streamed-responses) </Info> ## <ApiType type="Class" path="core/google/call_response_chunk" symbolName="GoogleCallResponseChunk" /> GoogleCallResponseChunk A convenience wrapper around the Google API streamed response chunks. When calling the Google API using a function decorated with `google_call` and `stream` set to `True`, the stream will contain `GoogleCallResponseChunk` instances Example: ```python from mirascope.core import prompt_template from mirascope.core.google import google_call @google_call("google-1.5-flash", stream=True) def recommend_book(genre: str) -> str: return f"Recommend a {genre} book" stream = recommend_book("fantasy") # response is an `GoogleStream` for chunk, _ in stream: print(chunk.content, end="", flush=True) ``` **Bases:** <TypeLink type={{"type_str": "BaseCallResponseChunk[GenerateContentResponse, GoogleFinishReason]", "description": null, "kind": "generic", "base_type": {"type_str": "BaseCallResponseChunk", "description": null, "kind": "simple", "doc_url": "/docs/v1/api/core/base/call_response_chunk#basecallresponsechunk"}, "parameters": [{"type_str": "GenerateContentResponse", "description": null, "kind": "simple", "doc_identifier": "GenerateContentResponse"}, {"type_str": "GoogleFinishReason", "description": null, "kind": "simple", "doc_identifier": "GoogleFinishReason"}]}} /> <AttributesTable attributes={[ { "name": "content", "type_info": { "type_str": "str", "description": null, "kind": "simple", "doc_url": "https://docs.python.org/3/library/stdtypes.html#str" }, "description": "Returns the chunk content for the 0th choice." }, { "name": "finish_reasons", "type_info": { "type_str": "list[GoogleFinishReason]", "description": null, "kind": "generic", "base_type": { "type_str": "list", "description": null, "kind": "simple", "doc_url": "https://docs.python.org/3/library/stdtypes.html#list" }, "parameters": [ { "type_str": "GoogleFinishReason", "description": null, "kind": "simple", "doc_identifier": "GoogleFinishReason" } ] }, "description": "Returns the finish reasons of the response." }, { "name": "model", "type_info": { "type_str": "str | None", "description": null, "kind": "union", "base_type": { "type_str": "Union", "description": null, "kind": "simple", "doc_url": "https://docs.python.org/3/library/typing.html#typing.Union" }, "parameters": [ { "type_str": "str", "description": null, "kind": "simple", "doc_url": "https://docs.python.org/3/library/stdtypes.html#str" }, { "type_str": "None", "description": null, "kind": "simple", "doc_url": "https://docs.python.org/3/library/constants.html#None" } ] }, "description": "Returns the model name.\n\ngoogle.generativeai does not return model, so we return None" }, { "name": "id", "type_info": { "type_str": "str | None", "description": null, "kind": "union", "base_type": { "type_str": "Union", "description": null, "kind": "simple", "doc_url": "https://docs.python.org/3/library/typing.html#typing.Union" }, "parameters": [ { "type_str": "str", "description": null, "kind": "simple", "doc_url": "https://docs.python.org/3/library/stdtypes.html#str" }, { "type_str": "None", "description": null, "kind": "simple", "doc_url": "https://docs.python.org/3/library/constants.html#None" } ] }, "description": "Returns the id of the response.\n\ngoogle.generativeai does not return an id" }, { "name": "usage", "type_info": { "type_str": "GenerateContentResponseUsageMetadata | None", "description": null, "kind": "union", "base_type": { "type_str": "Union", "description": null, "kind": "simple", "doc_url": "https://docs.python.org/3/library/typing.html#typing.Union" }, "parameters": [ { "type_str": "GenerateContentResponseUsageMetadata", "description": null, "kind": "simple", "doc_identifier": "GenerateContentResponseUsageMetadata" }, { "type_str": "None", "description": null, "kind": "simple", "doc_url": "https://docs.python.org/3/library/constants.html#None" } ] }, "description": "Returns the usage of the chat completion.\n\ngoogle.generativeai does not have Usage, so we return None" }, { "name": "input_tokens", "type_info": { "type_str": "int | None", "description": null, "kind": "union", "base_type": { "type_str": "Union", "description": null, "kind": "simple", "doc_url": "https://docs.python.org/3/library/typing.html#typing.Union" }, "parameters": [ { "type_str": "int", "description": null, "kind": "simple", "doc_url": "https://docs.python.org/3/library/functions.html#int" }, { "type_str": "None", "description": null, "kind": "simple", "doc_url": "https://docs.python.org/3/library/constants.html#None" } ] }, "description": "Returns the number of input tokens." }, { "name": "cached_tokens", "type_info": { "type_str": "int | None", "description": null, "kind": "union", "base_type": { "type_str": "Union", "description": null, "kind": "simple", "doc_url": "https://docs.python.org/3/library/typing.html#typing.Union" }, "parameters": [ { "type_str": "int", "description": null, "kind": "simple", "doc_url": "https://docs.python.org/3/library/functions.html#int" }, { "type_str": "None", "description": null, "kind": "simple", "doc_url": "https://docs.python.org/3/library/constants.html#None" } ] }, "description": "Returns the number of cached tokens." }, { "name": "output_tokens", "type_info": { "type_str": "int | None", "description": null, "kind": "union", "base_type": { "type_str": "Union", "description": null, "kind": "simple", "doc_url": "https://docs.python.org/3/library/typing.html#typing.Union" }, "parameters": [ { "type_str": "int", "description": null, "kind": "simple", "doc_url": "https://docs.python.org/3/library/functions.html#int" }, { "type_str": "None", "description": null, "kind": "simple", "doc_url": "https://docs.python.org/3/library/constants.html#None" } ] }, "description": "Returns the number of output tokens." }, { "name": "cost_metadata", "type_info": { "type_str": "CostMetadata", "description": null, "kind": "simple", "doc_url": "/docs/v1/api/core/base/types#costmetadata" }, "description": "Returns the cost metadata." }, { "name": "common_finish_reasons", "type_info": { "type_str": "list[FinishReason] | None", "description": null, "kind": "union", "base_type": { "type_str": "Union", "description": null, "kind": "simple", "doc_url": "https://docs.python.org/3/library/typing.html#typing.Union" }, "parameters": [ { "type_str": "list[FinishReason]", "description": null, "kind": "generic", "base_type": { "type_str": "list", "description": null, "kind": "simple", "doc_url": "https://docs.python.org/3/library/stdtypes.html#list" }, "parameters": [ { "type_str": "FinishReason", "description": null, "kind": "simple", "doc_url": "/docs/v1/api/core/openai/call_response_chunk#finishreason" } ] }, { "type_str": "None", "description": null, "kind": "simple", "doc_url": "https://docs.python.org/3/library/constants.html#None" } ] } } ]} />

Provider

On this page

Provider

On this page

© 2026 Mirascope. All rights reserved.

Mirascope® is a registered trademark of Mirascope, Inc. in the U.S.

Privacy PolicyTerms of Use