open_ai: Remove model field from ResponseStreamEvent (#36902)

Closes #36901

Release Notes:

- Fixed use of Open WebUI as an LLM provider.
This commit is contained in:
Michael Sloan 2025-08-25 13:50:08 -06:00 committed by GitHub
parent 4605b96630
commit 0470baca50
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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>,
}