generated from rochacbruno/flask-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenapi.json
1946 lines (1946 loc) Β· 58.8 KB
/
openapi.json
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
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"info": {
"description": "Welcome to the Cookgpt API documentation! This documentation provides detailed information on how to integrate with the Cookgpt API, which powers an AI-powered cooking assistance.\n\nThe API allows you to perform various actions such as user authentication, managing user information, and interacting with the AI chat functionality.\n\nThe API is organized around REST. Our API has predictable resource-oriented URLs, accepts JSON-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs.",
"title": "CookGPT",
"version": "0.8.0"
},
"tags": [
{
"name": "auth",
"description": "This section contains information about user authentication and user management."
},
{
"name": "chat",
"description": "The AI chat functionality allows users to interact with an AI-powered cooking assistant. The assistant can be used to create recipes, get cooking advice, and more.\n\nChats with the AI are organized into threads. Each thread has a unique ID that is used to identify the thread. The thread ID is used to get the chat messages in the thread, and to send messages to the thread.\n\n> Subsequent versions of the API will allow users to create new threads and interact with the AI assistant in multiple threads.\n\n---\n\nEach user has a `max_chat_cost` which is the total number of tokens that he/she is allowed to spend on chats with the AI assistant. The cost of a chat is the number of tokens used in the query and the response.\n\n> Subsequent versions of the API will allow users to purchase more tokens.\n\n### Chat Memory Optimization\nFor now, the AI's memory has not been optimized and it remembers all chats that it has had with the user. This means that the AI's memory will grow linearly as the user interact with it. This will be fixed in subsequent versions of the API."
}
],
"servers": [
{
"name": "live",
"url": "https://mkpbackend-fe1c9f5599b1.herokuapp.com"
},
{
"name": "local",
"url": "http://localhost:8000"
}
],
"paths": {
"/chat/": {
"post": {
"parameters": [
{
"in": "query",
"name": "stream",
"description": "whether to stream the response",
"schema": {
"type": "boolean",
"default": false,
"example": true
},
"required": false
}
],
"responses": {
"201": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Chat:Post:Response"
},
"example": {
"chat": {
"id": "36b51f8a-c9fa-43f8-92fa-ff6927736c10",
"content": "Okay, tell me what type of rice so I can suggest recipes",
"chat_type": "RESPONSE",
"cost": 0,
"previous_chat_id": "36b51f8a-c9fa-43f8-92fa-ff6927736c10",
"next_chat_id": "36b51f8a-c9fa-43f8-92fa-ff6927736c10",
"sent_time": "2021-01-01 00:00:00",
"thread_id": "36b51f8a-c9fa-43f8-92fa-ff6927736c10"
},
"streaming": true
}
}
},
"description": "The chatbot's response"
},
"406": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ValidationError"
}
}
},
"description": "could not validate input data"
},
"403": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPError"
}
}
},
"description": "insufficient permissions"
},
"404": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Thread:NotFound"
},
"example": {
"message": "thread not found"
}
}
},
"description": "An error when the specified thread is not found"
},
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Chat:Post:Response"
},
"example": {
"chat": {
"id": "36b51f8a-c9fa-43f8-92fa-ff6927736c10",
"content": "Okay, tell me what type of rice so I can suggest recipes",
"chat_type": "RESPONSE",
"cost": 0,
"previous_chat_id": "36b51f8a-c9fa-43f8-92fa-ff6927736c10",
"next_chat_id": "36b51f8a-c9fa-43f8-92fa-ff6927736c10",
"sent_time": "2021-01-01 00:00:00",
"thread_id": "36b51f8a-c9fa-43f8-92fa-ff6927736c10"
},
"streaming": true
}
}
},
"description": "A dummy response"
}
},
"tags": [
"chat"
],
"summary": "Send a message to the chatbot.",
"description": "Use this endpoint to send a message to the AI assistant. The message will be sent to the AI assistant and the response will be returned in the response body. The response will also be saved in the database.\n\nThe `stream` query parameter can be used to force the AI assistant to respond with a stream of messages. The `stream` query parameter can be set to `true` or `false`. If the `stream` query parameter is set to `true`, the AI assistant would respond send it's response bit by bit. If the `stream` query parameter is set to `false`, the AI assistant would send it's response all at once. If the `stream` query parameter is not specified, the AI assistant would not stream it's response.\n\nThe `streaming` field in the response body is used to determine if the AI assistant is streaming it's response. If the `streaming` field is `true`, the AI assistant is streaming it's response. If the `streaming` field is `false`, the AI assistant is not streaming it's response.\n\n> INFO: When the AI is streaming, you can read the response bit by bit as it is sent from the `/chat/stream` endpoint.\n\nIf the user does not have enough tokens to send the message, a dummy response will be returned in the response body. Neither the query nor the dummy response will not be saved in the database.\n\n> INFO: To identify a dummy response, check if the `chat.cost` field is `0`.",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Chat:Post:Body"
},
"example": {
"query": "Hi, I need a recipe for rice",
"thread_id": "36b51f8a-c9fa-43f8-92fa-ff6927736c10"
}
}
}
},
"security": [
{
"BearerAuth": []
}
]
}
},
"/chat/all": {
"get": {
"parameters": [
{
"in": "query",
"name": "thread_id",
"description": "id of thread to get chats from",
"schema": {
"type": "string",
"format": "uuid",
"example": "36b51f8a-c9fa-43f8-92fa-ff6927736c10"
},
"required": true
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Chats:Get:Response"
},
"example": {
"chats": [
{
"id": "36b51f8a-c9fa-43f8-92fa-ff6927736c10",
"content": "Okay, tell me what type of rice so I can suggest recipes",
"chat_type": "RESPONSE",
"cost": 0,
"previous_chat_id": "36b51f8a-c9fa-43f8-92fa-ff6927736c10",
"next_chat_id": "36b51f8a-c9fa-43f8-92fa-ff6927736c10",
"sent_time": "2021-01-01 00:00:00",
"thread_id": "36b51f8a-c9fa-43f8-92fa-ff6927736c10"
}
]
}
}
},
"description": "All messages in the thread"
},
"406": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ValidationError"
}
}
},
"description": "could not validate input data"
},
"403": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPError"
}
}
},
"description": "insufficient permissions"
},
"404": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Thread:NotFound"
},
"example": {
"message": "thread not found"
}
}
},
"description": "An error when the specified thread is not found"
}
},
"tags": [
"chat"
],
"summary": "Get all messages in a thread.",
"description": "Use this endpoint to get a list of all messages exchanged between the user and the ai in a thread. The chats are sorted in descending order of the last message sent in the thread.",
"security": [
{
"BearerAuth": []
}
]
},
"delete": {
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Chats:Delete:Response"
},
"example": {
"message": "chat deleted"
}
}
},
"description": "Success message"
},
"406": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ValidationError"
}
}
},
"description": "could not validate input data"
},
"403": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPError"
}
}
},
"description": "insufficient permissions"
}
},
"tags": [
"chat"
],
"summary": "Delete all messages in a thread.",
"description": "Use this endpoint to delete all chats in the thread. **This action cannot be undone**.",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Chats:Delete:Body"
},
"example": {
"thread_id": "36b51f8a-c9fa-43f8-92fa-ff6927736c10"
}
}
}
},
"security": [
{
"BearerAuth": []
}
]
}
},
"/auth/user": {
"get": {
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/User:Info:Response"
},
"example": {
"id": "36b51f8a-c9fa-43f8-92fa-ff6927736c10",
"user_type": "COOK",
"first_name": "John",
"last_name": "Doe",
"username": "johndoe",
"email": "johndoe@example.com",
"profile_picture": "https://example.com/profile.jpg",
"max_chat_cost": 4000,
"total_chat_cost": 1000
}
}
},
"description": "User information"
},
"403": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPError"
}
}
},
"description": "insufficient permissions"
}
},
"tags": [
"user"
],
"summary": "Get user's information",
"description": "Get all information about a user.",
"security": [
{
"BearerAuth": []
}
]
},
"patch": {
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/User:Update:Response"
},
"example": {
"message": "Successfully updated user"
}
}
},
"description": "Success message after modifying user info"
},
"406": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ValidationError"
}
}
},
"description": "could not validate input data"
},
"403": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPError"
}
}
},
"description": "insufficient permissions"
},
"422": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/User:Update:Error"
},
"example": {
"message": "email is taken"
}
}
},
"description": "Error while updating user"
}
},
"tags": [
"user"
],
"summary": "Update user's information",
"description": "Update a user's information. Each of the fields in the request body is optional. Only the fields that are specified will be updated.",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/User:Update:Body"
},
"example": {
"first_name": "John",
"last_name": "Doe",
"username": "johndoe",
"email": "johndoe@example.com",
"password": "Password123!"
}
}
}
},
"security": [
{
"BearerAuth": []
}
]
},
"delete": {
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/User:Delete:Response"
},
"example": {
"message": "Successfully deleted"
}
}
},
"description": "Success message after deletion of user"
},
"403": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPError"
}
}
},
"description": "insufficient permissions"
},
"422": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/User:Delete:Error"
},
"example": {
"message": "Cannot delete user"
}
}
},
"description": "Error while deleting user"
}
},
"tags": [
"user"
],
"summary": "Delete a user",
"description": "Delete a user's account. **This action cannot be undone**.",
"security": [
{
"BearerAuth": []
}
]
}
},
"/auth/login": {
"post": {
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Auth:Login:Response"
},
"example": {
"message": "Successfully logged in",
"auth_info": {
"user_id": "36b51f8a-c9fa-43f8-92fa-ff6927736c10",
"user_name": "John Doe",
"atoken": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9...",
"atoken_expiry": "2021-01-01 00:00:00",
"rtoken": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9...",
"rtoken_expiry": "2021-01-01 00:00:00",
"user_type": "COOK",
"auth_type": "Bearer"
}
}
}
},
"description": "Authentication info"
},
"406": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ValidationError"
}
}
},
"description": "could not validate input data"
},
"401": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Auth:Login:Unauthorized"
},
"example": {
"message": "Cannot authenticate"
}
}
},
"description": "Error message if password is incorrect"
},
"404": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Auth:Login:NotFound"
},
"example": {
"message": "User does not exist"
}
}
},
"description": "Error message if user does not exist"
}
},
"tags": [
"auth"
],
"summary": "Log a user into the system.",
"description": "Use this endpoint to authenticate a user and get authentication info. This endpoint returns an access token and a refresh token. The access token is used to authenticate the user for a limited time. The refresh token is used to get a new access token when the old one expires via the `/auth/refresh` endpoint.\n\nThe expiry time of both tokens are also returned. If the refresh token expires, the user will have to login again. Use the expiry to check and refresh the access token before it expires.\n\nThe access token should be sent in the **Authorization** header as a `Bearer` token for all requests that require authentication.\n\nThe `auth_info.user_type` field is used to determine the type of user that is logged in. This can be used to determine the permissions of the user.",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Auth:Login:Body"
},
"example": {
"login": "johndoe",
"password": "Password123!"
}
}
}
}
}
},
"/auth/logout": {
"post": {
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Auth:Logout:Response"
},
"example": {
"message": "Logged out user"
}
}
},
"description": "Success message"
},
"403": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPError"
}
}
},
"description": "insufficient permissions"
}
},
"tags": [
"auth"
],
"summary": "Log a user out of the system.",
"description": "Use this endpoint to logout a user. This will invalidate the user's refresh token and access token. The user will have to login again to get a new authentication info.",
"security": [
{
"BearerAuth": []
}
]
}
},
"/auth/signup": {
"post": {
"parameters": [],
"responses": {
"201": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Auth:Signup:Response"
},
"example": {
"message": "Successfully signed up",
"user": {
"id": "36b51f8a-c9fa-43f8-92fa-ff6927736c10",
"user_type": "COOK",
"first_name": "John",
"last_name": "Doe",
"username": "johndoe",
"email": "johndoe@example.com",
"profile_picture": "https://example.com/profile.jpg",
"max_chat_cost": 4000,
"total_chat_cost": 1000
}
}
}
},
"description": "Success message"
},
"406": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ValidationError"
}
}
},
"description": "could not validate input data"
},
"422": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Auth:Signup:Error"
},
"example": {
"message": "email is taken"
}
}
},
"description": "Error message while creating user"
}
},
"tags": [
"auth"
],
"summary": "Signup a new user.",
"description": "Use this endpoint to register a new user. If an error occurs, the error message will be returned in the response body.",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Auth:Signup:Body"
},
"example": {
"first_name": "John",
"last_name": "Doe",
"username": "johndoe",
"email": "johndoe@example.com",
"password": "Password123!"
}
}
}
}
}
},
"/chat/thread": {
"post": {
"parameters": [],
"responses": {
"201": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Thread:Post:Response"
},
"example": {
"message": "thread created",
"thread": {
"id": "36b51f8a-c9fa-43f8-92fa-ff6927736c10",
"chat_count": 2,
"cost": 220
}
}
}
},
"description": "Successful response"
},
"406": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ValidationError"
}
}
},
"description": "could not validate input data"
},
"403": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPError"
}
}
},
"description": "insufficient permissions"
}
},
"tags": [
"thread"
],
"summary": "Create a new thread.",
"description": "You can optionally supply the title of the thread to create by supplying the `title` field in the body of the request",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Thread:Post:Body"
},
"example": {
"title": "Jollof Rice Recipe"
}
}
}
},
"security": [
{
"BearerAuth": []
}
]
}
},
"/auth/refresh": {
"post": {
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Auth:Refresh:Response"
},
"example": {
"message": "Refreshed access token",
"auth_info": {
"user_id": "36b51f8a-c9fa-43f8-92fa-ff6927736c10",
"user_name": "John Doe",
"atoken": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9...",
"atoken_expiry": "2021-01-01 00:00:00",
"rtoken": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9...",
"rtoken_expiry": "2021-01-01 00:00:00",
"user_type": "COOK",
"auth_type": "Bearer"
}
}
}
},
"description": "Authentication info"
},
"403": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPError"
}
}
},
"description": "insufficient permissions"
}
},
"tags": [
"auth"
],
"summary": "Refresh the access token.",
"description": "Use this endpoint to refresh an access token. The access token is used to authenticate the user for a limited time. The refresh token is used to get a new access token when the old one expires. \n\nThe refresh token should be sent in the **Authorization** header as a `Bearer` token for all requests that require authentication.\n\nThe output of this endpoint is similar to the `/auth/login` endpoint.",
"security": [
{
"BearerAuth": []
}
]
}
},
"/chat/threads": {
"get": {
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Threads:Get:Response"
},
"example": {
"threads": [
{
"id": "36b51f8a-c9fa-43f8-92fa-ff6927736c10",
"chat_count": 2,
"cost": 220
},
{
"id": "36b51f8a-c9fa-43f8-92fa-ff6927736c10",
"chat_count": 2,
"cost": 220
}
]
}
}
},
"description": "Successful response"
},
"403": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPError"
}
}
},
"description": "insufficient permissions"
}
},
"tags": [
"thread"
],
"summary": "Get all threads",
"security": [
{
"BearerAuth": []
}
]
},
"delete": {
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Threads:Delete:Response"
}
}
},
"description": "Successful response"
},
"403": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPError"
}
}
},
"description": "insufficient permissions"
}
},
"tags": [
"thread"
],
"summary": "Delete all threads",
"security": [
{
"BearerAuth": []
}
]
}
},
"/chat/{chat_id}": {
"get": {
"parameters": [
{
"in": "path",
"name": "chat_id",
"schema": {
"type": "string"
},
"required": true
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Chat:Get:Response"
},
"example": {
"id": "36b51f8a-c9fa-43f8-92fa-ff6927736c10",
"content": "Okay, tell me what type of rice so I can suggest recipes",
"chat_type": "RESPONSE",
"cost": 0,
"previous_chat_id": "36b51f8a-c9fa-43f8-92fa-ff6927736c10",
"next_chat_id": "36b51f8a-c9fa-43f8-92fa-ff6927736c10",
"sent_time": "2021-01-01 00:00:00",
"thread_id": "36b51f8a-c9fa-43f8-92fa-ff6927736c10"
}
}
},
"description": "A single chat"
},
"403": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPError"
}
}
},
"description": "insufficient permissions"
},
"404": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPError"
}
}
},
"description": "Not found"
}
},
"tags": [
"chat"
],
"summary": "Get a single chat from a thread.",
"description": "Use this endpoint to get a specific chat in the thread. You need to specify the chat ID in the URL.",
"security": [
{
"BearerAuth": []
}
]
},
"delete": {
"parameters": [
{
"in": "path",
"name": "chat_id",
"schema": {
"type": "string"
},
"required": true
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Chat:Delete:Response"
},
"example": {
"message": "chat deleted"
}
}
},
"description": "Success message"
},
"403": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPError"
}
}
},
"description": "insufficient permissions"
},
"404": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPError"
}
}
},
"description": "Not found"
}
},
"tags": [
"chat"
],
"summary": "Delete a single chat from a thread.",
"description": "Use this endpoint to delete a specific chat in the thread. **This action cannot be undone**. You need to specify the chat ID in the URL.",
"security": [
{
"BearerAuth": []
}
]
}
},
"/chat/stream/{chat_id}": {
"get": {
"parameters": [
{
"in": "path",
"name": "chat_id",
"schema": {