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
208 lines (184 loc) · 5.4 KB
/
Copy pathtypes.js
File metadata and controls
208 lines (184 loc) · 5.4 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
/**
* @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} [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.
*/
/**
* @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 {string} icon_url
*/
/**
* @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} FunctionDef
* @property {string} name
* @property {string} description
*/
/**
* @typedef {Object} AgentFilter
* @property {boolean} [isRouter]
* @property {boolean} [isEvaluator]
*/
/**
* @typedef {Object} AgentModel
* @property {string} id - Agent Id.
* @property {string} name - Agent name.
* @property {string} description - Agent description.
* @property {string} instruction - System prompt
* @property {boolean} disabled
* @property {boolean} is_public
* @property {string} icon_url - Icon
* @property {boolean} allow_routing
* @property {Date} created_datetime
* @property {Date} updated_datetime
* @property {AgentLlmConfig} llm_config - LLM settings.
* @property {FunctionDef[]} functions
* @property {AgentTemplate[]} templates
* @property {Object[]} responses
* @property {AgentWelcomeInfo} welcome_info - Welcome information.
*/
/**
* @typedef {Object} AgentSettings
* @property {string} dataDir
* @property {string} templateFormat
* @property {AgentLlmConfig} llmConfig - LLM settings.
*/
/**
* @typedef {Object} RouterSettings
* @property {string} agentId
* @property {string} planner
*/
/**
* @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.
*/
/**
* @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} channel - The conversation status.
* @property {string} status - The conversation status.
* @property {Object[]} states - The conversation states.
* @property {number} unread_msg_count - The unread message count.
* @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 {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 {RichContent} rich_content - Rich content
* @property {Date} created_at - The message sent time.
*/
/**
* 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
*/
// having to export an empty object here is annoying,
// but required for vscode to pass on your types.
export default {};