Decibri – unified audio layer for AI agents and Voice AI applications Decibri launched a unified audio layer for AI agents and Voice AI applications, providing real-time microphone capture, speaker playback, and streaming to voice agents, WebSockets, or files via Python, Node.js, or Rust. The tool features built-in voice activity detection, zero system dependencies, and cross-platform support for macOS, Windows, and Linux, aiming to simplify real-time audio integration for developers. The unified audio layer for AI agents and Voice AI applications Capture real-time microphone audio, play to speakers, or pipe anywhere voice agents, WebSockets, or files using Python, Node.js, or Rust. Built-in voice activity detection. Zero system dependencies. Zero setup. Install with one command: Then start streaming: python import decibri with decibri.Microphone sample rate=16000 as mic: for chunk in mic: print f"Got {len chunk } bytes" break js const { Microphone } = require 'decibri' ; const mic = new Microphone { sampleRate: 16000 } ; mic.on 'data', chunk = console.log Got ${chunk.length} bytes ; setTimeout = mic.stop , 5000 ; use std::time::Duration; use decibri::{DecibriError, Microphone, MicrophoneConfig}; fn main - Result< , Box