mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-13 23:11:40 +00:00
chore: regenerate lazy OpenAPI snapshot and dashboard schema types
This commit is contained in:
parent
e46d8276a8
commit
b98bd52c6c
2 changed files with 37 additions and 0 deletions
|
|
@ -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": {
|
||||
|
|
|
|||
12
ui/litellm-dashboard/src/lib/http/schema.d.ts
generated
vendored
12
ui/litellm-dashboard/src/lib/http/schema.d.ts
generated
vendored
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue