kopia lustrzana https://github.com/transitive-bullshit/chatgpt-api
pull/718/head
rodzic
1aa16aedbc
commit
b5a9f724ee
|
@ -220,31 +220,30 @@ export default defineConfig({
|
||||||
tiersMode: 'volume',
|
tiersMode: 'volume',
|
||||||
tiers: [
|
tiers: [
|
||||||
{
|
{
|
||||||
// Usage-based pricing is free for the first 1000 requests per
|
// Free for the first 1000 requests per month
|
||||||
// month
|
|
||||||
upTo: 1000,
|
upTo: 1000,
|
||||||
unitAmount: 0 // in cents
|
unitAmount: 0 // in cents
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// After 10k request, it costs $0.0001 USD per request up to
|
// After 10k requests, it costs $0.0001 USD per request up to
|
||||||
// 50k requests per month
|
// 50k requests per month
|
||||||
upTo: 50_000,
|
upTo: 50_000,
|
||||||
unitAmount: 0.01 // in cents
|
unitAmount: 0.01 // in cents
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// After 50k request, it costs $0.00008 USD per request up to
|
// After 50k requests, it costs $0.00008 USD per request up to
|
||||||
// 500k requests per month
|
// 500k requests per month
|
||||||
upTo: 500_000,
|
upTo: 500_000,
|
||||||
unitAmount: 0.008
|
unitAmount: 0.008
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// After 500k request, it costs $0.00006 USD per request up to
|
// After 500k requests, it costs $0.00006 USD per request up to
|
||||||
// 2.5M requests per month
|
// 2.5M requests per month
|
||||||
upTo: 2_500_000,
|
upTo: 2_500_000,
|
||||||
unitAmount: 0.006
|
unitAmount: 0.006
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// After 2.5M request, it costs $0.00005 USD per request, with
|
// After 2.5M requests, it costs $0.00005 USD per request, with
|
||||||
// no upper bound set
|
// no upper bound set
|
||||||
upTo: 'inf',
|
upTo: 'inf',
|
||||||
unitAmount: 0.005
|
unitAmount: 0.005
|
||||||
|
@ -310,31 +309,30 @@ export default defineConfig({
|
||||||
"tiersMode": "volume",
|
"tiersMode": "volume",
|
||||||
"tiers": [
|
"tiers": [
|
||||||
{
|
{
|
||||||
// Usage-based pricing is free for the first 1000 requests per
|
// Free for the first 1000 requests per month
|
||||||
// month
|
|
||||||
"upTo": 1000,
|
"upTo": 1000,
|
||||||
"unitAmount": 0 // in cents
|
"unitAmount": 0 // in cents
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// After 10k request, it costs $0.0001 USD per request up to
|
// After 10k requests, it costs $0.0001 USD per request up to
|
||||||
// 50k requests per month
|
// 50k requests per month
|
||||||
"upTo": 50000,
|
"upTo": 50000,
|
||||||
"unitAmount": 0.01 // in cents
|
"unitAmount": 0.01 // in cents
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// After 50k request, it costs $0.00008 USD per request up to
|
// After 50k requests, it costs $0.00008 USD per request up to
|
||||||
// 500k requests per month
|
// 500k requests per month
|
||||||
"upTo": 500000,
|
"upTo": 500000,
|
||||||
"unitAmount": 0.008
|
"unitAmount": 0.008
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// After 500k request, it costs $0.00006 USD per request up to
|
// After requests, it costs $0.00006 USD per request up to
|
||||||
// 2.5M requests per month
|
// 2.5M requests per month
|
||||||
"upTo": 2500000,
|
"upTo": 2500000,
|
||||||
"unitAmount": 0.006
|
"unitAmount": 0.006
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// After 2.5M request, it costs $0.00005 USD per request, with
|
// After 2.5M requests, it costs $0.00005 USD per request, with
|
||||||
// no upper bound set
|
// no upper bound set
|
||||||
"upTo": "inf",
|
"upTo": "inf",
|
||||||
"unitAmount": 0.005
|
"unitAmount": 0.005
|
||||||
|
|
Ładowanie…
Reference in New Issue