@epam/ai-dial-shared 0.47.0-dev.52 → 0.47.0-dev.54
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/index.esm.js +1 -0
- package/package.json +1 -1
- package/src/types/features.d.ts +1 -0
package/index.esm.js
CHANGED
|
@@ -24,6 +24,7 @@ var Feature;
|
|
|
24
24
|
Feature["HideTopContextMenu"] = "hide-top-context-menu";
|
|
25
25
|
Feature["DisallowChangeAgent"] = "disallow-change-agent";
|
|
26
26
|
// Conversation functions
|
|
27
|
+
Feature["CompareModeDisabled"] = "compare-mode-disabled";
|
|
27
28
|
Feature["Likes"] = "likes";
|
|
28
29
|
Feature["DislikeComment"] = "dislike-comment";
|
|
29
30
|
Feature["InputFiles"] = "input-files";
|
package/package.json
CHANGED
package/src/types/features.d.ts
CHANGED
|
@@ -19,6 +19,7 @@ export declare enum Feature {
|
|
|
19
19
|
TopChatModelSettings = "top-chat-model-settings",// Display change model settings button
|
|
20
20
|
HideTopContextMenu = "hide-top-context-menu",// Hide top context menu button
|
|
21
21
|
DisallowChangeAgent = "disallow-change-agent",// Disallow "Change agent" button
|
|
22
|
+
CompareModeDisabled = "compare-mode-disabled",// Disable compare mode (sidebar button, conversation context menu). Enabled by default
|
|
22
23
|
Likes = "likes",// Display likes
|
|
23
24
|
DislikeComment = "dislike-comment",// Enable adding comment when disliking a message
|
|
24
25
|
InputFiles = "input-files",// Allow attach files to conversation
|