gemini-live-rs
High-performance Rust client for the Gemini Multimodal Live API — real-time, bidirectional audio/video/text streaming over WebSocket.
Features
- Strongly typed — every wire message has a Rust struct; serde handles the JSON mapping
- Session management — automatic reconnection with exponential backoff, session resumption, GoAway handling
- Streaming-first —
send_audio/send_video/send_textfor real-time input; event stream for output - Performance-conscious —
AudioEncoderreuses hot-path encoding buffers, and benchmark coverage exists for the hottest codec/audio paths - Tool calling — typed function calls, cancellations, and built-in
googleSearch; Gemini 2.5 async scheduling semantics remain under audit - Clone-friendly sessions —
Sessionis cheaply cloneable; multiple tasks can send and receive concurrently - Vertex-ready transport — first-class Vertex AI Live routing via regional endpoints and bearer-token auth
Demo
https://github.com/user-attachments/assets/745ef771-bae7-41ef-bd4f-baa994723a75
Quick Start
Add to your Cargo.toml:
[]
= "0.1"
= { = "1", = ["full"] }
use ;
use ;
use *;
async
Vertex AI
Use the Vertex transport endpoint with an OAuth access token. setup.model
must be the full Vertex model resource name.
use ;
use ;
use *;
async
If you want reconnect-safe token refresh from Google Cloud Application Default
Credentials, enable the optional vertex-auth feature:
[]
= { = "0.1", = ["vertex-auth"] }
= { = "1", = ["full"] }
Then build the auth mode from ADC instead of injecting a static token:
use Auth;
let auth = vertex_ai_application_default?;
Architecture
Session → Transport → Codec → Types / Audio / Errors
| Layer | Module | What it does |
|---|---|---|
| Session | session.rs |
Connection lifecycle, auto-reconnect, typed send/receive |
| Transport | transport.rs |
WebSocket + rustls, frame I/O |
| Codec | codec.rs |
JSON ↔ Rust conversion; ServerMessage → ServerEvent decomposition |
| Audio | audio.rs |
Zero-allocation PCM encoder, format constants |
| Types | types/ |
All wire-format structs and enums |
| Errors | error.rs |
Layered error types per architectural layer |
Each layer's public API and design notes are documented in source code doc comments — start from lib.rs and drill into modules.
Workspace Crates
This repository now has seven focused crates instead of treating the CLI as the accidental home for reusable host logic:
| Crate | Role |
|---|---|
gemini-live |
Wire-level Live API client |
gemini-live-runtime |
Reusable staged-setup and managed runtime orchestration |
gemini-live-harness |
Durable harness state, passive notifications, and shared host-tool execution policy |
gemini-live-tools |
Reusable low-coupling tool families such as workspace inspection/execution |
gemini-live-io |
Reusable desktop mic / speaker / screen adapters |
gemini-live-cli |
Interactive desktop TUI built on the shared crates above |
gemini-live-discord |
Single-guild Discord host for a shared text/voice Gemini Live agent |
Audio Streaming
For convenience:
session.send_audio.await?;
For lower-overhead audio encoding with encoder buffer reuse:
let mut enc = new;
loop
This avoids the extra base64-string allocation in Session::send_audio, but
the current full message-building and JSON-encoding path still performs owned
allocations; see docs/roadmap.md.
Tool Calling
while let Some = session.next_event.await
CLI
An interactive TUI client with microphone, speaker, screen sharing, and file sending support. See docs/cli.md for full usage.
Install
Pre-built binary (Linux / macOS):
|
Or via Cargo:
Build without audio/screen features for a minimal binary:
Usage
Override the model:
GEMINI_MODEL=models/gemini-2.5-flash-native-audio-latest
Run the CLI against Vertex AI with a static bearer token:
LIVE_BACKEND=vertex \
VERTEX_LOCATION=us-central1 \
VERTEX_MODEL='projects/PROJECT_ID/locations/us-central1/publishers/google/models/MODEL_ID' \
VERTEX_AI_ACCESS_TOKEN="" \
Run the CLI against Vertex AI with Application Default Credentials:
LIVE_BACKEND=vertex \
VERTEX_LOCATION=us-central1 \
VERTEX_MODEL='projects/PROJECT_ID/locations/us-central1/publishers/google/models/MODEL_ID' \
VERTEX_AUTH=adc \
Commands
| Input | Action |
|---|---|
hello |
Send text to the model |
@photo.jpg |
Send an image file |
@recording.wav |
Send a WAV audio file |
@photo.jpg describe this |
Send image + text together |
/mic |
Toggle microphone input (with AEC) |
/speak |
Toggle speaker output (with AEC) |
/share-screen list |
List available capture targets |
/share-screen <id> [interval] |
Start sharing a monitor or window |
/share-screen |
Stop screen sharing |
/system ... |
Stage / inspect / apply the system instruction |
/tools ... |
Stage / inspect / apply the Live tool profile |
The CLI also supports persistent named profiles via --profile <name> and a
gemini-live config subcommand that prints the resolved config-file path. See
docs/cli.md for the full command surface and current feature
flags.
Self-update
Feature Flags
| Feature | Dependencies | Enables |
|---|---|---|
mic (default) |
cpal, webrtc-audio-processing |
/mic command with AEC |
speak (default) |
cpal, webrtc-audio-processing |
/speak command with AEC |
share-screen (default) |
xcap, image |
/share-screen command |
Documentation
| File | Purpose |
|---|---|
docs/cli.md |
CLI usage, commands, feature flags, and architecture |
docs/protocol.md |
Upstream API reference (endpoints, lifecycle, VAD, session limits, model differences) |
docs/design.md |
Architecture decisions and performance goals |
docs/runtime-sequence.md |
Cross-layer sequence diagram for host/runtime/harness/session behavior |
docs/roadmap.md |
Planned work, known gaps, tech debt |
docs/testing.md |
Test inventory and instructions |
License
MIT
Author's Note
This repository is also an experiment in how to design a set of guiding principles that enable AI agents to autonomously maintain a client library over time.
Maintaining a client library is not a one-shot code generation problem — it is an ongoing engineering challenge. The library must track upstream API changes, keep documentation in sync, preserve backward compatibility, expand test coverage, and maintain design consistency. These are exactly the kinds of tasks where AI agents could contribute meaningfully, if given the right structure to work within.
The core idea behind this project is to explore what that structure looks like: which conventions, workflows, and constraints help an AI agent maintain stable, extensible, and high-quality output with minimal human intervention. The documentation architecture here — AGENTS.md for general principles, protocol.md for upstream facts, design.md for our decisions, roadmap.md for tracking gaps — is designed so that an agent can orient itself, identify what needs to change, and act accordingly.
If these principles can be defined clearly enough, an AI agent becomes more than a tool that executes instructions — it becomes a collaborator capable of participating in long-term maintenance.