@@ -14,6 +14,8 @@ const DESCRIPTION =
1414const PATH = "/pricing"
1515const OG_IMAGE = SEO . ogImage
1616
17+ const PRICE_CREDITS = 5
18+
1719export const metadata : Metadata = {
1820 title : TITLE ,
1921 description : DESCRIPTION ,
@@ -96,8 +98,8 @@ const pricingTiers: PricingTier[] = [
9698 icon : Star ,
9799 price : "$20" ,
98100 period : "/mo" ,
99- creditPrice : "$0.25" ,
100101 trial : "Free 14-day trial · " ,
102+ creditPrice : `$${ PRICE_CREDITS } ` ,
101103 cancellation : "Cancel anytime" ,
102104 description : "For pro Roo coders" ,
103105 featuresIntro : "Everything in Free +" ,
@@ -116,7 +118,7 @@ const pricingTiers: PricingTier[] = [
116118 icon : Users ,
117119 price : "$99" ,
118120 period : "/mo" ,
119- creditPrice : "$0.25" ,
121+ creditPrice : `$ ${ PRICE_CREDITS } ` ,
120122 trial : "Free 14-day trial · " ,
121123 cancellation : "Cancel anytime" ,
122124 description : "For AI-forward teams" ,
@@ -142,7 +144,7 @@ export default function PricingPage() {
142144 < p className = "mx-auto mt-4 max-w-2xl text-lg text-muted-foreground" >
143145 Simple, transparent pricing that scales with your needs.
144146 < br />
145- Free 14-day trials to kick the tires.
147+ No inference markups. Free 14-day trials to kick the tires.
146148 </ p >
147149 </ div >
148150 </ div >
@@ -197,7 +199,7 @@ export default function PricingPage() {
197199
198200 { tier . creditPrice && (
199201 < p className = "text-sm text-muted-foreground mb-1" >
200- + { tier . creditPrice } /M tokens for Cloud tasks
202+ + { tier . creditPrice } /hour for Cloud tasks
201203 </ p >
202204 ) }
203205
@@ -270,11 +272,11 @@ export default function PricingPage() {
270272 You can run as many as you want, and bring your own inference provider key.
271273 </ p >
272274 < p className = "mt-2 text-sm text-muted-foreground" >
273- To cover our infrastructure costs, we charge $0.25 per million tokens used by them
274- (outside of inference providers ).
275+ To cover our infrastructure costs, we charge ${ PRICE_CREDITS } /hour while the agent is
276+ running (independent of inference costs ).
275277 </ p >
276278 < p className = "mt-2 text-sm text-muted-foreground" >
277- There are no tiers , no monthly fees , no dumbing-down of models to increase our profit.
279+ There are no markups , no tiers , no dumbing-down of models to increase our profit.
278280 </ p >
279281 </ div >
280282 < div className = "rounded-lg border border-border bg-card p-6" >
0 commit comments