Hello William,
There is a disclaimer property on the conversational search response that has the disclaimer text in it. If you set this to '', it'll hide the disclaimer. You can do that in a pre:receive event like shown below. Note though that in recent versions of web chat, this disclaimer was actually removed although there's been some talk of bringing it back with more options for controlling it.
instance.on({ type: 'pre:receive',
handler: (event) => {
event.data.output?.generic?.forEach((item) => {
if (item?.response_type ===
'conversational_search') {
item.disclaimer = '';
}
})
}});
Hope it helps.
Original Message:
Sent: Wed February 26, 2025 09:18 AM
From: William Griffith
Subject: How to display 'AI accuracy may vary' disclaimer
Hi!
I'm struggling to find where to toggle this disclaimer on when using conversational search in Watson. Is anyone able to advise please?

Thanks, Will
------------------------------
William Griffith
------------------------------