gemini_genai_rs/flow/
mod.rs

1//! Conversation flow control — barge-in handling and turn detection.
2
3pub mod barge_in;
4pub mod turn_detection;
5
6pub use barge_in::{BargeInAction, BargeInConfig, BargeInDetector};
7pub use turn_detection::{TurnDetectionConfig, TurnDetectionEvent, TurnDetector};