interface DatadogLLMObsRequestBody {
    data: {
        attributes: {
            ml_app: string;
            spans: DatadogLLMObsSpan[];
            tags: string[];
            session_id?: string;
        };
        type: "span";
    };
}

Properties

Properties

data: {
    attributes: {
        ml_app: string;
        spans: DatadogLLMObsSpan[];
        tags: string[];
        session_id?: string;
    };
    type: "span";
}