Databricks SDK for JavaScript
    Preparing search index...

    A single thought in the AI's reasoning process for a query.

    interface Thought {
        content?: string;
        thoughtType?: ThoughtType;
    }
    Index

    Properties

    content?: string

    The md formatted content for this thought.

    thoughtType?: ThoughtType

    The category of this thought. The possible values are:

    • THOUGHT_TYPE_DESCRIPTION: A high-level description of how the question was interpreted.
    • THOUGHT_TYPE_UNDERSTANDING: How ambiguous parts of the question were resolved.
    • THOUGHT_TYPE_DATA_SOURCING: Which tables or datasets were identified as relevant.
    • THOUGHT_TYPE_INSTRUCTIONS: Which author-defined instructions were referenced.
    • THOUGHT_TYPE_STEPS: The logical steps taken to compute the answer.