mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2026-05-22 03:10:03 +00:00
* webui: architecture foundation (non-MCP core refactors) * chore: update webui build output
7 lines
251 B
TypeScript
7 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;
|