(int tokens)
| 538 | } |
| 539 | |
| 540 | private static String formatTokens(int tokens) { |
| 541 | if (tokens >= 1_000_000) return String.format("%.1fM", tokens / 1_000_000.0); |
| 542 | if (tokens >= 1_000) return String.format("%.1fk", tokens / 1_000.0); |
| 543 | return String.valueOf(tokens); |
| 544 | } |
| 545 | |
| 546 | /** |
| 547 | * 获取工具注册表(用于同步项目路径等配置) |
no test coverage detected