|
11 | 11 | "created_at": "2025-08-05 10:49:53.265", |
12 | 12 | "tags": [], |
13 | 13 | "properties": [ |
| 14 | + { |
| 15 | + "property_id": "async_queue", |
| 16 | + "value": "true" |
| 17 | + }, |
14 | 18 | { |
15 | 19 | "property_id": "context_window", |
16 | 20 | "value": "128000" |
|
33 | 37 | ], |
34 | 38 | "schema": { |
35 | 39 | "input": { |
36 | | - "type": "object", |
37 | | - "title": "GPT_OSS_Responses", |
38 | | - "properties": { |
39 | | - "input": { |
40 | | - "anyOf": [ |
41 | | - { |
42 | | - "type": "string" |
| 40 | + "oneOf": [ |
| 41 | + { |
| 42 | + "type": "object", |
| 43 | + "title": "GPT_OSS_Responses", |
| 44 | + "properties": { |
| 45 | + "input": { |
| 46 | + "anyOf": [ |
| 47 | + { |
| 48 | + "type": "string" |
| 49 | + }, |
| 50 | + { |
| 51 | + "items": {}, |
| 52 | + "type": "array" |
| 53 | + } |
| 54 | + ], |
| 55 | + "description": "Responses API Input messages. Refer to OpenAI Responses API docs to learn more about supported content types", |
| 56 | + "title": "Input" |
43 | 57 | }, |
44 | | - { |
45 | | - "items": {}, |
46 | | - "type": "array" |
| 58 | + "reasoning": { |
| 59 | + "type": "object", |
| 60 | + "properties": { |
| 61 | + "effort": { |
| 62 | + "type": "string", |
| 63 | + "description": "Constrains effort on reasoning for reasoning models. Currently supported values are low, medium, and high. Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.", |
| 64 | + "enum": [ |
| 65 | + "low", |
| 66 | + "medium", |
| 67 | + "high" |
| 68 | + ] |
| 69 | + }, |
| 70 | + "summary": { |
| 71 | + "type": "string", |
| 72 | + "description": "A summary of the reasoning performed by the model. This can be useful for debugging and understanding the model's reasoning process. One of auto, concise, or detailed.", |
| 73 | + "enum": [ |
| 74 | + "auto", |
| 75 | + "concise", |
| 76 | + "detailed" |
| 77 | + ] |
| 78 | + } |
| 79 | + } |
47 | 80 | } |
48 | | - ], |
49 | | - "description": "Responses API Input messages. Refer to OpenAI Responses API docs to learn more about supported content types", |
50 | | - "title": "Input" |
| 81 | + }, |
| 82 | + "required": [ |
| 83 | + "input" |
| 84 | + ] |
51 | 85 | }, |
52 | | - "reasoning": { |
| 86 | + { |
53 | 87 | "type": "object", |
| 88 | + "title": "GPT_OSS_Responses_Async", |
54 | 89 | "properties": { |
55 | | - "effort": { |
56 | | - "type": "string", |
57 | | - "description": "Constrains effort on reasoning for reasoning models. Currently supported values are low, medium, and high. Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.", |
58 | | - "enum": [ |
59 | | - "low", |
60 | | - "medium", |
61 | | - "high" |
62 | | - ] |
63 | | - }, |
64 | | - "summary": { |
65 | | - "type": "string", |
66 | | - "description": "A summary of the reasoning performed by the model. This can be useful for debugging and understanding the model's reasoning process. One of auto, concise, or detailed.", |
67 | | - "enum": [ |
68 | | - "auto", |
69 | | - "concise", |
70 | | - "detailed" |
71 | | - ] |
| 90 | + "requests": { |
| 91 | + "type": "array", |
| 92 | + "items": { |
| 93 | + "type": "object", |
| 94 | + "properties": { |
| 95 | + "input": { |
| 96 | + "anyOf": [ |
| 97 | + { |
| 98 | + "type": "string" |
| 99 | + }, |
| 100 | + { |
| 101 | + "items": {}, |
| 102 | + "type": "array" |
| 103 | + } |
| 104 | + ], |
| 105 | + "description": "Responses API Input messages. Refer to OpenAI Responses API docs to learn more about supported content types", |
| 106 | + "title": "Input" |
| 107 | + }, |
| 108 | + "reasoning": { |
| 109 | + "type": "object", |
| 110 | + "properties": { |
| 111 | + "effort": { |
| 112 | + "type": "string", |
| 113 | + "description": "Constrains effort on reasoning for reasoning models. Currently supported values are low, medium, and high. Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.", |
| 114 | + "enum": [ |
| 115 | + "low", |
| 116 | + "medium", |
| 117 | + "high" |
| 118 | + ] |
| 119 | + }, |
| 120 | + "summary": { |
| 121 | + "type": "string", |
| 122 | + "description": "A summary of the reasoning performed by the model. This can be useful for debugging and understanding the model's reasoning process. One of auto, concise, or detailed.", |
| 123 | + "enum": [ |
| 124 | + "auto", |
| 125 | + "concise", |
| 126 | + "detailed" |
| 127 | + ] |
| 128 | + } |
| 129 | + } |
| 130 | + } |
| 131 | + }, |
| 132 | + "required": [ |
| 133 | + "input" |
| 134 | + ] |
| 135 | + } |
72 | 136 | } |
73 | | - } |
| 137 | + }, |
| 138 | + "required": [ |
| 139 | + "requests" |
| 140 | + ] |
74 | 141 | } |
75 | | - }, |
76 | | - "required": [ |
77 | | - "input" |
78 | 142 | ] |
79 | 143 | }, |
80 | 144 | "output": { |
|
0 commit comments