1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
| import type { BasicPlan } from '@/app/components/billing/type'
| import { Plan, type PlanInfo, Priority } from '@/app/components/billing/type'
|
| const supportModelProviders = 'OpenAI/Anthropic/Llama2/Azure OpenAI/Hugging Face/Replicate'
|
| export const NUM_INFINITE = 99999999
| export const contractSales = 'contractSales'
| export const unAvailable = 'unAvailable'
|
| export const contactSalesUrl = 'https://vikgc6bnu1s.typeform.com/dify-business'
| export const getStartedWithCommunityUrl = 'https://github.com/langgenius/dify'
| export const getWithPremiumUrl = 'https://aws.amazon.com/marketplace/pp/prodview-t22mebxzwjhu6'
|
| export const ALL_PLANS: Record<BasicPlan, PlanInfo> = {
| sandbox: {
| level: 1,
| price: 0,
| modelProviders: supportModelProviders,
| teamWorkspace: 1,
| teamMembers: 1,
| buildApps: 5,
| documents: 50,
| vectorSpace: '50MB',
| documentsUploadQuota: 0,
| documentsRequestQuota: 10,
| apiRateLimit: 5000,
| documentProcessingPriority: Priority.standard,
| messageRequest: 200,
| annotatedResponse: 10,
| logHistory: 30,
| },
| professional: {
| level: 2,
| price: 59,
| modelProviders: supportModelProviders,
| teamWorkspace: 1,
| teamMembers: 3,
| buildApps: 50,
| documents: 500,
| vectorSpace: '5GB',
| documentsUploadQuota: 0,
| documentsRequestQuota: 100,
| apiRateLimit: NUM_INFINITE,
| documentProcessingPriority: Priority.priority,
| messageRequest: 5000,
| annotatedResponse: 2000,
| logHistory: NUM_INFINITE,
| },
| team: {
| level: 3,
| price: 159,
| modelProviders: supportModelProviders,
| teamWorkspace: 1,
| teamMembers: 50,
| buildApps: 200,
| documents: 1000,
| vectorSpace: '20GB',
| documentsUploadQuota: 0,
| documentsRequestQuota: 1000,
| apiRateLimit: NUM_INFINITE,
| documentProcessingPriority: Priority.topPriority,
| messageRequest: 10000,
| annotatedResponse: 5000,
| logHistory: NUM_INFINITE,
| },
| }
|
| export const defaultPlan = {
| type: Plan.sandbox as BasicPlan,
| usage: {
| documents: 50,
| vectorSpace: 1,
| buildApps: 1,
| teamMembers: 1,
| annotatedResponse: 1,
| documentsUploadQuota: 0,
| },
| total: {
| documents: 50,
| vectorSpace: 10,
| buildApps: 10,
| teamMembers: 1,
| annotatedResponse: 10,
| documentsUploadQuota: 0,
| },
| }
|
|