Creating Plot Twists
    Preparing search index...

    Interface ReasoningPart

    Reasoning content part of a prompt. It contains a reasoning.

    interface ReasoningPart {
        type: "reasoning";
        text: string;
        signature?: string;
    }
    Index

    Properties

    Properties

    type: "reasoning"
    text: string

    The reasoning text.

    signature?: string

    An optional signature for verifying that the reasoning originated from the model.