File size: 328 Bytes
064bfd6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | function isUserPromptLoggingEnabled(): boolean {
return false
}
export function redactIfDisabled(content: string): string {
return isUserPromptLoggingEnabled() ? content : '<REDACTED>'
}
export async function logOTelEvent(
_eventName: string,
_metadata: { [key: string]: string | undefined } = {},
): Promise<void> {}
|