A thought step.

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

Properties

signature?: string

A signature hash for backend validation.

A summary of the thought.

type: "thought"