Type alias DatadogLLMObsIO
DatadogLLMObsIO: { 
    value: string; 
} | { 
    documents: { 
        score: string | number; 
        id?: string; 
        name?: string; 
        text?: string; 
    }[]; 
} | { 
    messages: { 
        content: string; 
        role?: string; 
    }[]; 
}
Type declaration
documents: { 
    score: string | number; 
    id?: string; 
    name?: string; 
    text?: string; 
}[]
Type declaration
messages: { 
    content: string; 
    role?: string; 
}[]