@vowel.to/client / index / VowelAgent
Function: VowelAgent()
ts
function VowelAgent(__namedParameters): Element | null;Defined in: lib/vowel/components/VowelAgent.tsx:150
Floating voice agent button with optional transcript panel Positioned in a corner of the screen
Parameters
| Parameter | Type |
|---|---|
__namedParameters | VowelAgentProps |
Returns
Element | null
Example
tsx
import { VowelAgent } from '@/lib/vowel';
function App() {
return (
<>
<YourApp />
<VowelAgent
position="bottom-right"
showTranscripts={true}
/>
</>
);
}