OpenInference JS
    Preparing search index...

    Represents an output message generated by the model or agent. The output message captures specific response (choice, candidate).

    interface OutputMessage {
        finish_reason: string;
        parts: Parts;
        role: string;
        [k: string]: unknown;
    }

    Indexable

    • [k: string]: unknown
    Index

    Properties

    finish_reason: string
    parts: Parts
    role: string