@epam/ai-dial-shared 0.45.0-rc.4 → 0.45.0-rc.41
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
CHANGED
|
@@ -63,6 +63,7 @@ var Feature;
|
|
|
63
63
|
Feature["HideUserMenu"] = "hide-user-menu";
|
|
64
64
|
// Applications
|
|
65
65
|
Feature["CustomApplications"] = "custom-applications";
|
|
66
|
+
Feature["HideCustomAppCreation"] = "hide-custom-app-creation";
|
|
66
67
|
Feature["CodeApps"] = "code-apps";
|
|
67
68
|
Feature["CodeInterpreter"] = "code-interpreter";
|
|
68
69
|
// Marketplace
|
|
@@ -70,6 +71,8 @@ var Feature;
|
|
|
70
71
|
Feature["MarketplaceTableView"] = "marketplace-table-view";
|
|
71
72
|
//Toolsets
|
|
72
73
|
Feature["Toolsets"] = "toolsets";
|
|
74
|
+
// Voice input
|
|
75
|
+
Feature["VoiceInput"] = "voice-input";
|
|
73
76
|
})(Feature || (Feature = {}));
|
|
74
77
|
|
|
75
78
|
var Role;
|
package/package.json
CHANGED
package/src/types/chat.d.ts
CHANGED
|
@@ -115,6 +115,7 @@ export interface FolderInterface extends ShareEntity {
|
|
|
115
115
|
type: FeatureType;
|
|
116
116
|
temporary?: boolean;
|
|
117
117
|
serverSynced?: boolean;
|
|
118
|
+
isRootSharedItem?: boolean;
|
|
118
119
|
}
|
|
119
120
|
export interface TemporaryFolderInterface extends Omit<FolderInterface, 'type'> {
|
|
120
121
|
temporary: true;
|
package/src/types/features.d.ts
CHANGED
|
@@ -21,7 +21,7 @@ export declare enum Feature {
|
|
|
21
21
|
InputFiles = "input-files",// Allow attach files to conversation
|
|
22
22
|
InputLinks = "input-links",// Allow attach links to conversation
|
|
23
23
|
MessageTemplates = "message-templates",// message templates
|
|
24
|
-
LiveChatInteraction = "live-chat-interaction"
|
|
24
|
+
LiveChatInteraction = "live-chat-interaction",// Enable interactive tool login flow during chat completion when agent tools are logged out
|
|
25
25
|
EditLastAssistantContent = "edit-last-assistant-message",// allow edit last assistant message only
|
|
26
26
|
EditAllAssistantContent = "edit-all-assistant-message",// allow edit all assistant messages
|
|
27
27
|
HideEditUserMessage = "hide-edit-user-message",// Hide editing button of user message
|
|
@@ -45,11 +45,13 @@ export declare enum Feature {
|
|
|
45
45
|
CustomLogo = "custom-logo",// Enable setting for custom logo feature
|
|
46
46
|
HideUserMenu = "hide-user-menu",// Hide user menu button from top header
|
|
47
47
|
CustomApplications = "custom-applications",// Enable creating of applications ('Add app' button/menu)
|
|
48
|
+
HideCustomAppCreation = "hide-custom-app-creation",// Hide "Custom app" option in 'Add app' button/menu
|
|
48
49
|
CodeApps = "code-apps",// Enable creating of Code apps (into the 'Add app' menu)
|
|
49
50
|
CodeInterpreter = "code-interpreter",// Enable Code Interpreter feature
|
|
50
51
|
Marketplace = "marketplace",// Enable Marketplace
|
|
51
52
|
MarketplaceTableView = "marketplace-table-view",// Enable table view in Marketplace
|
|
52
|
-
Toolsets = "toolsets"
|
|
53
|
+
Toolsets = "toolsets",//Enable toolsets
|
|
54
|
+
VoiceInput = "voice-input"
|
|
53
55
|
}
|
|
54
56
|
export interface FeatureData {
|
|
55
57
|
description?: string;
|