1
2
3
4
5
6
use tokio::sync::mpsc;

pub enum ChainResponse {
    Text(String),
    Stream(mpsc::Receiver<Result<String, reqwest_eventsource::Error>>),
}