open_ai: Remove model field from ResponseStreamEvent

This commit is contained in:
Michael Sloan 2025-08-25 13:24:04 -06:00
parent 949398cb93
commit a913cbc794
No known key found for this signature in database

View file

@ -446,7 +446,6 @@ pub enum ResponseStreamResult {
#[derive(Serialize, Deserialize, Debug)]
pub struct ResponseStreamEvent {
pub model: String,
pub choices: Vec<ChoiceDelta>,
pub usage: Option<Usage>,
}