-
Notifications
You must be signed in to change notification settings - Fork 1
/
types.ts
410 lines (352 loc) Β· 8.23 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
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
export interface BingChatClientOptions {
_U_token: string;
otherHeaders?: HeadersInit;
}
type Author = "user" | "bot" | "system" | "context";
type Variant = "galileo" | "h3precise" | "h3imaginative";
type UserMessageType = "Chat" | "SearchQuery";
type BotMessageType =
| "InternalSearchQuery"
| "Context"
| "InternalSearchResult"
| "InternalLoaderMessage"
| "RenderCardRequest"
| "Disengaged";
type ContentOrigin = "cib" | "Apology" | "DeepLeo";
type MessageType = UserMessageType | BotMessageType;
interface BaseMessage {
text: string;
author: Author;
createdAt: string;
timestamp: string;
messageId: string;
offense: string;
adaptiveCards: AdaptiveCard[];
sourceAttributions: SourceAttributions[];
feedback: ResponseFeedback;
contentOrigin: ContentOrigin;
privacy: null;
messageType: MessageType;
}
export interface QueryMessage extends
Omit<
BaseMessage,
| "createdAt"
| "messageId"
| "offense"
| "adaptiveCards"
| "sourceAttributions"
| "feedback"
| "contentOrigin"
| "privacy"
> {
locale: string;
market: string;
region?: string;
location?: string;
locationHints?: LocationHint[];
inputMethod: "Keyboard";
messageType: UserMessageType;
}
interface InternalSearchQuery extends BaseMessage {
hiddenText: string;
author: "bot";
messageType: "InternalSearchQuery";
}
interface InternalSearchResult extends BaseMessage {
hiddenText: string;
author: "bot";
messageType: "InternalSearchResult";
}
interface InternalLoaderMessage extends BaseMessage {
hiddenText: string;
author: "bot";
messageType: "InternalLoaderMessage";
}
interface RenderCardRequest extends BaseMessage {
messageType: "RenderCardRequest";
}
interface DisengagedMessage extends BaseMessage {
author: "bot";
messageType: "Disengaged";
}
export interface ResponseMessage extends BaseMessage {
requestId: string;
scores: Scores[];
suggestedResponses?: SuggestedResponse[];
hiddenText?: string; // usually only where when the response got blocked because of a high offense score
}
// Only appears in the final Type2Message
interface UserMessage extends BaseMessage {
author: "user";
from: {
id: string;
name: null;
};
locale: string;
market: string;
region: string;
location: string;
locationHints: LocationHint[];
messageId: string;
requestId: string;
contentOrigin: "cib";
inputMethod?: "Keyboard";
}
export type BotMessage =
| RenderCardRequest
| InternalLoaderMessage
| InternalSearchQuery
| InternalSearchResult
| DisengagedMessage;
type Message =
| ResponseMessage
| RenderCardRequest
| InternalLoaderMessage
| InternalSearchQuery
| UserMessage
| InternalSearchResult;
export interface SydneyQueryOptions {
conversationId: string;
clientId: string;
conversationSignature: string;
invocationId: string;
messageType?: UserMessageType;
variant?: Variant;
locale?: string;
market?: string;
region?: string;
location?: {
lat: number | string;
lng: number | string;
re?: string;
};
onUpdateStatus?: OnUpdateStatus;
onMessage?: onMessage;
isStartOfSession?: boolean;
}
export type BingMessageOptions =
| Partial<SydneyQueryOptions>
| Partial<ChatRequestHubOptions>;
export interface CreateConversationResponse {
conversationId: string;
clientId: string;
conversationSignature: string;
encryptedConversationSignature: string;
result: {
value: string;
message: null;
};
}
interface Cursor {
j: string;
p: number;
}
interface MessageType1Argument {
messages: Array<Message | QueryAcknowledgement>;
requestId: string;
result: null;
cursor?: Cursor; // Cursor is emitted right before it starts to write the final response
}
interface Throttling {
maxNumUserMessagesInConversation: number;
numUserMessagesInConversation: number;
}
interface QueryAcknowledgement {
requestId: string;
throttling: Throttling;
}
interface SourceAttributions {
providerDisplayName: string;
seeMoreUrl: string;
searchQuery: string;
}
interface Scores {
component: "BotOffense";
score: number;
}
interface AdaptiveCard {
type: string;
version: string;
body: AdaptiveCardBody[];
}
interface AdaptiveCardBody {
type: string;
text: string;
wrap: boolean;
}
interface ResponseFeedback {
tag: null;
updatedOn: null;
type: string;
}
interface QueryResultItem {
messages: Message[];
firstNewMessageIndex: number;
// suggestedResponses: null;
conversationId: string;
requestId: string;
conversationExpiryTime: string;
telemetry: Telemetry;
throttling: Throttling;
result: RequestResult;
}
interface LocationHint {
country: string;
countryConfidence: number;
state: string;
city: string;
cityConfidence: number;
zipCode: string;
timeZoneOffset: number;
dma: number;
sourceType: number;
center: Coords;
regionType: number;
}
interface Coords {
latitude: number;
longitude: number;
height: null;
}
interface SuggestedResponse {
text: string;
messageId: string;
messageType: string;
contentOrigin: string;
author?: Author;
createdAt?: string;
timestamp?: string;
offense?: string;
feedback?: ResponseFeedback;
privacy?: null;
}
interface RequestResult {
value: string;
message?: string;
serviceVersion: string;
error?: string;
}
interface Telemetry {
metrics?: null;
startTime: string;
}
export interface QueryArgument {
source: "cib";
optionsSets: string[];
allowedMessageTypes: string[];
sliceIds: string[];
traceId: string;
verbosity: string;
isStartOfSession: boolean;
message: QueryMessage;
conversationSignature: string;
participant: { id: string };
conversationId: string;
}
interface LocationHint {
country: string;
state: string;
city: string;
zipcode: string;
timezoneoffset: number;
dma: number;
countryConfidence: number;
cityConfidence: number;
Center: {
Latitude: number;
Longitude: number;
};
RegionType: number;
SourceType: number;
}
interface SydneyServerMessageBase {
type: 1 | 2 | 3 | 4 | 5 | 6 | 7;
}
export interface MessageType1 extends SydneyServerMessageBase {
type: 1;
target: "update";
arguments: MessageType1Argument[];
}
export interface MessageType2 extends SydneyServerMessageBase {
type: 2;
invocationId: string;
item: QueryResultItem;
firstNewMessageIndex: number;
defaultChatName: null;
conversationId: string;
requestId: string;
conversationExpiryTime: string;
telemetry: Telemetry;
result?: RequestResult;
}
interface MessageType3 extends SydneyServerMessageBase {
type: 3;
invocationId: string;
}
export interface SydneyQuery {
arguments: QueryArgument[];
invocationId: string;
target: "chat";
type: 4;
tone: string;
}
export interface MessageType6 extends SydneyServerMessageBase {
type: 6;
}
export interface MessageType7 extends SydneyServerMessageBase {
type: 7;
error: string;
allowReconnect: boolean;
}
export type SydneyServerMessage =
| MessageType1
| MessageType2
| MessageType3
| MessageType6
| MessageType7;
export enum ChatHubStatus {
DELIVERED = "delivered",
FAILED = "failed",
FINISHED = "finished",
PENDING = "pending",
SEARCHING = "searching",
SENDING = "sending",
WRITING = "writing",
}
export type OnUpdateStatus = (update: ChatRequestStatusUpdate) => void;
export type onMessage = (sydneyMessage?: SydneyServerMessage) => void;
type onRawMessage = (event: MessageEvent) => void;
export interface ChatRequestStatusUpdate {
text: string;
status: ChatHubStatus;
}
export interface ChatRequestHubOptions {
onUpdateStatus?: OnUpdateStatus;
onMessage?: onMessage;
onRawMessage?: onRawMessage;
}
export interface BingMessageResponse {
text: string;
raw: MessageType2;
}
export type OnUpdateMessage = (lastMessage?: MessageType1) => void;
export interface BingResponseErrorOptions {
conversationId?: string;
conversationSignature?: string;
clientId?: string;
}
export interface BingConversationOptions {
conversationId?: string;
clientId?: string;
conversationSignature?: string;
userToken: string;
onUpdateMessage?: OnUpdateMessage;
otherHeaders?: HeadersInit;
}
export interface Chat {
prompt: string;
response?: string;
}
export type { BingConversation } from "./utils/BingConversation.ts";
export type { BingasaurusClient } from "./utils/BingasaurusClient.ts";