@modelfusion/cost-calculator
v0.1.0
Published
A calculator for the API usage costs of AI models (text, image, speech, transcription, etc.) for OpenAI and other providers.
Downloads
8
Maintainers
Readme
@modelfusion/cost-calculator
See documentation at ModelFusion.
Calls to generative models such as OpenAI's API can get expensive quickly. To keep track of your costs and to enable you to understand them, ModelFusion contains cost calculation functionality. You can use it to log the costs of runs or even implement budgeting that automatically aborts a run when it exceeds a certain cost.
⚠️ Cost calculation is currently only supported for OpenAI models. It depends on the current pricing of the API. The cost calculation can be inaccurate when the pricing changes or when there are e.g. aborted calls.
Example
import { DefaultRun, generateText, openai } from "modelfusion";
import {
OpenAICostCalculator,
calculateCost,
} from "@modelfusion/cost-calculation";
const run = new DefaultRun();
const text = await generateText({
model: openai.CompletionTextGenerator({
model: "gpt-3.5-turbo-instruct",
temperature: 0.7,
maxGenerationTokens: 500,
}),
prompt: "Write a short story about a robot learning to love:\n\n",
run, // pass in the run into the model calls
});
// calculate the overall cost of the run for the successful calls:
const cost = await calculateCost({
calls: run.getSuccessfulModelCalls(),
costCalculators: [new OpenAICostCalculator()],
});
console.log(`Cost: ${cost.formatAsDollarAmount({ decimals: 4 })}`);
Supported Providers
- OpenAI