Person B (the other person on the call) needs nothing.
git clone https://github.com/user/khala.git
cd khala
./install.sh
The install script supports partial installation:
./install.sh # Install everything (default)
./install.sh core # Build and install khala only (Rust)
./install.sh rvc # Install khala-rvc only (Python)
cargo and Python 3.9-3.11khala Rust binary (cargo build --release) and copies it to ~/.local/bin/khala-rvc Python server with its own virtualenv at ~/.local/share/khala-rvc/requirements.txt~/.config/khala/rvc/khala-rvc wrapper script in ~/.local/bin/~/.config/khala/config.tomlMake sure ~/.local/bin is in your PATH:
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.zshrc
source ~/.zshrc
export OPENAI_API_KEY="sk-..."
Or add it permanently to your shell profile, or set it in ~/.config/khala/config.toml under [openai].api_key.
If you want voice cloning, edit ~/.config/khala/config.toml:
[rvc]
enabled = true
lib = "/path/to/RVC-WebUI" # Your local RVC-WebUI codebase
model = "~/.config/khala/rvc/your-voice.pth" # Your trained voice model
index = "~/.config/khala/rvc/your-voice.index" # FAISS index for your model
See RVC Voice Cloning for details on training your voice model.
In Zoom:
BlackHole 2chBlackHole 16chThis works the same for Discord, Google Meet, or any other call app.
khala doctor
This checks config, API key, and all RVC dependencies.
| Path | Contents |
|---|---|
~/.local/bin/khala |
Rust binary |
~/.local/bin/khala-rvc |
Python wrapper script |
~/.local/share/khala-rvc/ |
Python sources + virtualenv |
~/.config/khala/config.toml |
Configuration |
~/.config/khala/prompt.txt |
Translation prompt |
~/.config/khala/rvc/ |
Pre-trained models (HuBERT, RMVPE) + your voice model |
~/.khala/ |
Runtime data (logs, socket) |
./uninstall.sh
Supports partial uninstall:
./uninstall.sh # Remove everything (binaries, config, data)
./uninstall.sh core # Remove khala binary only
./uninstall.sh rvc # Remove khala-rvc only (wrapper + venv)
Full uninstall removes all installed files: binaries, Python runtime, config, and data directories.