Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/chat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ pub struct ChatCompletionMessageDelta {
pub role: Option<ChatCompletionMessageRole>,
/// The contents of the message
pub content: Option<String>,
/// The reasoning contents of the message
pub reasoning_content: Option<String>,
/// The name of the user in a multi-user chat
#[serde(skip_serializing_if = "Option::is_none")]
pub name: Option<String>,
Expand Down