
1. Automatic Configuration
Automatic configuration provides a pre-generated code snippet that includes your Cell ID and placeholders for user data. You can copy this snippet and paste it directly into your app. Steps:- Select Automatic Configuration.
- Choose your preferred framework (HTML, Next.js, or React Native).
- Copy the provided code and paste it into your application file (for example,
index.html
). - Replace placeholders such as
{userId}
or{companyId}
with real values before deploying.
{userId}
) with your actual values before using this code.
This method is the fastest way to get a Cell running. Once embedded, your Cell appears at the bottom of your interface and can be used immediately by your users.

2. Manual Configuration
Manual configuration allows you to fine-tune how your Cell looks and behaves. You can adjust color themes, layout, and size directly in the configuration object. You can edit fields such as:primaryColor
,secondaryColor
, andaccentColor
placeholderText
(for example “What can I do for you?”)borderRadius
,defaultWidth
, andbottomMargin
dictation
,glowEnabled
, andborderEnabled
3. Additional Parameters — Simple Guide
What it is:Additional Parameters are used to automatically include required values, such as customer IDs or company IDs, in every API call your Cell makes. How it works:
You can define key-value pairs in the configuration UI (for example
customer_id: 12345
). These parameters are automatically included in all API calls your Cell makes to your connected services.
Example:
- Without additional parameters:
The user must say, “Show me invoices for customer 12345.” - With additional parameters:
You definecustomer_id: 12345
in the configuration. Now the user only needs to say “Show me my invoices,” and the Cell automatically includes the ID.