import { Box, Text } from 'ink' import * as React from 'react' import { getTheme } from '../utils/theme' type Props = { tokenUsage: number } const MAX_TOKENS = 190_000 export const WARNING_THRESHOLD = MAX_TOKENS * 0.6 const ERROR_THRESHOLD = MAX_TOKENS * 0.8 export function TokenWarning({ tokenUsage }: Props): React.ReactNode { const theme = getTheme() if (tokenUsage < WARNING_THRESHOLD) { return null } const isError = tokenUsage >= ERROR_THRESHOLD return ( Context low ( {Math.max(0, 100 - Math.round((tokenUsage / MAX_TOKENS) * 100))}% remaining) · Run /compact to compact & continue ) }