mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2026-07-31 07:00:47 -05:00
* webui: architecture foundation (non-MCP core refactors) * chore: update webui build output
8 lines
251 B
TypeScript
8 lines
251 B
TypeScript
export const NEWLINE = '\n';
|
|
export const DEFAULT_LANGUAGE = 'text';
|
|
export const LANG_PATTERN = /^(\w*)\n?/;
|
|
export const AMPERSAND_REGEX = /&/g;
|
|
export const LT_REGEX = /</g;
|
|
export const GT_REGEX = />/g;
|
|
export const FENCE_PATTERN = /^```|\n```/g;
|