@iblai/mcp 1.4.0 → 1.4.2
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"web-utils.d.ts","sourceRoot":"","sources":["../../src/resources/web-utils.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,QAAQ;;;;;;
|
|
1
|
+
{"version":3,"file":"web-utils.d.ts","sourceRoot":"","sources":["../../src/resources/web-utils.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,QAAQ;;;;;;CA0RpB,CAAC"}
|
|
@@ -178,6 +178,7 @@ if (isMentorInappropriateContentEnabled()) {
|
|
|
178
178
|
**Tenant Metadata Config (MentorAI):**
|
|
179
179
|
- \\\`show_help\\\` (boolean, default: true) — Display help center link
|
|
180
180
|
- \\\`accessibility_menu\\\` (boolean, default: false) — Display accessibility menu
|
|
181
|
+
- \\\`persistent_chat_input_label\\\` (boolean, default: false) — Show a visible, persistent label above the chat input (a11y: label remains screen-reader-only when off)
|
|
181
182
|
- \\\`mentor_include_community_mentors\\\` (boolean, default: true) — Allow community mentors
|
|
182
183
|
- \\\`mentor_report_inappropriate_content\\\` (boolean, default: true) — Allow users to report inappropriate content
|
|
183
184
|
- \\\`help_center_url\\\` (string, default: "https://docs.ibl.ai") — Help center URL
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"web-utils.js","sourceRoot":"","sources":["../../src/resources/web-utils.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,QAAQ,GAAG;IACtB,GAAG,EAAE,0BAA0B;IAC/B,IAAI,EAAE,mBAAmB;IACzB,WAAW,EAAE,8CAA8C;IAC3D,QAAQ,EAAE,eAAe;IACzB,OAAO,EAAE
|
|
1
|
+
{"version":3,"file":"web-utils.js","sourceRoot":"","sources":["../../src/resources/web-utils.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,QAAQ,GAAG;IACtB,GAAG,EAAE,0BAA0B;IAC/B,IAAI,EAAE,mBAAmB;IACzB,WAAW,EAAE,8CAA8C;IAC3D,QAAQ,EAAE,eAAe;IACzB,OAAO,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoRV;CACA,CAAC"}
|
|
@@ -2669,8 +2669,8 @@ interface AgentSettingsContextValue {
|
|
|
2669
2669
|
enableRBAC={config.enableRBAC()}
|
|
2670
2670
|
executeGatedAction={(fn) => executeWithTrialCheck(fn)}
|
|
2671
2671
|
>
|
|
2672
|
-
<
|
|
2673
|
-
<
|
|
2672
|
+
<AgentSettingsTab ... />
|
|
2673
|
+
<AgentLLMTab ... />
|
|
2674
2674
|
</AgentSettingsProvider>
|
|
2675
2675
|
\`\`\`
|
|
2676
2676
|
|
|
@@ -2679,15 +2679,15 @@ The \`useAgentSettings()\` hook is also exported for building custom tabs that r
|
|
|
2679
2679
|
> **Import from \`@iblai/iblai-js/web-containers/next\`** — requires Next.js
|
|
2680
2680
|
|
|
2681
2681
|
**File Location**: \`packages/web-containers/src/components/modals/edit-mentor-modal/agent-settings-context.tsx\``,
|
|
2682
|
-
|
|
2682
|
+
AgentSettingsTab: `# AgentSettingsTab Component
|
|
2683
2683
|
|
|
2684
2684
|
Agent/mentor settings form with name, description, category, visibility, toggles, image upload, and copy/delete sub-modals. Reads identity from AgentSettingsProvider context — must be wrapped by it.
|
|
2685
2685
|
|
|
2686
2686
|
\`\`\`typescript
|
|
2687
|
-
import {
|
|
2688
|
-
import type {
|
|
2687
|
+
import { AgentSettingsTab } from '@iblai/iblai-js/web-containers/next';
|
|
2688
|
+
import type { AgentSettingsTabProps, DeepPartial, SettingsTabLabels } from '@iblai/iblai-js/web-containers/next';
|
|
2689
2689
|
|
|
2690
|
-
interface
|
|
2690
|
+
interface AgentSettingsTabProps {
|
|
2691
2691
|
onSettingsSaved?: (mentor: unknown) => void;
|
|
2692
2692
|
onMentorDeleted?: (deletedMentorId: string) => void;
|
|
2693
2693
|
tenants: CopyMentorTenant[];
|
|
@@ -2701,7 +2701,7 @@ interface SettingsTabProps {
|
|
|
2701
2701
|
}
|
|
2702
2702
|
|
|
2703
2703
|
// With the default "agent" labels:
|
|
2704
|
-
<
|
|
2704
|
+
<AgentSettingsTab
|
|
2705
2705
|
tenants={tenants}
|
|
2706
2706
|
onMentorDeleted={handleDelete}
|
|
2707
2707
|
onMentorCopied={handleCopy}
|
|
@@ -2710,7 +2710,7 @@ interface SettingsTabProps {
|
|
|
2710
2710
|
// With custom "mentor" labels:
|
|
2711
2711
|
import { MENTOR_SETTINGS_TAB_LABELS } from './mentor-labels';
|
|
2712
2712
|
|
|
2713
|
-
<
|
|
2713
|
+
<AgentSettingsTab
|
|
2714
2714
|
tenants={tenants}
|
|
2715
2715
|
onMentorDeleted={handleDelete}
|
|
2716
2716
|
onMentorCopied={handleCopy}
|
|
@@ -2723,15 +2723,15 @@ The label system uses typed nested-object overrides. The package ships \`AGENT_S
|
|
|
2723
2723
|
> **Import from \`@iblai/iblai-js/web-containers/next\`** — requires Next.js and AgentSettingsProvider wrapper
|
|
2724
2724
|
|
|
2725
2725
|
**File Location**: \`packages/web-containers/src/components/modals/edit-mentor-modal/tabs/settings-tab.tsx\``,
|
|
2726
|
-
|
|
2726
|
+
AgentLLMTab: `# AgentLLMTab Component
|
|
2727
2727
|
|
|
2728
2728
|
LLM provider selection grid with search, provider cards, and a modal for choosing specific models. Reads identity from AgentSettingsProvider context — must be wrapped by it.
|
|
2729
2729
|
|
|
2730
2730
|
\`\`\`typescript
|
|
2731
|
-
import {
|
|
2732
|
-
import type {
|
|
2731
|
+
import { AgentLLMTab } from '@iblai/iblai-js/web-containers/next';
|
|
2732
|
+
import type { AgentLLMTabProps, LLMProviderDetails, DeepPartial, LLMTabLabels } from '@iblai/iblai-js/web-containers/next';
|
|
2733
2733
|
|
|
2734
|
-
interface
|
|
2734
|
+
interface AgentLLMTabProps {
|
|
2735
2735
|
showConfigurationHeader?: boolean;
|
|
2736
2736
|
getLLMProviderDetails: (providerName: string, llmName?: string) => LLMProviderDetails;
|
|
2737
2737
|
labels?: DeepPartial<LLMTabLabels>;
|
|
@@ -2742,7 +2742,7 @@ interface LLMProviderDetails {
|
|
|
2742
2742
|
name: string;
|
|
2743
2743
|
}
|
|
2744
2744
|
|
|
2745
|
-
<
|
|
2745
|
+
<AgentLLMTab
|
|
2746
2746
|
getLLMProviderDetails={(name) => ({
|
|
2747
2747
|
name: name.charAt(0).toUpperCase() + name.slice(1),
|
|
2748
2748
|
logo: \`/llm-\${name}-provider.png\`,
|
|
@@ -2756,25 +2756,25 @@ interface LLMProviderDetails {
|
|
|
2756
2756
|
> **Import from \`@iblai/iblai-js/web-containers/next\`** — requires Next.js and AgentSettingsProvider wrapper
|
|
2757
2757
|
|
|
2758
2758
|
**File Location**: \`packages/web-containers/src/components/modals/edit-mentor-modal/tabs/llm-tab.tsx\``,
|
|
2759
|
-
|
|
2759
|
+
AgentToolsTab: `# AgentToolsTab Component
|
|
2760
2760
|
|
|
2761
2761
|
Tool toggle grid for enabling/disabling tools and integrations on an agent. Reads identity from AgentSettingsProvider context — must be wrapped by it.
|
|
2762
2762
|
|
|
2763
2763
|
\`\`\`typescript
|
|
2764
|
-
import {
|
|
2765
|
-
import type {
|
|
2764
|
+
import { AgentToolsTab } from '@iblai/iblai-js/web-containers/next';
|
|
2765
|
+
import type { AgentToolsTabProps, ToolsTabLabels, DeepPartial } from '@iblai/iblai-js/web-containers/next';
|
|
2766
2766
|
|
|
2767
|
-
interface
|
|
2767
|
+
interface AgentToolsTabProps {
|
|
2768
2768
|
labels?: DeepPartial<ToolsTabLabels>;
|
|
2769
2769
|
}
|
|
2770
2770
|
|
|
2771
2771
|
// With the default "agent" labels:
|
|
2772
|
-
<
|
|
2772
|
+
<AgentToolsTab />
|
|
2773
2773
|
|
|
2774
2774
|
// With custom "mentor" labels:
|
|
2775
2775
|
import { MENTOR_TOOLS_TAB_LABELS } from './mentor-tools-labels';
|
|
2776
2776
|
|
|
2777
|
-
<
|
|
2777
|
+
<AgentToolsTab labels={MENTOR_TOOLS_TAB_LABELS} />
|
|
2778
2778
|
\`\`\`
|
|
2779
2779
|
|
|
2780
2780
|
Each tool row has a Switch that toggles the tool slug on the mentor via \`useEditMentorMutation\`. Permissions are gated through \`WithFormPermissions\` using the \`enableRBAC\` flag from context.
|
|
@@ -2782,25 +2782,25 @@ Each tool row has a Switch that toggles the tool slug on the mentor via \`useEdi
|
|
|
2782
2782
|
> **Import from \`@iblai/iblai-js/web-containers/next\`** — requires Next.js and AgentSettingsProvider wrapper
|
|
2783
2783
|
|
|
2784
2784
|
**File Location**: \`packages/web-containers/src/components/modals/edit-mentor-modal/tabs/tools-tab.tsx\``,
|
|
2785
|
-
|
|
2785
|
+
AgentMemoryTab: `# AgentMemoryTab Component
|
|
2786
2786
|
|
|
2787
2787
|
Memory settings tab with an enable toggle and a ManageMemories CRUD subsection (filter by user/date range, add/edit/delete memories, bulk delete). Reads identity from AgentSettingsProvider context — must be wrapped by it.
|
|
2788
2788
|
|
|
2789
2789
|
\`\`\`typescript
|
|
2790
|
-
import {
|
|
2791
|
-
import type {
|
|
2790
|
+
import { AgentMemoryTab } from '@iblai/iblai-js/web-containers/next';
|
|
2791
|
+
import type { AgentMemoryTabProps, MemoryTabLabels, DeepPartial } from '@iblai/iblai-js/web-containers/next';
|
|
2792
2792
|
|
|
2793
|
-
interface
|
|
2793
|
+
interface AgentMemoryTabProps {
|
|
2794
2794
|
labels?: DeepPartial<MemoryTabLabels>;
|
|
2795
2795
|
}
|
|
2796
2796
|
|
|
2797
2797
|
// With the default "agent" labels:
|
|
2798
|
-
<
|
|
2798
|
+
<AgentMemoryTab />
|
|
2799
2799
|
|
|
2800
2800
|
// With custom "mentor" labels:
|
|
2801
2801
|
import { MENTOR_MEMORY_TAB_LABELS } from './mentor-memory-labels';
|
|
2802
2802
|
|
|
2803
|
-
<
|
|
2803
|
+
<AgentMemoryTab labels={MENTOR_MEMORY_TAB_LABELS} />
|
|
2804
2804
|
\`\`\`
|
|
2805
2805
|
|
|
2806
2806
|
The enable toggle mutates \`enable_memory_component\` on mentor settings. The ManageMemories subsection uses \`useGetMentorMemoriesQuery\`, \`useCreateMentorMemoryMutation\`, \`useUpdateMentorMemoryMutation\`, \`useDeleteMentorMemoryMutation\`, and \`useGetMemoryCategoriesAdminQuery\` to manage memories by category.
|
|
@@ -2808,21 +2808,21 @@ The enable toggle mutates \`enable_memory_component\` on mentor settings. The Ma
|
|
|
2808
2808
|
> **Import from \`@iblai/iblai-js/web-containers/next\`** — requires Next.js and AgentSettingsProvider wrapper
|
|
2809
2809
|
|
|
2810
2810
|
**File Location**: \`packages/web-containers/src/components/modals/edit-mentor-modal/tabs/memory-tab.tsx\``,
|
|
2811
|
-
|
|
2811
|
+
AgentSafetyTab: `# AgentSafetyTab Component
|
|
2812
2812
|
|
|
2813
2813
|
Safety and moderation settings with four prompt cards (Moderation Prompt, Safety Prompt, Moderation Response, Safety Response) and optional Flagged Prompts viewer. Reads identity from AgentSettingsProvider context — must be wrapped by it.
|
|
2814
2814
|
|
|
2815
2815
|
\`\`\`typescript
|
|
2816
|
-
import {
|
|
2816
|
+
import { AgentSafetyTab } from '@iblai/iblai-js/web-containers/next';
|
|
2817
2817
|
import type {
|
|
2818
|
-
|
|
2818
|
+
AgentSafetyTabProps,
|
|
2819
2819
|
SafetyTabLabels,
|
|
2820
2820
|
SafetySelectedPrompt,
|
|
2821
2821
|
SafetyEditFormValues,
|
|
2822
2822
|
DeepPartial,
|
|
2823
2823
|
} from '@iblai/iblai-js/web-containers/next';
|
|
2824
2824
|
|
|
2825
|
-
interface
|
|
2825
|
+
interface AgentSafetyTabProps {
|
|
2826
2826
|
/** Render a prompt string as rich content (e.g. Markdown). Defaults to plain text. */
|
|
2827
2827
|
renderPromptContent?: (content: string) => React.ReactNode;
|
|
2828
2828
|
/** Modal for editing a prompt. Host-provided. */
|
|
@@ -2846,7 +2846,7 @@ interface SafetyTabProps {
|
|
|
2846
2846
|
labels?: DeepPartial<SafetyTabLabels>;
|
|
2847
2847
|
}
|
|
2848
2848
|
|
|
2849
|
-
<
|
|
2849
|
+
<AgentSafetyTab
|
|
2850
2850
|
labels={MENTOR_SAFETY_TAB_LABELS}
|
|
2851
2851
|
renderPromptContent={(content) => (
|
|
2852
2852
|
<Markdown className="text-sm text-gray-700">
|
|
@@ -2867,7 +2867,7 @@ The moderation/safety toggle switches use \`executeGatedAction\` from context wh
|
|
|
2867
2867
|
**File Location**: \`packages/web-containers/src/components/modals/edit-mentor-modal/tabs/safety-tab.tsx\``,
|
|
2868
2868
|
CopyButton: `# CopyButton Component
|
|
2869
2869
|
|
|
2870
|
-
Small button that copies text to the clipboard and shows "Copied" feedback for a short duration. Used by prompt cards in
|
|
2870
|
+
Small button that copies text to the clipboard and shows "Copied" feedback for a short duration. Used by prompt cards in AgentSafetyTab, AgentPromptsTab, and AgentDisclaimersTab.
|
|
2871
2871
|
|
|
2872
2872
|
\`\`\`typescript
|
|
2873
2873
|
import { CopyButton } from '@iblai/iblai-js/web-containers/next';
|
|
@@ -3067,25 +3067,25 @@ interface StarButtonProps {
|
|
|
3067
3067
|
// Each tab reads identity (tenantKey / mentorId / username / enableRBAC /
|
|
3068
3068
|
// executeGatedAction) from <AgentSettingsProvider> via useAgentSettings().
|
|
3069
3069
|
// ============================================================================
|
|
3070
|
-
|
|
3070
|
+
AgentAccessTab: `# AgentAccessTab Component
|
|
3071
3071
|
|
|
3072
3072
|
RBAC access / role management tab for the Edit Mentor Modal. Lists existing access policies, supports adding users or groups, and editing/removing their roles. Reads identity from \`AgentSettingsProvider\`.
|
|
3073
3073
|
|
|
3074
3074
|
\`\`\`typescript
|
|
3075
|
-
import {
|
|
3075
|
+
import { AgentAccessTab } from '@iblai/iblai-js/web-containers/next';
|
|
3076
3076
|
import type {
|
|
3077
|
-
|
|
3077
|
+
AgentAccessTabProps,
|
|
3078
3078
|
AccessTabLabels,
|
|
3079
3079
|
DeepPartial,
|
|
3080
3080
|
} from '@iblai/iblai-js/web-containers/next';
|
|
3081
3081
|
|
|
3082
|
-
interface
|
|
3082
|
+
interface AgentAccessTabProps {
|
|
3083
3083
|
labels?: DeepPartial<AccessTabLabels>;
|
|
3084
3084
|
/** Called when the tab fetches RBAC permissions for /users/ and /groups/. */
|
|
3085
3085
|
onPermissionsLoaded?: (permissions: object) => void;
|
|
3086
3086
|
}
|
|
3087
3087
|
|
|
3088
|
-
<
|
|
3088
|
+
<AgentAccessTab
|
|
3089
3089
|
labels={MENTOR_ACCESS_TAB_LABELS}
|
|
3090
3090
|
onPermissionsLoaded={(perms) => dispatch(rbac.merge(perms))}
|
|
3091
3091
|
/>
|
|
@@ -3094,43 +3094,43 @@ interface AccessTabProps {
|
|
|
3094
3094
|
> **Import from \`@iblai/iblai-js/web-containers/next\`** — requires Next.js and AgentSettingsProvider wrapper
|
|
3095
3095
|
|
|
3096
3096
|
**File Location**: \`packages/web-containers/src/components/modals/edit-mentor-modal/tabs/access-tab.tsx\``,
|
|
3097
|
-
|
|
3097
|
+
AgentApiTab: `# AgentApiTab Component
|
|
3098
3098
|
|
|
3099
3099
|
API-key management tab: lists existing keys with their creation date and lets the admin create or revoke them. Reads identity from \`AgentSettingsProvider\` and uses \`useGetApiKeysQuery\` / \`WithPermissions\`. Gated via \`executeGatedAction\` when provided.
|
|
3100
3100
|
|
|
3101
3101
|
\`\`\`typescript
|
|
3102
|
-
import {
|
|
3102
|
+
import { AgentApiTab } from '@iblai/iblai-js/web-containers/next';
|
|
3103
3103
|
import type {
|
|
3104
|
-
|
|
3104
|
+
AgentApiTabProps,
|
|
3105
3105
|
ApiTabLabels,
|
|
3106
3106
|
ApiKey,
|
|
3107
3107
|
DeepPartial,
|
|
3108
3108
|
} from '@iblai/iblai-js/web-containers/next';
|
|
3109
3109
|
|
|
3110
|
-
interface
|
|
3110
|
+
interface AgentApiTabProps {
|
|
3111
3111
|
labels?: DeepPartial<ApiTabLabels>;
|
|
3112
3112
|
}
|
|
3113
3113
|
|
|
3114
|
-
<
|
|
3114
|
+
<AgentApiTab labels={MENTOR_API_TAB_LABELS} />
|
|
3115
3115
|
\`\`\`
|
|
3116
3116
|
|
|
3117
3117
|
> **Import from \`@iblai/iblai-js/web-containers/next\`** — requires Next.js and AgentSettingsProvider wrapper
|
|
3118
3118
|
|
|
3119
3119
|
**File Location**: \`packages/web-containers/src/components/modals/edit-mentor-modal/tabs/api-tab.tsx\``,
|
|
3120
|
-
|
|
3120
|
+
AgentDatasetsTab: `# AgentDatasetsTab Component
|
|
3121
3121
|
|
|
3122
3122
|
Knowledge / training dataset management tab. Shows a searchable paginated table of datasets with train / delete / retrain actions. Because the standalone "Add Resource" modal (Dropbox / Drive / OneDrive pickers) and the standalone pagination component have deep app-specific dependencies, both are injected as props.
|
|
3123
3123
|
|
|
3124
3124
|
\`\`\`typescript
|
|
3125
|
-
import {
|
|
3125
|
+
import { AgentDatasetsTab } from '@iblai/iblai-js/web-containers/next';
|
|
3126
3126
|
import type {
|
|
3127
|
-
|
|
3127
|
+
AgentDatasetsTabProps,
|
|
3128
3128
|
DatasetsTabLabels,
|
|
3129
3129
|
Dataset,
|
|
3130
3130
|
DeepPartial,
|
|
3131
3131
|
} from '@iblai/iblai-js/web-containers/next';
|
|
3132
3132
|
|
|
3133
|
-
interface
|
|
3133
|
+
interface AgentDatasetsTabProps {
|
|
3134
3134
|
labels?: DeepPartial<DatasetsTabLabels>;
|
|
3135
3135
|
onSelect?: (dataset: Dataset) => void;
|
|
3136
3136
|
selectedDatasetId?: string;
|
|
@@ -3147,7 +3147,7 @@ interface DatasetsTabProps {
|
|
|
3147
3147
|
}>;
|
|
3148
3148
|
}
|
|
3149
3149
|
|
|
3150
|
-
<
|
|
3150
|
+
<AgentDatasetsTab
|
|
3151
3151
|
labels={MENTOR_DATASETS_TAB_LABELS}
|
|
3152
3152
|
AddResourceModal={AddResourceModal}
|
|
3153
3153
|
PaginationComponent={IblPagination}
|
|
@@ -3157,25 +3157,25 @@ interface DatasetsTabProps {
|
|
|
3157
3157
|
> **Import from \`@iblai/iblai-js/web-containers/next\`** — requires Next.js and AgentSettingsProvider wrapper
|
|
3158
3158
|
|
|
3159
3159
|
**File Location**: \`packages/web-containers/src/components/modals/edit-mentor-modal/tabs/datasets-tab.tsx\``,
|
|
3160
|
-
|
|
3160
|
+
AgentDisclaimersTab: `# AgentDisclaimersTab Component
|
|
3161
3161
|
|
|
3162
3162
|
User Agreement + Advisory disclaimer management tab. Renders the current disclaimer content with an Edit action, a separate user-agreement card, and supports plain or Markdown rendering via \`renderContent\`.
|
|
3163
3163
|
|
|
3164
3164
|
\`\`\`typescript
|
|
3165
|
-
import {
|
|
3165
|
+
import { AgentDisclaimersTab } from '@iblai/iblai-js/web-containers/next';
|
|
3166
3166
|
import type {
|
|
3167
|
-
|
|
3167
|
+
AgentDisclaimersTabProps,
|
|
3168
3168
|
DisclaimersTabLabels,
|
|
3169
3169
|
DeepPartial,
|
|
3170
3170
|
} from '@iblai/iblai-js/web-containers/next';
|
|
3171
3171
|
|
|
3172
|
-
interface
|
|
3172
|
+
interface AgentDisclaimersTabProps {
|
|
3173
3173
|
labels?: DeepPartial<DisclaimersTabLabels>;
|
|
3174
3174
|
defaultDisclaimerContent?: string;
|
|
3175
3175
|
renderContent?: (content: string) => React.ReactNode;
|
|
3176
3176
|
}
|
|
3177
3177
|
|
|
3178
|
-
<
|
|
3178
|
+
<AgentDisclaimersTab
|
|
3179
3179
|
labels={MENTOR_DISCLAIMERS_TAB_LABELS}
|
|
3180
3180
|
defaultDisclaimerContent={DEFAULT_DISCLAIMER}
|
|
3181
3181
|
renderContent={(content) => <Markdown>{content}</Markdown>}
|
|
@@ -3185,14 +3185,14 @@ interface DisclaimersTabProps {
|
|
|
3185
3185
|
> **Import from \`@iblai/iblai-js/web-containers/next\`** — requires Next.js and AgentSettingsProvider wrapper
|
|
3186
3186
|
|
|
3187
3187
|
**File Location**: \`packages/web-containers/src/components/modals/edit-mentor-modal/tabs/disclaimers-tab.tsx\``,
|
|
3188
|
-
|
|
3188
|
+
AgentEmbedTab: `# AgentEmbedTab Component
|
|
3189
3189
|
|
|
3190
3190
|
Embed / share configuration tab. Handles visibility, SSO provider selection, custom floating bubble config, CSS/JS overrides, and generates copy-paste embed snippets via a host-provided \`CopyCodeBlock\` component. URL building and the copyable code renderer are injected because they depend on standalone-specific libs.
|
|
3191
3191
|
|
|
3192
3192
|
\`\`\`typescript
|
|
3193
|
-
import {
|
|
3193
|
+
import { AgentEmbedTab } from '@iblai/iblai-js/web-containers/next';
|
|
3194
3194
|
import type {
|
|
3195
|
-
|
|
3195
|
+
AgentEmbedTabProps,
|
|
3196
3196
|
EmbedTabLabels,
|
|
3197
3197
|
EmbedUrlConfig,
|
|
3198
3198
|
VisibilityOption,
|
|
@@ -3200,7 +3200,7 @@ import type {
|
|
|
3200
3200
|
DeepPartial,
|
|
3201
3201
|
} from '@iblai/iblai-js/web-containers/next';
|
|
3202
3202
|
|
|
3203
|
-
interface
|
|
3203
|
+
interface AgentEmbedTabProps {
|
|
3204
3204
|
labels?: DeepPartial<EmbedTabLabels>;
|
|
3205
3205
|
urls: EmbedUrlConfig;
|
|
3206
3206
|
CopyCodeBlock: React.ComponentType<{ code: string }>;
|
|
@@ -3210,7 +3210,7 @@ interface EmbedTabProps {
|
|
|
3210
3210
|
supportEmail?: string;
|
|
3211
3211
|
}
|
|
3212
3212
|
|
|
3213
|
-
<
|
|
3213
|
+
<AgentEmbedTab
|
|
3214
3214
|
labels={MENTOR_EMBED_TAB_LABELS}
|
|
3215
3215
|
urls={embedUrls}
|
|
3216
3216
|
CopyCodeBlock={CopyCodeBlock}
|
|
@@ -3222,19 +3222,19 @@ interface EmbedTabProps {
|
|
|
3222
3222
|
> **Import from \`@iblai/iblai-js/web-containers/next\`** — requires Next.js and AgentSettingsProvider wrapper
|
|
3223
3223
|
|
|
3224
3224
|
**File Location**: \`packages/web-containers/src/components/modals/edit-mentor-modal/tabs/embed-tab.tsx\``,
|
|
3225
|
-
|
|
3225
|
+
AgentHistoryTab: `# AgentHistoryTab Component
|
|
3226
3226
|
|
|
3227
3227
|
Chat-history browser for a mentor. Supports date-range / user / session filtering, pagination, optional export, and custom rendering of AI message content (e.g. Markdown). The pagination UI is host-provided.
|
|
3228
3228
|
|
|
3229
3229
|
\`\`\`typescript
|
|
3230
|
-
import {
|
|
3230
|
+
import { AgentHistoryTab } from '@iblai/iblai-js/web-containers/next';
|
|
3231
3231
|
import type {
|
|
3232
|
-
|
|
3232
|
+
AgentHistoryTabProps,
|
|
3233
3233
|
HistoryTabLabels,
|
|
3234
3234
|
DeepPartial,
|
|
3235
3235
|
} from '@iblai/iblai-js/web-containers/next';
|
|
3236
3236
|
|
|
3237
|
-
interface
|
|
3237
|
+
interface AgentHistoryTabProps {
|
|
3238
3238
|
renderMessageContent?: (content: string) => React.ReactNode;
|
|
3239
3239
|
PaginationComponent?: React.ComponentType<{
|
|
3240
3240
|
currentPage: number;
|
|
@@ -3248,7 +3248,7 @@ interface HistoryTabProps {
|
|
|
3248
3248
|
labels?: DeepPartial<HistoryTabLabels>;
|
|
3249
3249
|
}
|
|
3250
3250
|
|
|
3251
|
-
<
|
|
3251
|
+
<AgentHistoryTab
|
|
3252
3252
|
labels={MENTOR_HISTORY_TAB_LABELS}
|
|
3253
3253
|
renderMessageContent={(c) => <Markdown>{c}</Markdown>}
|
|
3254
3254
|
PaginationComponent={IblPagination}
|
|
@@ -3260,29 +3260,29 @@ interface HistoryTabProps {
|
|
|
3260
3260
|
> **Import from \`@iblai/iblai-js/web-containers/next\`** — requires Next.js and AgentSettingsProvider wrapper
|
|
3261
3261
|
|
|
3262
3262
|
**File Location**: \`packages/web-containers/src/components/modals/edit-mentor-modal/tabs/history-tab.tsx\``,
|
|
3263
|
-
|
|
3263
|
+
AgentPromptsTab: `# AgentPromptsTab Component
|
|
3264
3264
|
|
|
3265
3265
|
Suggested / guided prompts management tab. Supports toggling greeting method (proactive response vs. proactive prompt), adding / editing individual prompts, and rendering prompt bodies as plain text or Markdown via \`renderPromptContent\`.
|
|
3266
3266
|
|
|
3267
3267
|
\`\`\`typescript
|
|
3268
3268
|
import {
|
|
3269
|
-
|
|
3269
|
+
AgentPromptsTab,
|
|
3270
3270
|
GreetingMethod,
|
|
3271
3271
|
} from '@iblai/iblai-js/web-containers/next';
|
|
3272
3272
|
import type {
|
|
3273
|
-
|
|
3273
|
+
AgentPromptsTabProps,
|
|
3274
3274
|
PromptsTabLabels,
|
|
3275
3275
|
PromptsSelectedPrompt,
|
|
3276
3276
|
PromptsEditFormValues,
|
|
3277
3277
|
DeepPartial,
|
|
3278
3278
|
} from '@iblai/iblai-js/web-containers/next';
|
|
3279
3279
|
|
|
3280
|
-
interface
|
|
3280
|
+
interface AgentPromptsTabProps {
|
|
3281
3281
|
renderPromptContent?: (content: string) => React.ReactNode;
|
|
3282
3282
|
labels?: DeepPartial<PromptsTabLabels>;
|
|
3283
3283
|
}
|
|
3284
3284
|
|
|
3285
|
-
<
|
|
3285
|
+
<AgentPromptsTab
|
|
3286
3286
|
labels={MENTOR_PROMPTS_TAB_LABELS}
|
|
3287
3287
|
renderPromptContent={(c) => <Markdown>{parsePrompt(c)}</Markdown>}
|
|
3288
3288
|
/>
|
|
@@ -3293,7 +3293,7 @@ interface PromptsTabProps {
|
|
|
3293
3293
|
**File Location**: \`packages/web-containers/src/components/modals/edit-mentor-modal/tabs/prompts-tab.tsx\``,
|
|
3294
3294
|
CopyMentorModal: `# CopyMentorModal Component
|
|
3295
3295
|
|
|
3296
|
-
Forks a mentor into another tenant. Renders a Dialog with name / visibility / target-tenant inputs, drives \`useForkMentorMutation\` + \`useEditMentorMutation\`, and surfaces toast feedback. Typically launched from \`
|
|
3296
|
+
Forks a mentor into another tenant. Renders a Dialog with name / visibility / target-tenant inputs, drives \`useForkMentorMutation\` + \`useEditMentorMutation\`, and surfaces toast feedback. Typically launched from \`AgentSettingsTab\`.
|
|
3297
3297
|
|
|
3298
3298
|
\`\`\`typescript
|
|
3299
3299
|
import { CopyMentorModal } from '@iblai/iblai-js/web-containers/next';
|
|
@@ -3419,11 +3419,11 @@ export function getComponentInfo(componentName) {
|
|
|
3419
3419
|
'CourseContentTabPage',
|
|
3420
3420
|
'CourseContentLayout',
|
|
3421
3421
|
'AgentSettingsProvider',
|
|
3422
|
-
'
|
|
3423
|
-
'
|
|
3424
|
-
'
|
|
3425
|
-
'
|
|
3426
|
-
'
|
|
3422
|
+
'AgentSettingsTab',
|
|
3423
|
+
'AgentLLMTab',
|
|
3424
|
+
'AgentToolsTab',
|
|
3425
|
+
'AgentMemoryTab',
|
|
3426
|
+
'AgentSafetyTab',
|
|
3427
3427
|
'CopyButton',
|
|
3428
3428
|
];
|
|
3429
3429
|
return `Component "${componentName}" not found.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"component-info.js","sourceRoot":"","sources":["../../src/tools/component-info.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"component-info.js","sourceRoot":"","sources":["../../src/tools/component-info.ts"],"names":[],"mappings":"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"}
|