@glodon-aiot/apis 3.7.0-alpha.3 → 3.9.0-alpha.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -19,6 +19,7 @@ export interface IKnowledge {
|
|
|
19
19
|
usedType: number;
|
|
20
20
|
dataFormat: IDataFormat[];
|
|
21
21
|
nickname: string;
|
|
22
|
+
fileIds?: string[];
|
|
22
23
|
}
|
|
23
24
|
export interface IKnowledgeParam {
|
|
24
25
|
name: string;
|
|
@@ -128,6 +129,8 @@ export interface ISession {
|
|
|
128
129
|
}
|
|
129
130
|
export interface SessionQueryParams {
|
|
130
131
|
order: string;
|
|
132
|
+
pageSize?: number;
|
|
133
|
+
beforeTime?: string;
|
|
131
134
|
}
|
|
132
135
|
export interface ISessionParam {
|
|
133
136
|
name?: string;
|
|
@@ -256,7 +259,7 @@ export interface IChatMessage {
|
|
|
256
259
|
isReplying?: boolean;
|
|
257
260
|
files?: ChatMessageFile[];
|
|
258
261
|
thinkingSecs?: number;
|
|
259
|
-
thinkingStatus?:
|
|
262
|
+
thinkingStatus?: 'end' | 'start';
|
|
260
263
|
reasoningContent?: string;
|
|
261
264
|
searchingStatus?: 'start' | 'end';
|
|
262
265
|
}
|