You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'Delivers information on user identities, access controls, and activity.',
19
-
welcome_message:
20
-
'Hi there! This is your Identity & Access Agent. I can help you with anything related to identity management and access tools. What can I assist you with today? For example, you can ask me things like:',
21
-
sample_questions: [
22
-
'Get me the list of users who have access to Azure Subscriptions.',
23
-
'Get me all SPNs with expired passwords.',
24
-
'Show me the access activity for user John Doe.',
25
-
],
26
-
id: 'identity_access',
27
-
enabled: true,
28
-
is_available: true,
29
-
},
30
-
{
31
-
name: 'DevOps',
32
-
description:
33
-
'Provides data on secure code, deployment, and automation workflows.',
34
-
welcome_message:
35
-
'Hello! This is your DevOps Agent. I can provide insights into secure code, deployment, and automation workflows. How can I assist you today? For instance, you could ask me:',
36
-
sample_questions: [
37
-
'What are the latest secure code scan results?',
38
-
'Show me the deployment status for the production environment.',
39
-
'Provide a report on automated workflow execution times.',
This feature is only available on commercial version.
94
-
</span>
95
-
<Button
96
-
onClick={()=>{
97
-
setOpenCal(true)
98
-
}}
99
-
>
100
-
Contact us
101
-
</Button>
102
-
</Flex>
103
-
</Modal>
104
-
<Modal
105
-
size="large"
106
-
visible={openCal}
107
-
onDismiss={()=>setOpenCal(false)}
108
-
header="Not available"
109
-
>
110
-
<Cal
111
-
namespace="try-enterprise"
112
-
calLink="team/clearcompass/try-enterprise"
113
-
style={{
114
-
width: '100%',
115
-
height: '100%',
116
-
overflow: 'scroll',
117
-
}}
118
-
config={{layout: 'month_view'}}
119
-
/>
120
-
</Modal>
121
-
</>
122
-
)
11
+
const[agents,setAgents]=useState<Agent[]>([
12
+
{
13
+
name: 'Identity & Access',
14
+
description:
15
+
'Delivers information on user identities, access controls, and activity.',
16
+
welcome_message:
17
+
'Hi there! This is your Identity & Access Agent. I can help you with anything related to identity management and access tools. What can I assist you with today? For example, you can ask me things like:',
18
+
sample_questions: [
19
+
'Get me the list of users who have access to Azure Subscriptions.',
20
+
'Get me all SPNs with expired passwords.',
21
+
'Show me the access activity for user John Doe.',
22
+
],
23
+
id: 'identity_access',
24
+
enabled: true,
25
+
is_available: true,
26
+
},
27
+
{
28
+
name: 'DevOps',
29
+
description:
30
+
'Provides data on secure code, deployment, and automation workflows.',
31
+
welcome_message:
32
+
'Hello! This is your DevOps Agent. I can provide insights into secure code, deployment, and automation workflows. How can I assist you today? For instance, you could ask me:',
33
+
sample_questions: [
34
+
'What are the latest secure code scan results?',
35
+
'Show me the deployment status for the production environment.',
36
+
'Provide a report on automated workflow execution times.',
0 commit comments