@robota-sdk/agent-core 3.0.0-beta.17 → 3.0.0-beta.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4201,7 +4201,7 @@ declare const DEFAULT_CONTEXT_WINDOW = 200000;
4201
4201
  declare function getModelContextWindow(modelId: string): number;
4202
4202
  /** Get human-readable model name for a model ID. Falls back to the ID itself. */
4203
4203
  declare function getModelName(modelId: string): string;
4204
- /** Format token count as human-readable (e.g., 200K, 1M) */
4204
+ /** Format token count as human-readable (e.g., 200K, 1M, 1.2M). Minimum unit is K. */
4205
4205
  declare function formatTokenCount(tokens: number): string;
4206
4206
 
4207
4207
  /**