ChatBot.show()

Display diagnostic information or launch chat interfaces.

Usage

Source

ChatBot.show(mode="help")

This method provides explicit control over displaying diagnostic information and launching chat interfaces, complementing the automatic display when the ChatBot object is shown.

Parameters

mode: str = "help"

The type of interface to show:

  • "browser": launch browser chat interface
  • "console": launch interactive console/terminal chat
  • "config": display configuration summary in notebook
  • "prompt": display the final system prompt
  • "help": show quick-start guide for using this ChatBot
  • "status": check LLM integration status and troubleshooting
  • "install": show step-by-step chatlas installation guide

Examples

>>> bot = ChatBot().model("gpt-4").preset("technical_advisor")
>>> bot.show("help")        # Show quick-start guide (default)
>>> bot.show("status")      # Check LLM integration status
>>> bot.show("browser")     # Launch browser chat interface
>>> bot.show("console")     # Launch terminal chat interface
>>> bot.show("config")      # Show configuration summary