1
2
3
4
5
6
use reqwest_eventsource::EventSource;

pub enum LlmResponse {
    Text(String),
    Stream(EventSource),
}