mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2026-05-20 17:54:31 +00:00
* webui: architecture foundation (non-MCP core refactors) * chore: update webui build output
8 lines
313 B
TypeScript
8 lines
313 B
TypeScript
export const MS_PER_SECOND = 1000;
|
|
export const SECONDS_PER_MINUTE = 60;
|
|
export const SECONDS_PER_HOUR = 3600;
|
|
export const SHORT_DURATION_THRESHOLD = 1;
|
|
export const MEDIUM_DURATION_THRESHOLD = 10;
|
|
|
|
/** Default display value when no performance time is available */
|
|
export const DEFAULT_PERFORMANCE_TIME = '0s';
|