langchain.js
    Preparing search index...

    Interface XAIResponsesOutputTextContent

    Text content in an output message.

    interface XAIResponsesOutputTextContent {
        annotations?: XAIResponsesAnnotation[];
        text: string;
        type: "output_text";
    }
    Index

    Properties

    annotations?: XAIResponsesAnnotation[]

    Annotations on the text (e.g., citations).

    text: string

    The text content.

    type: "output_text"