1use crate::prelude::*; 2use super::StreamChoice; 3 4// Response stream 5#[derive(Debug, Clone, Deserialize)] 6pub struct Stream { 7 pub choices: Vec<StreamChoice>, 8}