@epam/ai-dial-shared 0.39.0-rc.12 → 0.39.0-rc.13
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 -4
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;
|
|
@@ -139,11 +141,13 @@ export interface Conversation extends ShareEntity, ConversationInfo {
|
|
|
139
141
|
messages: Message[];
|
|
140
142
|
prompt: string;
|
|
141
143
|
temperature: number;
|
|
144
|
+
/**
|
|
145
|
+
* @deprecated but required by core validation
|
|
146
|
+
*/
|
|
147
|
+
selectedAddons?: string[];
|
|
142
148
|
reference?: string;
|
|
143
149
|
replay?: Replay;
|
|
144
150
|
playback?: Playback;
|
|
145
|
-
selectedAddons: string[];
|
|
146
|
-
assistantModelId?: string;
|
|
147
151
|
isMessageStreaming?: boolean;
|
|
148
152
|
customViewState?: Record<string, unknown>;
|
|
149
153
|
}
|