ScottzillaSystems commited on
Commit
cce2ac9
·
verified ·
1 Parent(s): 944fee1

add: pricing tiers configuration

Browse files
Files changed (1) hide show
  1. pricing.json +51 -0
pricing.json ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "tiers": {
3
+ "free": {
4
+ "name": "Free",
5
+ "price_monthly": 0,
6
+ "requests_per_day": 25,
7
+ "models": ["chatgpt-5"],
8
+ "features": ["basic-chat"],
9
+ "stripe_price_id": null,
10
+ "gumroad_product_id": null
11
+ },
12
+ "pro": {
13
+ "name": "Pro",
14
+ "price_monthly": 9.99,
15
+ "requests_per_day": 500,
16
+ "models": ["all"],
17
+ "features": ["basic-chat", "smart-routing", "tools", "priority-queue"],
18
+ "stripe_price_id": "STRIPE_PRO_PRICE_ID",
19
+ "gumroad_product_id": "GUMROAD_PRO_PRODUCT_ID"
20
+ },
21
+ "ultra": {
22
+ "name": "Ultra",
23
+ "price_monthly": 29.99,
24
+ "requests_per_day": 5000,
25
+ "models": ["all", "image-gen"],
26
+ "features": ["basic-chat", "smart-routing", "tools", "priority-queue", "image-generation", "image-editing"],
27
+ "stripe_price_id": "STRIPE_ULTRA_PRICE_ID",
28
+ "gumroad_product_id": "GUMROAD_ULTRA_PRODUCT_ID"
29
+ },
30
+ "enterprise": {
31
+ "name": "Enterprise",
32
+ "price_monthly": 99.99,
33
+ "requests_per_day": -1,
34
+ "models": ["all", "image-gen", "dedicated"],
35
+ "features": ["basic-chat", "smart-routing", "tools", "priority-queue", "image-generation", "image-editing", "sla", "custom-models", "dedicated-gpu"],
36
+ "stripe_price_id": "STRIPE_ENTERPRISE_PRICE_ID",
37
+ "gumroad_product_id": "GUMROAD_ENTERPRISE_PRODUCT_ID"
38
+ }
39
+ },
40
+ "payg": {
41
+ "price_per_request": 0.001,
42
+ "min_topup": 5.00
43
+ },
44
+ "providers": {
45
+ "stripe": {"enabled": true, "supports": ["subscription", "one-time"]},
46
+ "paypal": {"enabled": true, "supports": ["subscription", "one-time"]},
47
+ "coinbase": {"enabled": true, "supports": ["one-time", "crypto"]},
48
+ "square": {"enabled": true, "supports": ["one-time"]},
49
+ "gumroad": {"enabled": true, "supports": ["subscription", "one-time"]}
50
+ }
51
+ }