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