import talk_box as tb
bot = tb.ChatBot().verbose()
bot.get_config()["verbose"]True
Enable or disable verbose diagnostic output during chat interactions.
Usage
When verbose mode is active the chatbot prints additional diagnostic information (e.g., prompt construction details, model parameters) to stdout during each call to chat() or show().
enabled: bool = TrueTrue to turn on verbose output, False to silence it. Defaults to True.
ChatBot