You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: openapi.json
+50Lines changed: 50 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,30 @@
19
19
"title": "ConversationRole",
20
20
"type": "string"
21
21
},
22
+
"ErrorBody": {
23
+
"additionalProperties": false,
24
+
"properties": {
25
+
"level": {
26
+
"description": "Error level: 'warning' or 'error'",
27
+
"type": "string"
28
+
},
29
+
"message": {
30
+
"description": "Error message",
31
+
"type": "string"
32
+
},
33
+
"time": {
34
+
"description": "Timestamp when the error occurred",
35
+
"format": "date-time",
36
+
"type": "string"
37
+
}
38
+
},
39
+
"required": [
40
+
"level",
41
+
"message",
42
+
"time"
43
+
],
44
+
"type": "object"
45
+
},
22
46
"ErrorDetail": {
23
47
"additionalProperties": false,
24
48
"properties": {
@@ -326,6 +350,32 @@
326
350
"description": "Each oneOf object in the array represents one possible Server Sent Events (SSE) message, serialized as UTF-8 text according to the SSE specification.",
0 commit comments