pyb-ts
Version:
PYB-CLI - Minimal AI Agent with multi-model support and CLI interface
20 lines (19 loc) • 403 B
JavaScript
import { formatTotalCost } from "@costTracker";
const cost = {
type: "local",
name: "cost",
description: "Show the total cost and duration of the current session",
isEnabled: true,
isHidden: false,
async call() {
return formatTotalCost();
},
userFacingName() {
return "cost";
}
};
var cost_default = cost;
export {
cost_default as default
};
//# sourceMappingURL=cost.js.map