@epam/ai-dial-shared 0.39.0-rc.2 → 0.39.0-rc.20
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.
- package/package.json +1 -1
- package/src/types/chat.d.ts +8 -5
package/package.json
CHANGED
package/src/types/chat.d.ts
CHANGED
|
@@ -31,8 +31,10 @@ export declare enum LikeState {
|
|
|
31
31
|
export interface MessageSettings {
|
|
32
32
|
prompt: string;
|
|
33
33
|
temperature: number;
|
|
34
|
-
|
|
35
|
-
|
|
34
|
+
/**
|
|
35
|
+
* @deprecated but required by core validation
|
|
36
|
+
*/
|
|
37
|
+
selectedAddons?: string[];
|
|
36
38
|
}
|
|
37
39
|
export interface ConversationEntityModel {
|
|
38
40
|
id: string;
|
|
@@ -111,7 +113,6 @@ export interface FolderInterface extends ShareEntity {
|
|
|
111
113
|
type: FeatureType;
|
|
112
114
|
temporary?: boolean;
|
|
113
115
|
serverSynced?: boolean;
|
|
114
|
-
isPublicationFolder?: boolean;
|
|
115
116
|
}
|
|
116
117
|
export interface TemporaryFolderInterface extends Omit<FolderInterface, 'type'> {
|
|
117
118
|
temporary: true;
|
|
@@ -140,11 +141,13 @@ export interface Conversation extends ShareEntity, ConversationInfo {
|
|
|
140
141
|
messages: Message[];
|
|
141
142
|
prompt: string;
|
|
142
143
|
temperature: number;
|
|
144
|
+
/**
|
|
145
|
+
* @deprecated but required by core validation
|
|
146
|
+
*/
|
|
147
|
+
selectedAddons?: string[];
|
|
143
148
|
reference?: string;
|
|
144
149
|
replay?: Replay;
|
|
145
150
|
playback?: Playback;
|
|
146
|
-
selectedAddons: string[];
|
|
147
|
-
assistantModelId?: string;
|
|
148
151
|
isMessageStreaming?: boolean;
|
|
149
152
|
customViewState?: Record<string, unknown>;
|
|
150
153
|
}
|