Skip to content

Commit 297eb1e

Browse files
authored
Merge pull request #5446 from Agenta-AI/release/v0.105.9
[release] v0.105.9
2 parents b5d4596 + c637057 commit 297eb1e

38 files changed

Lines changed: 1001 additions & 132 deletions

File tree

api/ee/src/core/access/entitlements/types.py

Lines changed: 33 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ class Throttle(BaseModel):
191191
DEFAULT_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
),

api/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "api"
3-
version = "0.105.8"
3+
version = "0.105.9"
44
description = "Agenta API"
55
requires-python = ">=3.11,<3.14"
66
authors = [

api/uv.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

clients/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "agenta-client"
3-
version = "0.105.8"
3+
version = "0.105.9"
44
description = "Fern-generated Python client for the Agenta API."
55
requires-python = ">=3.11,<3.14"
66
authors = [

clients/python/uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

hosting/kubernetes/helm/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: agenta
33
description: A Helm chart for deploying Agenta (OSS or EE) on Kubernetes
44
type: application
5-
version: 0.105.8
6-
appVersion: "v0.105.8"
5+
version: 0.105.9
6+
appVersion: "v0.105.9"
77
keywords:
88
- agenta
99
- llm

sdks/python/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "agenta"
3-
version = "0.105.8"
4-
description = "Agenta the open-source workspace for your agents. Build agents through chat, improve them with feedback, and share them with your team."
3+
version = "0.105.9"
4+
description = "Agenta is the open-source workspace for your agents. Build agents through chat, improve them with feedback, and share them with your team."
55
readme = "README.md"
66
requires-python = ">=3.11,<3.14"
77
license = "MIT"

sdks/python/uv.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

services/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "services"
3-
version = "0.105.8"
3+
version = "0.105.9"
44
description = "Agenta Services (Chat & Completion)"
55
requires-python = ">=3.11,<3.14"
66
authors = [

services/uv.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)