Website (Embed)

Embedding an assistant onto your website is a straightforward process. You have three options to do this: using a Public URL, an Iframe, or a Script. Here's a step-by-step guide for each method:

1. Embedding using the Public URL:

The Public URL is the direct link to your chatbot. You can use this URL to direct users to your chatbot in a new browser tab or window.

  • Copy the public URL: https://chat.ticogpt.com/bot/a1fe3d87-8c70-49fc-932d-057b4e812508

  • You can then use this URL as a hyperlink in your website content or as a direct link for users to access the chatbot.

2. Embedding using the Iframe:

An Iframe allows you to embed your chatbot directly into a section of your website, creating an integrated user experience.

  • Copy the provided Iframe code:

<iframe src="https://chat.ticogpt.com/bot/YOUR-BOT-ID?mode=iframe" width="400" height="500" />
  • Paste this code into your website's HTML where you want the chatbot to appear. The chatbot will appear in a frame with the specified width and height.

3. Embedding using the Script:

The Script method allows you to embed your chatbot in a more dynamic way, such as in a pop-up chat window.

  • Copy the provided script:

<script src="https://chat.ticogpt.com/chat.min.js" data-chat-url="https://chat.ticogpt.com/bot/YOUR-BOT-ID" data-btn-position="bottom-right" defer></script>
  • Paste this script into your website's HTML, typically at the bottom of the body section. This will add a chat button to your website, typically in the bottom-right corner, which users can click to interact with the chatbot.

Remember to save and refresh your website to see the changes.

Last updated