UNPKG

@airsurfer09/web-handsfree

Version:

A React package for integrating Convai's AI-powered voice assistants with LiveKit for real-time audio/video conversations

17 lines 512 B
interface CharacterInfo { name: string; image: string | null; } /** * Hook to fetch character information from Convai API * * @param characterId - The character ID to fetch information for * @param apiKey - The Convai API key * @returns Character information including name and image URL */ export declare const useCharacterInfo: (characterId: string, apiKey: string) => CharacterInfo & { isLoading: boolean; error: Error | null; }; export {}; //# sourceMappingURL=useCharacterInfo.d.ts.map