Skip to content

Commit 784fe29

Browse files
authored
set Notte browser rate to $0 (#49)
1 parent 5bcd104 commit 784fe29

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/providers/notte.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export class NotteProvider implements ProviderClient {
2323
private baseUrl: string;
2424

2525
computeCost(seconds: number): number {
26-
const perHour = 0.05;
26+
const perHour = 0;
2727
const billedSeconds = Math.max(60, Math.ceil(seconds / 60) * 60);
2828
return Math.round((billedSeconds / 3600) * perHour * 1e8) / 1e8;
2929
}

web/lib/pricing.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ interface UnitPricing {
99

1010
const PRICING: Record<string, { unit: UnitPricing }> = {
1111
NOTTE: {
12-
unit: { ratePerHour: 0.05, billing: "per_minute", minimumSeconds: 60, perSessionCreationFee: 0 },
12+
unit: { ratePerHour: 0, billing: "per_minute", minimumSeconds: 60, perSessionCreationFee: 0 },
1313
},
1414
STEEL: {
1515
unit: { ratePerHour: 0.1, billing: "per_minute", minimumSeconds: 60, perSessionCreationFee: 0 },

0 commit comments

Comments
 (0)