Embed voice intelligence into your React app
https://ctrl.so provides an embeddable React component that allows you to integrate voice commands into your React app.
Your users can speak to your app, and you will recieve
the transcript and the values extracted from the transcript to take actions on behalf of the user.
Install
Install using npm install ctrl.so
Usage
In a React app, use the Button or Badge components:
import { Ctrl } from 'ctrl.so'
<Ctrl
apiKey={'xxx-xxx-xxx-xxx'}
onResponse={(response) => {
const { transcript, values, schema, error } = respose
}}
/>