-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopen_api_spec.tmpl
652 lines (631 loc) · 19.5 KB
/
open_api_spec.tmpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
openapi: 3.0.3
info:
title: Code Interpreter REST API
version: 1.0.0
tags:
- name: Sessions
description: Functions related to session management
- name: Messages
description: Functions related to message history and input
- name: File Transfer
description: Functions related to transferring files
x-amazon-apigateway-request-validators:
basic:
validateRequestBody: true
validateRequestParameters: true
params-only:
validateRequestBody: false
validateRequestParameters: true
x-amazon-apigateway-request-validator: basic
x-amazon-apigateway-gateway-responses:
DEFAULT_4XX:
responseParameters:
gatewayresponse.header.Access-Control-Allow-Origin: '''*'''
gatewayresponse.header.Access-Control-Allow-Headers: '''*'''
gatewayresponse.header.Access-Control-Allow-Methods: '''*'''
DEFAULT_5XX:
responseParameters:
gatewayresponse.header.Access-Control-Allow-Origin: '''*'''
gatewayresponse.header.Access-Control-Allow-Headers: '''*'''
gatewayresponse.header.Access-Control-Allow-Methods: '''*'''
paths:
/api/sessions:
post:
operationId: PostSession
tags:
- Sessions
summary: Creates a new session
description: |
Creates a new session and returns the session ID. The session is associated with the currently authenticated user's user_id.
responses:
'200':
description: Successful response
headers:
Content-Type:
schema:
type: string
content:
application/json:
schema:
$ref: '#/components/schemas/Session'
examples:
New session:
value:
session_id: 1e817ec0-76bb-4116-8fbf-f95355a001a6
status: DONE
ttl: 1715839695
'400':
$ref: '#/components/responses/400'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'500':
$ref: '#/components/responses/500'
x-amazon-apigateway-request-validator: basic
x-amazon-apigateway-integration:
httpMethod: POST
uri: ${api_lambda_rest_api_invoke_arn}
responses:
default:
statusCode: '200'
passthroughBehavior: when_no_match
type: aws_proxy
get:
operationId: GetSessions
tags:
- Sessions
summary: Retrieves all sessions for a user
description: |
Retrieves all sessions associated with the currently authenticated user's user_id.
responses:
'200':
description: Successful response
headers:
Content-Type:
schema:
type: string
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Session'
examples:
User sessions:
value:
- session_id: 1e817ec0-76bb-4116-8fbf-f95355a001a6
status: DONE
ttl: 1715839695
- session_id: 4d8783c3-49cf-41d5-bf42-a666d83638a7
status: PENDING
status_message: Agent is running code
ttl: 1715835827
'400':
$ref: '#/components/responses/400'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'500':
$ref: '#/components/responses/500'
x-amazon-apigateway-request-validator: basic
x-amazon-apigateway-integration:
httpMethod: POST
uri: ${api_lambda_rest_api_invoke_arn}
responses:
default:
statusCode: '200'
passthroughBehavior: when_no_match
type: aws_proxy
/api/sessions/{session_id}:
get:
operationId: GetSession
tags:
- Sessions
summary: Retrieves a session
description: |
Retrieves a session by session ID if the user is authorized to access this session.
parameters:
- $ref: '#/components/parameters/sessionIdParam'
responses:
'200':
description: Successful response
headers:
Content-Type:
schema:
type: string
content:
application/json:
schema:
$ref: '#/components/schemas/Session'
examples:
Pending session:
value:
session_id: 1e817ec0-76bb-4116-8fbf-f95355a001a6
status: PENDING
ttl: 1715839695
'400':
$ref: '#/components/responses/400'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'500':
$ref: '#/components/responses/500'
x-amazon-apigateway-request-validator: basic
x-amazon-apigateway-integration:
httpMethod: POST
uri: ${api_lambda_rest_api_invoke_arn}
responses:
default:
statusCode: '200'
passthroughBehavior: when_no_match
requestTemplates:
application/json: |
{
"session_id": "$input.params('session_id')"
}
type: aws_proxy
delete:
operationId: DeleteSession
tags:
- Sessions
summary: Deletes a session
description: |
Deletes a session by session ID if the user is authorized to delete this session.
parameters:
- $ref: '#/components/parameters/sessionIdParam'
responses:
'200':
description: Successful response
'400':
$ref: '#/components/responses/400'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'500':
$ref: '#/components/responses/500'
x-amazon-apigateway-request-validator: basic
x-amazon-apigateway-integration:
httpMethod: POST
uri: ${api_lambda_rest_api_invoke_arn}
responses:
default:
statusCode: '200'
passthroughBehavior: when_no_match
requestTemplates:
application/json: |
{
"session_id": "$input.params('session_id')"
}
type: aws_proxy
/api/sessions/{session_id}/messages:
post:
operationId: PostMessage
tags:
- Messages
summary: Post user message to a session
description: |
Post user input to a session by session ID if the user is authorized to access this session. When posting a message, the `role` field must be set to `user` and the `content` must not be empty. All other (optional) fields of the Message schema must be omitted.
parameters:
- $ref: '#/components/parameters/sessionIdParam'
requestBody:
description: User Input
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Message'
examples:
User question:
value:
content: What are the columns in data.csv?
responses:
'200':
description: Successful response
headers:
Content-Type:
schema:
type: string
content:
application/json:
schema:
$ref: '#/components/schemas/Message'
examples:
New message:
value:
timestamp: 1715839695
role: user
content: What are the columns in data.csv?
'400':
$ref: '#/components/responses/400'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'500':
$ref: '#/components/responses/500'
x-amazon-apigateway-request-validator: basic
x-amazon-apigateway-integration:
httpMethod: POST
uri: ${api_lambda_rest_api_invoke_arn}
responses:
default:
statusCode: '200'
passthroughBehavior: when_no_match
requestTemplates:
application/json: |
{
"session_id": "$input.params('session_id')"
}
type: aws_proxy
get:
operationId: GetMessages
tags:
- Messages
summary: Get session messages
description: |
Retrieves messages associated with a session. The `from` query parameter can be used to retrieve only messages in the history after a given UTC timestamp.
parameters:
- $ref: '#/components/parameters/sessionIdParam'
- $ref: '#/components/parameters/fromParam'
responses:
'200':
description: Successful response
headers:
Content-Type:
schema:
type: string
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Message'
examples:
Message history:
value:
- timestamp: 1715839370
role: USER
internal: false
content: What are the columns in data.csv?
- timestamp: 1715839380
role: AGENT
internal: true
content: "I need to load data.csv into a DataFrame and inspect the columns."
- timestamp: 1715839695
role: AGENT
internal: false
content: The columns are x, y, and z.
'400':
$ref: '#/components/responses/400'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'500':
$ref: '#/components/responses/500'
x-amazon-apigateway-request-validator: basic
x-amazon-apigateway-integration:
httpMethod: POST
uri: ${api_lambda_rest_api_invoke_arn}
responses:
default:
statusCode: '200'
passthroughBehavior: when_no_match
requestTemplates:
application/json: |
{
"session_id": "$input.params('session_id')",
"from": "$input.params('from')"
}
type: aws_proxy
/api/sessions/{session_id}/files:
get:
operationId: ListFiles
tags:
- File Transfer
summary: List files associated with a session
description: |
List user uploaded files associated with a session.
parameters:
- $ref: '#/components/parameters/sessionIdParam'
responses:
'200':
description: Successful response
headers:
Content-Type:
schema:
type: string
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/File'
examples:
Files:
value:
- filename: data.csv
size: 1024
- filename: test.csv
size: 350
'400':
$ref: '#/components/responses/400'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'500':
$ref: '#/components/responses/500'
x-amazon-apigateway-request-validator: basic
x-amazon-apigateway-integration:
httpMethod: POST
uri: ${api_lambda_rest_api_invoke_arn}
responses:
default:
statusCode: '200'
passthroughBehavior: when_no_match
requestTemplates:
application/json: |
{
"session_id": "$input.params('session_id')",
"filename": "$input.params('filename')"
}
type: aws_proxy
/api/sessions/{session_id}/files/upload:
get:
operationId: UploadFile
tags:
- File Transfer
summary: Get parameters to upload a file
description: |
Get parameters to upload a file to the user session. The filename must be set in the corresponding query parameter.
parameters:
- $ref: '#/components/parameters/sessionIdParam'
- $ref: '#/components/parameters/filenameParam'
responses:
'200':
description: Successful response
headers:
Content-Type:
schema:
type: string
content:
application/json:
schema:
$ref: '#/components/schemas/PresignedUploadParameters'
'400':
$ref: '#/components/responses/400'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'500':
$ref: '#/components/responses/500'
x-amazon-apigateway-request-validator: basic
x-amazon-apigateway-integration:
httpMethod: POST
uri: ${api_lambda_rest_api_invoke_arn}
responses:
default:
statusCode: '200'
passthroughBehavior: when_no_match
requestTemplates:
application/json: |
{
"session_id": "$input.params('session_id')",
"filename": "$input.params('filename')"
}
type: aws_proxy
/api/sessions/{session_id}/files/download:
get:
operationId: DownloadFile
tags:
- File Transfer
summary: Get presigned URL to download a file
description: |
Get parameters to download a file from the user session. The filename must be set in the corresponding query parameter.
parameters:
- $ref: '#/components/parameters/sessionIdParam'
- $ref: '#/components/parameters/filenameParam'
responses:
'200':
description: Successful response
headers:
Content-Type:
schema:
type: string
content:
application/json:
schema:
$ref: '#/components/schemas/PresignedDownloadParameters'
'400':
$ref: '#/components/responses/400'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'500':
$ref: '#/components/responses/500'
x-amazon-apigateway-request-validator: basic
x-amazon-apigateway-integration:
httpMethod: POST
uri: ${api_lambda_rest_api_invoke_arn}
responses:
default:
statusCode: '200'
passthroughBehavior: when_no_match
requestTemplates:
application/json: |
{
"session_id": "$input.params('session_id')",
"filename": "$input.params('filename')"
}
type: aws_proxy
components:
#-------------------------------
# Reusable responses
#-------------------------------
responses:
'400':
description: Input validation failed. Check your request parameters and retry the request.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'403':
description: The request is denied because of missing access permissions.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'404':
description: The specified resource was not found.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'500':
description: An internal server error occurred.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
#-------------------------------
# Reusable parameters
#-------------------------------
parameters:
sessionIdParam:
name: session_id
in: path
description: Session ID
required: true
schema:
type: string
format: uuid
filenameParam:
name: filename
in: query
description: Filename of the file to transfer
required: true
schema:
type: string
example: data.csv
fromParam:
name: from
in: query
description: UTC timestamp from which on to retrieve history items
required: false
schema:
type: number
example: 1715839695
schemas:
Session:
required:
- session_id
- status
type: object
properties:
session_id:
type: string
description: ID of the session
format: uuid
status:
type: string
enum:
- PENDING
- DONE
- ERROR
description: Status of the session
status_message:
type: string
example: "Agent is executing code"
description: User readable status message of the session
ttl:
type: number
description: Time-to-live (TTL) for the session, indicates when the session will be auto-deleted from the backend.
example: 1715839695
Role:
type: string
description: Name of the role. System messages are not displayed to the user.
enum:
- user
- assistant
- tool
- trace
Message:
required:
- content
type: object
properties:
content:
type: string
description: Chat message content
role:
$ref: '#/components/schemas/Role'
internal:
type: boolean
description: Whether the message is internal or not. Internal messages are not displayed by default to the user.
timestamp:
type: number
description: Timestamp of when the message was created. This will be provided and added in the backend.
PresignedUploadParameters:
type: object
required:
- url
- fields
properties:
url:
type: string
format: uri
description: The URL to upload the file to.
example: https://mybucket.s3.amazonaws.com
fields:
type: object
description: The fields that need to be set on the POST request.
example: {'acl': 'public-read','key': 'mykey', 'signature': 'mysignature', 'policy': 'mybase64 encoded policy'}
PresignedDownloadParameters:
type: object
required:
- url
properties:
url:
type: string
format: uri
description: The presigned URL to download the file from.
example: https://mybucket.s3.amazonaws.com/example/output.png
File:
type: object
required:
- filename
- size
properties:
filename:
type: string
description: Name of the file
example: data.csv
size:
type: integer
description: Size of the file in bytes
example: 1024
Error:
required:
- error_code
- error_id
- message
type: object
properties:
message:
type: string
description: A user-readable error message in English language
error_code:
type: integer
description: A specific error code
format: int32
error_id:
type: string
description: An UUID identifying the error
format: uuid