Deployment
The "Deployment" page lets you choose the integration mode best suited to your context and access the resources needed to set up your digital employee.
Deployment modes
Windows Application
Download RETORIK Kiosk, the Windows application designed for interactive kiosk hardware installations. Available on the Microsoft Store.
WordPress Plugin
Integrate your digital employee directly from your WordPress site using the official plugin. Download it and follow the installation instructions.
Javascript Integration
Integrate the digital employee via a customisable Javascript code snippet to copy and paste into your website. Two variants are available:
Retorik Agent — full screen integration:
import * as props from './config';
// Define an empty HTML element where the component will be added:
const element = document.querySelector('#my-retorik-agent');
window.Retorik.renderAgent(props, element);
Retorik Widget — widget integration (overlay):
import * as props from './config';
// Define an empty HTML element where the component will be added:
const element = document.querySelector('#my-retorik-agent');
window.Retorik.renderWidget(props, element);
The config file referenced in these snippets contains the configuration properties for your digital employee. See the Retorik Framework Integration section for the available parameters.
Advanced Integration
This mode is intended for developers requiring a custom integration. Consult the dedicated technical documentation for implementation details.