AI Voice Surveys
Natural, conversational AI-powered voice interactions with real-time processing
Collect survey data through interactive AI voice workflows
๐ง CLOSED BETA
Sibilance is currently in closed beta. This documentation is provided as a reference to showcase how the implementation will work upon release.
The @sibilance.is/client package is not yet publicly available. If you're interested in early access, please visit sibilance.is to join the waitlist.
import { useSibilance, FloatingMicButton } from '@sibilance.is/client/react';
function VoiceSurvey() {
const { voiceState, surveyState, toggleSession } = useSibilance({
surveyKey: "sibilance_your_key_here",
}, {
onComplete: (yaml) => {
console.log('Survey completed!', yaml);
// Submit to your backend
}
});
return (
<FloatingMicButton
isConnected={voiceState.isConnected}
onClick={toggleSession}
/>
);
}Building voice survey systems from scratch is complex. Sibilance handles the hard parts:
You focus on defining your survey questions and collecting data.
Sibilance is a SaaS platform that enables websites to collect survey data, specifications, and other information through interactive AI voice workflows. The platform consists of:
@sibilance.is/client)Sibilance uses vowel.to as the underlying voice AI platform for real-time audio processing and AI conversation management.