Do not send reasoning item IDs (#3390)
Response API doesn't require IDs on reasoning items anymore. Fixes: https://github.com/openai/codex/issues/3292
This commit is contained in:
parent
5eab4c7ab4
commit
5bcc9d8b77
1 changed files with 1 additions and 1 deletions
|
|
@ -49,7 +49,7 @@ pub enum ResponseItem {
|
|||
content: Vec<ContentItem>,
|
||||
},
|
||||
Reasoning {
|
||||
#[serde(default)]
|
||||
#[serde(default, skip_serializing)]
|
||||
id: String,
|
||||
summary: Vec<ReasoningItemReasoningSummary>,
|
||||
#[serde(default, skip_serializing_if = "should_serialize_reasoning_content")]
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue