Skip to main content

Settings

General

The general settings represent the general behaviors of your typebot.

General
  • Typebot.io branding: If enabled, will show a "Made with Typebot" badge displayed at the bottom of your bot.
  • Prefill input: If enabled, the inputs will be automatically pre-filled whenever their associated variable has a value.
  • Remember session: If enabled, when a user refreshes the page, its existing answers will be overwritten.
  • Hide query params on bot start: If enabled, the query params will be hidden when the bot starts.

Typing emulation

By default, your typebot will emulate a certain typing speed. It is considered a good default as slow as a human typing speed and it's not too fast so that multiple bubbles can be read sequentially.

You can customize this typing speed in the settings:

Typing emulation

The goal of a typebot is not to pretend that the bot is a real human. So we suggest not setting the typing speed too low.

Sometimes you want to pause the bot for a few seconds between one message and another, regardless of the typing speed. You can achieve this by adding a Code block with the following content:

return new Promise((res) => setTimeout(res, 3000))

You can tweak 3000 (3s) to your liking.

Metadata

In the Metadata section, you can customize how the preview card will look if you share your bot URL on social media for example.

You can also add some custom head code to add third-party scripts like a Facebook pixel for example.