Skip to content

@vowel.to/client v0.1.2-393


@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

ParameterType
__namedParametersVowelAgentProps

Returns

Element | null

Example

tsx
import { VowelAgent } from '@/lib/vowel';

function App() {
  return (
    <>
      <YourApp />
      <VowelAgent
        position="bottom-right"
        showTranscripts={true}
      />
    </>
  );
}