print_message
method displays custom messages in the Narada extension’s side panel chat. This is different from Python’s regular print()
function - use this method when you want to show messages to end users viewing the chat or inject messages into the chat history for agents to read later.
This method only displays messages in the Narada extension side panel chat. If you just want to print something to your Python console, use the regular
print()
function instead.Method Signature
Parameters
The text message to display in the side panel chat.
Maximum time in seconds to wait for the message to be displayed. If
None
, uses the default system timeout.Return Value
This method returnsNone
and completes when the message has been displayed.