Skip to content

Commit a9edc6a

Browse files
committed
feat: make ai premium feature
1 parent d057d7b commit a9edc6a

File tree

2 files changed

+8
-21
lines changed

2 files changed

+8
-21
lines changed

services/webui/src/components/AIComponents/Agents/index.tsx

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -42,21 +42,7 @@ function Agents() {
4242
enabled: true,
4343
is_available: true,
4444
},
45-
{
46-
name: 'Sales',
47-
description:
48-
'Answers questions about sales activities, including: total activities per rep, activity breakdown by type, activity per deal, deal stage progression activity, and time to first activity. Enables analysis of sales rep performance and deal progression.',
49-
welcome_message:
50-
'Hello! This is your Sales Agent. I can answer questions about sales activities, including total activities per rep, activity breakdown by type, activity per deal, deal stage progression activity, and time to first activity. What can I help you with? For example:',
51-
sample_questions: [
52-
'Show me the total activities (calls, emails, meetings) for each sales rep.',
53-
'Which sales reps had the most/least activities?',
54-
'How much activity was logged for each deal we closed?',
55-
],
56-
id: 'sales',
57-
enabled: true,
58-
is_available: true,
59-
},
45+
6046
])
6147
const selected_agent = {
6248
id: 'identity_access',

services/webui/src/components/Layout/Sidebar/index.tsx

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -265,18 +265,19 @@ export default function Sidebar({ currentPage }: ISidebar) {
265265
icon: CalendarDateRangeIcon,
266266
isPreview: false,
267267
},
268-
{
269-
name: 'Agent AI',
270-
page: 'ai',
271-
icon: UserIcon,
272-
isPreview: false,
273-
},
274268
{
275269
name: 'Administration',
276270
page: ['administration'],
277271
icon: Cog6ToothIcon,
278272
isPreview: false,
279273
},
274+
{
275+
name: 'Agent AI',
276+
page: 'ai',
277+
icon: UserIcon,
278+
isPreview: true,
279+
},
280+
280281
{
281282
name: 'Automation',
282283
page: 'automation',

0 commit comments

Comments
 (0)