forked from SciSharp/BotSharp-UI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.js
More file actions
404 lines (355 loc) · 10.7 KB
/
Copy pathtypes.js
File metadata and controls
404 lines (355 loc) · 10.7 KB
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
/**
* @typedef {Object} UserModel
* @property {string} id - The user id.
* @property {string} [user_name] - User name
* @property {string} [first_name] - The user first name.
* @property {string} [last_name] - The user last name.
* @property {string} [full_name] - The user full name.
* @property {string} [email] - The user email.
* @property {string} source - Account source.
* @property {string} [external_id] - The user external id.
* @property {string} [create_date] - The user create date.
* @property {string} [update_date] - The user update date.
* @property {string} [role] - The user role.
* @property {string} [avatar] - The user avatar.
* @property {string} [color]
* @property {string} [token]
*/
/**
* @typedef {Object} Pagination
* @property {number} page - The plugin full name.
* @property {number} size - The plugin name.
* @property {number} count - Row count.
*/
/**
* @typedef {Object} KeyValuePair
* @property {string} key - The key.
* @property {string} value - The value.
*/
/**
* @typedef {Object} IdName
* @property {string} id - The id.
* @property {string} name - The name.
*/
/**
* @template T
* @typedef {Object} PagedItems<T>
* @property {number} count - Row count.
* @property {T[]} items - Items.
*/
/**
* @typedef {Object} PluginDefModel
* @property {string} id - The plugin full name.
* @property {string} name - The plugin name.
* @property {string} description - The plugin description.
* @property {string} assembly - The plugin assembly.
* @property {boolean} is_core
* @property {string} icon_url
* @property {string} [settings_name]
* @property {string[]} agent_ids
* @property {boolean} enabled
*/
/**
* @typedef {Object} PluginMenuDefModel
* @property {string} label
* @property {string} icon
* @property {string} link
* @property {boolean} isHeader
*/
/**
* @typedef {Object} PluginFilter
* @property {Pagination} pager - Pagination
*/
/**
* @typedef {Object} AgentWelcomeInfo
* @property {string[]} messages - The welcome messages in Rich content format.
*/
/**
* @typedef {Object} AgentTemplate
* @property {string} name
* @property {string} content
*/
/**
* @typedef {Object} AgentLlmConfig
* @property {boolean} is_inherit - Inherited from default Agent settings
* @property {string} provider
* @property {string} model
*/
/**
* @typedef {Object} LlmModelSetting
* @property {string} name
* @property {string} type
*/
/**
* @typedef {Object} FunctionDef
* @property {string} name
* @property {string} description
*/
/**
* @typedef {Object} AgentFilter
* @property {Pagination} pager - Pagination
* @property {string} [type]
* @property {boolean} [isPublic]
* @property {boolean} [disabled]
* @property {string[]} [agentIds]
*/
/**
* @typedef {Object} AgentModel
* @property {string} id - Agent Id.
* @property {string} name - Agent name.
* @property {string} description - Agent description.
* @property {string} type - Agent type
* @property {string} instruction - System prompt
* @property {boolean} disabled
* @property {boolean} is_public
* @property {boolean} is_host
* @property {string} icon_url - Icon
* @property {string[]} profiles - The agent profiles.
* @property {Date} created_datetime
* @property {Date} updated_datetime
* @property {AgentLlmConfig} llm_config - LLM settings.
* @property {PluginDefModel} plugin
* @property {FunctionDef[]} functions
* @property {AgentTemplate[]} templates
* @property {Object[]} responses
* @property {RoutingRule[]} routing_rules
* @property {AgentWelcomeInfo} welcome_info - Welcome information.
*/
/**
* @typedef {Object} AgentSettings
* @property {string} dataDir
* @property {string} templateFormat
* @property {AgentLlmConfig} llmConfig - LLM settings.
*/
/**
* @typedef {Object} AgentTaskFilter
* @property {Pagination} pager - Pagination
* @property {string} [agentId] - The agent id.
*/
/**
* @typedef {Object} AgentTaskModel
* @property {string} id - Task id.
* @property {string} name - Task name.
* @property {string} description - Description.
* @property {string} content - Task detail.
* @property {boolean} enabled
* @property {Date} created_datetime
* @property {Date} updated_datetime
* @property {string} agent_id - Description.
* @property {string} agent_name - Task detail.
* @property {string} direct_agent_id - Run task directly in this agent.
*/
/**
* @typedef {Object} InstructMessageModel
* @property {string} [instruction] - User provided prompt instead of predefined template.
* @property {string} [template] - The template name.
*/
/**
* @typedef {Object} RoutingRule
* @property {string} type
* @property {string} field
* @property {string} description
* @property {string} fieldType
* @property {boolean} required
* @property {string} redirectTo
* @property {string?} [redirectToAgentName]
*/
/**
* @typedef {Object} RouterSettings
* @property {string} planner
*/
/**
* @typedef {Object} MessageConfig
* @property {string} [taskId] - Optional task id.
*/
/**
* @typedef {Object} ConversationFilter
* @property {Pagination} pager - Pagination
* @property {string?} [agentId] - The agent id.
* @property {string?} [channel] - The conversation channel.
* @property {string?} [status] - The conversation status.
* @property {string?} [taskId] - The task id.
* @property {KeyValuePair[]} [states] - The conversation status.
*/
/**
* @typedef {Object} ConversationModel
* @property {string} id - The conversation id.
* @property {string} title - The conversation title.
* @property {UserModel} user - The conversation initializer.
* @property {string} agent_id - The conversation agent id.
* @property {string} agent_name - The conversation entry agent name.
* @property {string} channel - The conversation status.
* @property {string} [task_id] - Optional task id.
* @property {string} status - The conversation status.
* @property {Object[]} states - The conversation states.
* @property {Date} updated_time - The conversation updated time.
* @property {Date} created_time - The conversation created time.
*/
/**
* @interface
* @class
* @classdesc A basic rich content interface.
*/
function IRichContent() {}
/**
* The type of the rich content.
*
* @name rich_type
* @type {string}
* @instance
*/
IRichContent.prototype.rich_type;
/**
* The text of the rich content.
*
* @name text
* @type {string}
* @instance
*/
IRichContent.prototype.text;
/**
* @typedef {Object} TextMessage
* @property {string} text
* @property {string} rich_type
*/
/**
* @typedef {Object} QuickReplyElement
* @property {string} content_type
* @property {string} title
* @property {string} payload
* @property {string} image_url
*/
/**
* @typedef {Object} QuickReplyMessage
* @property {string} text
* @property {string} rich_type
* @property {QuickReplyElement[]} quick_replies
*/
/**
* @typedef {Object} RichContent
* @property {string} messaging_type
* @property {boolean} fill_postback
* @property {string} editor
* @property {string?} [editor_attributes]
* @property {IRichContent} message
*/
/**
* @typedef {Object} ChatResponseModel
* @property {string} conversation_id - The conversation id.
* @property {UserModel} sender - The message sender.
* @property {string} message_id - The message id.
* @property {string} text - The message content.
* @property {string} function - The function name.
* @property {RichContent} rich_content - Rich content.
* @property {string} data - The message data.
* @property {Date} created_at - The message sent time.
*/
/**
* @typedef {Object} ConversationContentLogModel
* @property {string} conversation_id - The conversation id.
* @property {string} message_id - The message id.
* @property {string} name - The sender name.
* @property {string} agent_id = The agent id.
* @property {string} role - The sender role.
* @property {string} source - The log source.
* @property {string} content - The log content.
* @property {Date} created_at - The log sent time.
*/
/**
* @typedef {Object} ConversationStateLogModel
* @property {string} conversation_id - The conversation id.
* @property {string} message_id - The message id.
* @property {Object} states - The states content.
* @property {Date} created_at - The states sent time.
*/
/**
* Conversation states added by user
*
* @typedef {Object} UserStateDetailModel
* @property {{data: string, isValid: boolean}} key - The state key.
* @property {{data: string, isValid: boolean}} value - The state value.
*/
/**
* Conversation states added by user
*
* @typedef {Object} ConversationUserStateModel
* @property {string} conversationId - The conversation id.
* @property {UserStateDetailModel[]} states - The states added by user.
*/
/**
* Conversation sender action
*
* @typedef {Object} ConversationSenderActionModel
* @property {string} conversation_id - The conversation id.
* @property {number} sender_action - The sender action.
*/
/**
* Conversation message deleted
*
* @typedef {Object} ConversationMessageDeleteModel
* @property {string} conversation_id - The conversation id.
* @property {string} message_id - The message id.
*/
/**
* Conversation postback
*
* @typedef {Object} Postback
* @property {string?} functionName - The function name.
* @property {string?} payload - The payload.
* @property {string?} parentId - The parent message id.
*/
/**
* Conversation send message data
*
* @typedef {Object} MessageData
* @property {string?} [truncateMsgId] - The message id to truncate.
* @property {string[]?} [states] - The states input by user.
* @property {Postback?} [postback] - The parent message id.
*/
/**
* Invoked when a new conersation is created.
* This callback type is called `requestCallback` and is displayed as a global symbol.
*
* @callback OnConversationInitialized
* @param {ConversationModel} conversation
*/
/**
* Invoked when message is received form chatHub.
* This callback type is called `requestCallback` and is displayed as a global symbol.
*
* @callback OnMessageReceived
* @param {ChatResponseModel} message
*/
/**
* Invoked when speech to text is detected.
*
* @callback OnSpeechToTextDetected
* @param {string} text
*/
/**
* Conversation content log
*
* @callback OnConversationContentLogReceived
* @param {ConversationContentLogModel} log
*/
/**
* Conversation state log
*
* @callback OnConversationStateLogGenerated
* @param {ConversationStateLogModel} log
*/
/**
* Conversation sender action
*
* @callback OnSenderActionGenerated
* @param {ConversationSenderActionModel} data
*/
/**
* Conversation message deleted
*
* @callback OnConversationMessageDeleted
* @param {ConversationMessageDeleteModel} data
*/
// having to export an empty object here is annoying,
// but required for vscode to pass on your types.
export default {};