A thought content block.

interface ThoughtContent {
    signature?: string;
    summary?: (
        | GeminiNextGenAPIClient.Interactions.TextContent
        | GeminiNextGenAPIClient.Interactions.ImageContent
    )[];
    type: "thought";
}

Properties

signature?: string

Signature to match the backend source to be part of the generation.

A summary of the thought.

type: "thought"

Used as the OpenAPI type discriminator for the content oneof.