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