function isUserPromptLoggingEnabled(): boolean { return false } export function redactIfDisabled(content: string): string { return isUserPromptLoggingEnabled() ? content : '' } export async function logOTelEvent( _eventName: string, _metadata: { [key: string]: string | undefined } = {}, ): Promise {}