import React from "react"; import { Box, Text } from "ink"; export function TokenCounter({ tokensIn = 0, tokensOut = 0, costUsd = 0, model }) { return ( In: {tokensIn.toLocaleString()} Out: {tokensOut.toLocaleString()} Cost: ${costUsd.toFixed(4)} {model && Model: {model}} ); }