Create a ticket from the AI Assistant
Embed a support ticket form directly within the Inkeep Assistant UI.
You can embed a form directly within the Inkeep AI assistant chat UI. It can be triggered from a "Contact support" button in the bottom right of the chat or as a dynamic button that appears when the AI assistant is not confident in its answer.
Use this to create a support ticket in your ticketing platform via a custom callback. The history of the conversation can be included.
An example open_form
action looks like this:
FormSettings Reference
The FormSettings
interface provides a comprehensive way to configure forms in your chat interface, through the open_form
action type. Here's a detailed breakdown of all available options:
Basic Properties
Property | Type | Required | Description |
---|---|---|---|
heading | string | No | The form's title displayed at the top |
description | string | No | Explanatory text shown below the heading |
fields | FormField[] | Yes | Array of form field configurations |
buttons | FormButtons | Yes | Configuration for form action buttons |
successView | SuccessView | Yes | Configuration for the success confirmation page |
Field Types
Forms support various field types through the FormField
union type:
Base Field Properties
All field types inherit these base properties:
Property | Type | Required | Description |
---|---|---|---|
name | string | Yes | Unique identifier for the field |
label | string | Yes | Display label for the field |
isRequired | boolean | No | Whether the field is required |
isHidden | boolean | No | Whether to hide the field |
description | string | No | Help text shown below the field |
Text Field
Email Field
Textarea Field
Checkbox Field
Select Field
File Field
When using a file
field in your form, you may need to convert the files to Base64 before sending to your backend or an external API, this can be done by using the following snippet.
Include Chat Session Field
Special field type to include chat history:
Button Configuration
The buttons
property requires configuration for submit and optional close buttons:
Success View Configuration
The successView
property configures what's shown after successful submission:
Complete Example
Here's a comprehensive example showing all available configurations: