ChatBot.quick_start()

Get a quick-start guide tailored to this chatbot’s current configuration.

Usage

Source

ChatBot.quick_start()

The guide covers basic usage commands, configuration options, and the chatbot’s active settings (model, temperature, etc.).

Returns

str
A multi-line guide string ready to print.

Examples

import talk_box as tb

bot = tb.ChatBot().model("gpt-4")
guide = bot.quick_start()
"gpt-4" in guide
True