@microsoft/opentelemetry
    Preparing search index...

    Interface OutputMessage

    An output message produced by a model (OTEL gen-ai semantic conventions). finish_reason defaults to "stop" per OTel spec when not provided.

    interface OutputMessage {
        finish_reason?: string;
        name?: string;
        parts: MessagePart[];
        role: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    finish_reason?: string
    name?: string
    parts: MessagePart[]
    role: string