-
Notifications
You must be signed in to change notification settings - Fork 3k
improvement(pricing): increase free user limit to 20 usd #2536
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Greptile SummaryThis PR successfully increases the free user credit limit from $10 to $20 and reduces the hosted model pricing multiplier from 2.5x to 2x, making the platform more accessible. What changed:
Outstanding issue: Confidence Score: 4/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant Dev as Developer
participant Constants as Constants Files
participant Migration as DB Migration
participant Schema as DB Schema
participant UserStats as user_stats Table
participant Docs as Documentation
Dev->>Constants: Update DEFAULT_FREE_CREDITS: 10 → 20
Constants->>Constants: apps/sim/lib/billing/constants.ts
Constants->>Constants: packages/db/constants.ts
Dev->>Migration: Generate migration 0131
Migration->>UserStats: ALTER COLUMN current_usage_limit DEFAULT '20'
Schema->>Constants: Import DEFAULT_FREE_CREDITS
Schema->>UserStats: Use constant for default value
Dev->>Docs: Update pricing tables
Docs->>Docs: Change multiplier: 2.5x → 2x
Docs->>Docs: Recalculate all hosted prices
Docs->>Docs: Update free tier limit: $10 → $20
Note over UserStats: New users get $20 credit
Note over Docs: English docs updated ✓
Note over Docs: FR/ES docs need update ⚠️
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
2 files reviewed, 2 comments
* improvement(pricing): increase free user limit to 20 usd * make gemini pricing accurate * generate migration for db constant * update docs * test notif data
Summary
Free plan pricing to 20 dollars of credit
Type of Change
Testing
Tested manually
Checklist