MCPcopy Create free account
hub / github.com/OperationT00/T-Code / formatTokens

Method formatTokens

src/main/java/com/tcode/agent/Agent.java:540–544  ·  view source on GitHub ↗
(int tokens)

Source from the content-addressed store, hash-verified

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 * 获取工具注册表(用于同步项目路径等配置)

Callers 2

getContextStatusMethod · 0.95
formatLineMethod · 0.95

Calls 1

formatMethod · 0.45

Tested by

no test coverage detected