About the Widget Settings API

The Widget Settings API allows you to manage your AI Site-Chat's settings. Learn more about configuring your AI Site-Chat's settings.

With this API, you can:

  • Retrieve current AI Site-Chat settings.
  • Update AI Site-Chat settings.

Note: Wix AI Site-Chat is currently only available in the Wix Editor.

Before you begin

It's important to note the following point before starting to code:

Use cases

Did this help?

Setup

@wix/ai-site-chat

To use the WidgetSettings API, install the @wix/ai-site-chat package using npm or Yarn:

Copy
npm install @wix/ai-site-chat

or

Copy
yarn add @wix/ai-site-chat

Then import { widgetSettings } from @wix/ai-site-chat:

Copy
import { widgetSettings } from "@wix/ai-site-chat";
Did this help?