@@ -191,7 +191,7 @@ class Throttle(BaseModel):
191191DEFAULT_CATALOG = [
192192 {
193193 "title" : "Hobby" ,
194- "description" : "Great for hobby projects and POCs ." ,
194+ "description" : "For individuals exploring Agenta ." ,
195195 "type" : "standard" ,
196196 "plan" : DefaultPlan .CLOUD_V0_HOBBY .value ,
197197 "retention" : Retention .WEEKLY .value ,
@@ -203,17 +203,17 @@ class Throttle(BaseModel):
203203 },
204204 },
205205 "features" : [
206- "Unlimited prompts " ,
207- "20 evaluations/month " ,
208- "5k traces/month " ,
209- "2 seats included " ,
210- "1 week retention period " ,
211- "Community support via Github " ,
206+ "2 team members " ,
207+ "Unlimited projects " ,
208+ "Unlimited agents and workflows " ,
209+ "5,000 agent runs / month " ,
210+ "1- week trace data retention " ,
211+ "Community support through GitHub Issues " ,
212212 ],
213213 },
214214 {
215215 "title" : "Pro" ,
216- "description" : "For production projects ." ,
216+ "description" : "For teams running agents in production ." ,
217217 "type" : "standard" ,
218218 "plan" : DefaultPlan .CLOUD_V0_PRO .value ,
219219 "retention" : Retention .MONTHLY .value ,
@@ -239,17 +239,18 @@ class Throttle(BaseModel):
239239 },
240240 },
241241 "features" : [
242- "Unlimited prompts" ,
242+ "Unlimited team members" ,
243+ "Unlimited projects, agents, and workflows" ,
244+ "Unlimited schedules and event triggers" ,
245+ "10,000 agent runs / month included, then $5 per additional 10,000" ,
243246 "Unlimited evaluations" ,
244- "10k traces / month included then $5 for every 10k" ,
245- "Unlimited seats" ,
246- "1 month retention period" ,
247- "In-app support" ,
247+ "1-month trace data retention" ,
248+ "Community support through GitHub Issues" ,
248249 ],
249250 },
250251 {
251252 "title" : "Business" ,
252- "description" : "For scale, security , and support." ,
253+ "description" : "For teams that need governance, compliance , and priority support." ,
253254 "type" : "standard" ,
254255 "plan" : DefaultPlan .CLOUD_V0_BUSINESS .value ,
255256 "retention" : Retention .QUARTERLY .value ,
@@ -264,7 +265,7 @@ class Throttle(BaseModel):
264265 "currency" : "USD" ,
265266 "tiers" : [
266267 {
267- "limit" : 1_000_000 ,
268+ "limit" : 10_000 ,
268269 "amount" : 0.00 ,
269270 },
270271 {
@@ -276,33 +277,34 @@ class Throttle(BaseModel):
276277 },
277278 "features" : [
278279 "Everything in Pro" ,
279- "Unlimited seats" ,
280- "1M traces / month included then $5 for every 10k" ,
281- "Multiple workspaces" ,
282- "Roles and RBAC" ,
283- "Enterprise SSO" ,
284- "SOC 2 reports" ,
285- "HIPAA BAA [soon]" ,
286- "Private Slack Channel" ,
287- "Business SLA" ,
288- "1 quarter retention period" ,
280+ "10,000 agent runs / month included, then $5 per additional 10,000" ,
281+ "Team roles and role-based access control" ,
282+ "SSO" ,
283+ "SOC 2 Type II report" ,
284+ "3-month trace data retention" ,
285+ "Priority support" ,
286+ "Private Slack Connect channel" ,
289287 ],
290288 },
291289 {
292290 "title" : "Enterprise" ,
293- "description" : "For large organizations or custom needs ." ,
291+ "description" : "For organizations that need advanced controls and dedicated support ." ,
294292 "type" : "standard" ,
295293 "features" : [
296294 "Everything in Business" ,
295+ "Custom usage and trace data retention" ,
297296 "Custom roles" ,
298- "Enterprise SSO" ,
299297 "Audit logs" ,
298+ "Custom domains" ,
299+ "HIPAA BAA [soon]" ,
300+ "Security reviews" ,
301+ "Custom security and legal terms" ,
300302 "Self-hosting options" ,
301303 "Bring Your Own Cloud (BYOC)" ,
302- "Security reviews " ,
304+ "Deployment and onboarding support " ,
303305 "Dedicated support" ,
304- "Custom SLA " ,
305- "Custom terms " ,
306+ "Private Slack Connect channel " ,
307+ "Custom service-level agreement " ,
306308 ],
307309 },
308310 {
@@ -516,7 +518,7 @@ class Throttle(BaseModel):
516518 period = Period .MONTHLY ,
517519 ),
518520 Counter .TRACES_INGESTED : Quota (
519- free = 1_000_000 ,
521+ free = 10_000 ,
520522 retention = Retention .QUARTERLY ,
521523 period = Period .MONTHLY ,
522524 ),
0 commit comments