Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

@ariontalk/core

Headless voice AI engine with page understanding — services, types, and session logic.

Install

npm install @ariontalk/core

Usage

import { VoiceEngine, isVoiceChatSupported } from '@ariontalk/core';

const engine = new VoiceEngine();

if (isVoiceChatSupported(engine)) {
  await engine.startSession('en');
}

Key exports

  • VoiceEngine — local browser-based voice engine (Web Speech API)
  • isVoiceChatSupported(engine) — check browser capabilities before starting
  • EnergyBargeInDetector — energy-based barge-in detection plugin
  • createLogger / setLogLevel — logging utilities
  • TypesSupportedLang, VoiceEngineState, VoiceSettings, BargeInDetector, and more

License

MIT — see LICENSE

Links