mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2026-07-11 05:30:20 +00:00
38adc7d469
* webui: architecture foundation (non-MCP core refactors) * chore: update webui build output
9 lines
148 B
TypeScript
9 lines
148 B
TypeScript
export const PROCESSING_INFO_TIMEOUT = 2000;
|
|
|
|
/**
|
|
* Statistics units labels
|
|
*/
|
|
export const STATS_UNITS = {
|
|
TOKENS_PER_SECOND: 't/s'
|
|
} as const;
|