Skip to content

Commit

Permalink
Merge pull request #405 from refly-ai/fix/update-price
Browse files Browse the repository at this point in the history
fix(web): update free plan feature count for t2
  • Loading branch information
mrcfps authored Jan 22, 2025
2 parents d91c058 + c78debd commit 8d533ac
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ export const PriceContent = (props: { source: PriceSource }) => {

const createFeatures = (plan: 'free' | 'plus' | 'pro' | 'max'): ModelFeatures[] => {
const configs = {
free: { t1Count: 3, t2Count: 20, fileLimit: 10, t1Period: 'daily', t2Period: 'daily' },
free: { t1Count: 3, t2Count: 30, fileLimit: 10, t1Period: 'daily', t2Period: 'daily' },
plus: { t1Count: 100, t2Count: 1500, fileLimit: 200, t1Period: 'monthly', t2Period: 'monthly' },
pro: { t1Count: 300, t2Count: -1, fileLimit: 500, t1Period: 'monthly', t2Period: 'monthly' },
max: { t1Count: -1, t2Count: -1, fileLimit: 2000, t1Period: 'monthly', t2Period: 'monthly' },
Expand Down

0 comments on commit 8d533ac

Please sign in to comment.