@glodon-aiot/apis 3.7.0-alpha.2 → 3.8.0-alpha.4
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;
|
|
@@ -256,7 +257,7 @@ export interface IChatMessage {
|
|
|
256
257
|
isReplying?: boolean;
|
|
257
258
|
files?: ChatMessageFile[];
|
|
258
259
|
thinkingSecs?: number;
|
|
259
|
-
thinkingStatus?:
|
|
260
|
+
thinkingStatus?: 'end' | 'start';
|
|
260
261
|
reasoningContent?: string;
|
|
261
262
|
searchingStatus?: 'start' | 'end';
|
|
262
263
|
}
|