9
9
} from "components/Collapsible/Collapsible" ;
10
10
import { Stack } from "components/Stack/Stack" ;
11
11
import dayjs from "dayjs" ;
12
- import { ChevronRightIcon } from "lucide-react" ;
12
+ import { ChevronRightIcon , Link } from "lucide-react" ;
13
13
import type { FC } from "react" ;
14
+ import { docs } from "utils/docs" ;
14
15
15
16
interface ManagedAgentsConsumptionProps {
16
17
managedAgentFeature ?: Feature ;
@@ -100,7 +101,7 @@ export const ManagedAgentsConsumption: FC<ManagedAgentsConsumptionProps> = ({
100
101
< Collapsible >
101
102
< header className = "flex flex-col gap-2 items-start" >
102
103
< h3 className = "text-md m-0 font-medium" >
103
- Managed agents consumption
104
+ Managed AI Agents Usage
104
105
</ h3 >
105
106
106
107
< CollapsibleTrigger asChild >
@@ -112,7 +113,7 @@ export const ManagedAgentsConsumption: FC<ManagedAgentsConsumptionProps> = ({
112
113
` }
113
114
>
114
115
< ChevronRightIcon />
115
- How we calculate managed agents consumption
116
+ Learn more
116
117
</ Button >
117
118
</ CollapsibleTrigger >
118
119
</ header >
@@ -125,8 +126,13 @@ export const ManagedAgentsConsumption: FC<ManagedAgentsConsumptionProps> = ({
125
126
` }
126
127
>
127
128
< p >
128
- Managed agents are counted based on the amount of successfully
129
- started workspaces with an AI agent.
129
+ < MuiLink
130
+ href = { docs ( "/ai-coder/tasks" ) }
131
+ target = "_blank"
132
+ rel = "noreferrer" >
133
+ Coder Tasks
134
+ </ MuiLink > { " " } and upcoming managed AI features are included in Coder Premium
135
+ licenses during beta. Usage limits and pricing subject to change.
130
136
</ p >
131
137
< ul >
132
138
< li className = "flex items-center gap-2" >
0 commit comments