chore: regenerate lazy OpenAPI snapshot and dashboard schema types

This commit is contained in:
ggbond 2026-09-11 21:18:51 +08:00
parent e46d8276a8
commit b98bd52c6c
2 changed files with 37 additions and 0 deletions

View file

@ -26572,6 +26572,13 @@
"ChatCompletionReasoningItem": {
"description": "Represents an OpenAI Responses API reasoning item for round-tripping in conversation history.",
"properties": {
"content": {
"items": {
"$ref": "#/components/schemas/ChatCompletionReasoningTextBlock"
},
"title": "Content",
"type": "array"
},
"encrypted_content": {
"anyOf": [
{
@ -26624,6 +26631,24 @@
"title": "ChatCompletionReasoningSummaryTextBlock",
"type": "object"
},
"ChatCompletionReasoningTextBlock": {
"properties": {
"text": {
"title": "Text",
"type": "string"
},
"type": {
"const": "reasoning_text",
"title": "Type",
"type": "string"
}
},
"required": [
"type"
],
"title": "ChatCompletionReasoningTextBlock",
"type": "object"
},
"ChatCompletionRedactedThinkingBlock": {
"properties": {
"cache_control": {

View file

@ -25084,6 +25084,8 @@ export interface components {
* @description Represents an OpenAI Responses API reasoning item for round-tripping in conversation history.
*/
ChatCompletionReasoningItem: {
/** Content */
content?: components["schemas"]["ChatCompletionReasoningTextBlock"][];
/** Encrypted Content */
encrypted_content?: string | null;
/** Id */
@ -25106,6 +25108,16 @@ export interface components {
*/
type: "summary_text";
};
/** ChatCompletionReasoningTextBlock */
ChatCompletionReasoningTextBlock: {
/** Text */
text?: string;
/**
* Type
* @constant
*/
type: "reasoning_text";
};
/** ChatCompletionRedactedThinkingBlock */
ChatCompletionRedactedThinkingBlock: {
/** Cache Control */