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
"description": "The unique identifier for the AI chat message"
10
+
},
11
+
"content": {
12
+
"type": "string",
13
+
"description": "The content of the AI chat message"
14
+
},
15
+
"createdAt": {
16
+
"type": "string",
17
+
"format": "date-time",
18
+
"description": "The timestamp when the AI chat message was created"
19
+
},
20
+
"aiChatId": {
21
+
"type": "string",
22
+
"description": "The id of the AI chat this message belongs to This is used to associate the message with a specific AI chat."
23
+
},
24
+
"role": {
25
+
"type": "string",
26
+
"enum": ["user", "assistant"],
27
+
"description": "The role of the message sender, either 'user' or 'assistant' This indicates whether the message was sent by the user or generated by the AI assistant."
"description": "The unique identifier for the AI chat."
39
+
},
40
+
"name": {
41
+
"type": "string",
42
+
"description": "The name of the AI chat. It can be used as a context information for the AI model and is also displayed in the UI."
43
+
},
44
+
"description": {
45
+
"type": "string",
46
+
"description": "The description of the AI chat in markdown format. This can be used to provide additional context or instructions for the AI model, and is also displayed in the UI."
47
+
},
48
+
"createdAt": {
49
+
"type": "string",
50
+
"format": "date-time",
51
+
"description": "The date the AI chat was created."
52
+
},
53
+
"owner": {
54
+
"type": "string",
55
+
"description": "The owner username of the AI chat."
56
+
},
57
+
"model": {
58
+
"type": "string",
59
+
"description": "The model used by the AI chat, such as 'gpt-3.5-turbo' or 'gpt-4' This is the model that will be used to generate responses in the chat."
60
+
},
61
+
"status": {
62
+
"type": "string",
63
+
"enum": ["active", "archived"],
64
+
"description": "The status of the AI chat, indicating whether it is active or archived Archived chats can no longer be used for new messages, but can still be viewed and referenced."
65
+
},
66
+
"visibility": {
67
+
"type": "string",
68
+
"enum": ["private", "public"],
69
+
"description": "Defines if the chat can be viewed by its owner only or if it's public to anyone who knows the ID."
0 commit comments