forked from transitive-bullshit/agentic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
types.ts
289 lines (239 loc) · 4.29 KB
/
types.ts
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
export type ContentType = 'text'
export type Role = 'user' | 'assistant'
/**
* https://chat.openapi.com/api/auth/session
*/
export type SessionResult = {
/**
* Authenticated user
*/
user: User
/**
* ISO date of the expiration date of the access token
*/
expires: string
/**
* The access token
*/
accessToken: string
/**
* If there was an error associated with this request
*/
error?: string | null
}
export type User = {
/**
* ID of the user
*/
id: string
/**
* Name of the user
*/
name: string
/**
* Email of the user
*/
email: string
/**
* Image of the user
*/
image: string
/**
* Picture of the user
*/
picture: string
/**
* Groups the user is in
*/
groups: string[] | []
/**
* Features the user is in
*/
features: string[] | []
}
/**
* https://chat.openapi.com/backend-api/models
*/
export type ModelsResult = {
/**
* Array of models
*/
models: Model[]
}
export type Model = {
/**
* Name of the model
*/
slug: string
/**
* Max tokens of the model
*/
max_tokens: number
/**
* Whether or not the model is special
*/
is_special: boolean
}
/**
* https://chat.openapi.com/backend-api/moderations
*/
export type ModerationsJSONBody = {
/**
* Input for the moderation decision
*/
input: string
/**
* The model to use in the decision
*/
model: AvailableModerationModels
}
export type AvailableModerationModels = 'text-moderation-playground'
/**
* https://chat.openapi.com/backend-api/moderations
*/
export type ModerationsJSONResult = {
/**
* Whether or not the input is flagged
*/
flagged: boolean
/**
* Whether or not the input is blocked
*/
blocked: boolean
/**
* The ID of the decision
*/
moderation_id: string
}
/**
* https://chat.openapi.com/backend-api/conversation
*/
export type ConversationJSONBody = {
/**
* The action to take
*/
action: string
/**
* The ID of the conversation
*/
conversation_id?: string
/**
* Prompts to provide
*/
messages: Prompt[]
/**
* The model to use
*/
model: string
/**
* The parent message ID
*/
parent_message_id: string
}
export type Prompt = {
/**
* The content of the prompt
*/
content: PromptContent
/**
* The ID of the prompt
*/
id: string
/**
* The role played in the prompt
*/
role: Role
}
export type PromptContent = {
/**
* The content type of the prompt
*/
content_type: ContentType
/**
* The parts to the prompt
*/
parts: string[]
}
/**
* https://chat.openapi.com/backend-api/conversation/message_feedback
*/
export type MessageFeedbackJSONBody = {
/**
* The ID of the conversation
*/
conversation_id: string
/**
* The message ID
*/
message_id: string
/**
* The rating
*/
rating: MessageFeedbackRating
/**
* Tags to give the rating
*/
tags?: MessageFeedbackTags[]
/**
* The text to include
*/
text?: string
}
export type MessageFeedbackTags = 'harmful' | 'false' | 'not-helpful'
export type MessageFeedbackResult = {
/**
* The message ID
*/
message_id: string
/**
* The ID of the conversation
*/
conversation_id: string
/**
* The ID of the user
*/
user_id: string
/**
* The rating
*/
rating: MessageFeedbackRating
/**
* The text the server received, including tags
*/
text?: string
}
export type MessageFeedbackRating = 'thumbsUp' | 'thumbsDown'
export type ConversationResponseEvent = {
message?: Message
conversation_id?: string
error?: string | null
}
export type Message = {
id: string
content: MessageContent
role: string
user: string | null
create_time: string | null
update_time: string | null
end_turn: null
weight: number
recipient: string
metadata: MessageMetadata
}
export type MessageContent = {
content_type: string
parts: string[]
}
export type MessageMetadata = any
export type SendMessageOptions = {
conversationId?: string
parentMessageId?: string
timeoutMs?: number
onProgress?: (partialResponse: string) => void
onConversationResponse?: (response: ConversationResponseEvent) => void
abortSignal?: AbortSignal
}
export type SendConversationMessageOptions = Omit<
SendMessageOptions,
'conversationId' | 'parentMessageId'
>