mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2026-08-12 22:31:11 +04:00
* feat(ui): add symbolic math support to JS sandbox via nerdamer Preload nerdamer (with decimal.js) in the sandboxed worker, exposing the `nerdamer` global for symbolic computation: simplify, expand, factor, diff, integrate, solve, laplace, ilt, limit, partfrac, gcd/lcm, roots, coefficients, and more. Mirrors the math.js integration pattern from the feature/sandbox-symbolic-math branch, but uses nerdamer for a lighter, more focused symbolic math engine. * Update sandbox-harness.ts * docs(ui): update sandbox tool description with detailed nerdamer usage guide * Clarify nerdamer usage in sandbox tool description Updated the description of the sandbox tool to clarify usage of nerdamer. * ui: build nerdamer sandbox prelude from vendored source Replace the vendored all.min.js with the readable nerdamer-prime source and its two bundled deps (big-integer, decimal.js), licenses included. A vite plugin bundles and minifies them at build time with the upstream esbuild flags, exposed as virtual:nerdamer and imported lazily on first sandbox use. The vendors package.json pins commonjs so the project level type: module does not break esbuild format detection. The harness gains a CSP removing network egress from the worker, and browser tests cover the prelude, exact arithmetic, the fetch block and the timeout. Upstream snapshot: together-science/nerdamer-prime@1936145 * feat(ui): make symbolic math (nerdamer) a user-toggleable setting - Add SYMBOLIC_MATH_ENABLED setting key and registry entry (checkbox, default false) - Convert SANDBOX_TOOL_DEFINITION to buildSandboxToolDefinition(includeSymbolicMath) so the tool description includes/excludes nerdamer API docs dynamically - Cache sandbox harness per variant ('nerdamer' / 'plain') for instant toggle - Deprecate SANDBOX_TOOL_DEFINITION constant alias for backward compatibility - Update tools store to pass symbolic math config into tool definition * docs(ui): tell LLM to list nerdamer functions first, do not guess * test(ui): enable symbolic math in sandbox tests via settingsStore config * style(ui): fix formatting for tools.svelte.ts --------- Co-authored-by: Pascal <admin@serveurperso.com>
75 lines
2.7 KiB
TypeScript
75 lines
2.7 KiB
TypeScript
/**
|
|
* Settings key constants for ChatSettings configuration.
|
|
*
|
|
* These keys correspond to properties in SettingsConfigType and are used
|
|
* in settings field configurations to ensure consistency.
|
|
*/
|
|
export const SETTINGS_KEYS = {
|
|
// General
|
|
THEME: 'theme',
|
|
API_KEY: 'apiKey',
|
|
SYSTEM_MESSAGE: 'systemMessage',
|
|
PASTE_LONG_TEXT_TO_FILE_LEN: 'pasteLongTextToFileLen',
|
|
COPY_TEXT_ATTACHMENTS_AS_PLAIN_TEXT: 'copyTextAttachmentsAsPlainText',
|
|
SEND_ON_ENTER: 'sendOnEnter',
|
|
ENABLE_CONTINUE_GENERATION: 'enableContinueGeneration',
|
|
PDF_AS_IMAGE: 'pdfAsImage',
|
|
TITLE_GENERATION_USE_FIRST_LINE: 'titleGenerationUseFirstLine',
|
|
TITLE_GENERATION_USE_LLM: 'titleGenerationUseLLM',
|
|
TITLE_GENERATION_PROMPT: 'titleGenerationPrompt',
|
|
MAX_IMAGE_RESOLUTION: 'maxImageMPixels',
|
|
// Display
|
|
SHOW_MESSAGE_STATS: 'showMessageStats',
|
|
SHOW_AGENTIC_TURN_STATS: 'showAgenticTurnStats',
|
|
SHOW_THOUGHT_IN_PROGRESS: 'showThoughtInProgress',
|
|
AUTO_MIC_ON_EMPTY: 'autoMicOnEmpty',
|
|
RENDER_USER_CONTENT_AS_MARKDOWN: 'renderUserContentAsMarkdown',
|
|
DISABLE_AUTO_SCROLL: 'disableAutoScroll',
|
|
ALWAYS_SHOW_SIDEBAR_ON_DESKTOP: 'alwaysShowSidebarOnDesktop',
|
|
FULL_HEIGHT_CODE_BLOCKS: 'fullHeightCodeBlocks',
|
|
SHOW_RAW_MODEL_NAMES: 'showRawModelNames',
|
|
SHOW_MODEL_QUANTIZATION: 'showModelQuantization',
|
|
SHOW_MODEL_TAGS: 'showModelTags',
|
|
SHOW_BUILD_VERSION: 'showBuildVersion',
|
|
SHOW_SYSTEM_MESSAGE: 'showSystemMessage',
|
|
RENDER_THINKING_AS_MARKDOWN: 'renderThinkingAsMarkdown',
|
|
// Sampling
|
|
TEMPERATURE: 'temperature',
|
|
DYNATEMP_RANGE: 'dynatemp_range',
|
|
DYNATEMP_EXPONENT: 'dynatemp_exponent',
|
|
TOP_K: 'top_k',
|
|
TOP_P: 'top_p',
|
|
MIN_P: 'min_p',
|
|
XTC_PROBABILITY: 'xtc_probability',
|
|
XTC_THRESHOLD: 'xtc_threshold',
|
|
TYP_P: 'typ_p',
|
|
MAX_TOKENS: 'max_tokens',
|
|
SAMPLERS: 'samplers',
|
|
BACKEND_SAMPLING: 'backend_sampling',
|
|
// Penalties
|
|
REPEAT_LAST_N: 'repeat_last_n',
|
|
REPEAT_PENALTY: 'repeat_penalty',
|
|
PRESENCE_PENALTY: 'presence_penalty',
|
|
FREQUENCY_PENALTY: 'frequency_penalty',
|
|
DRY_MULTIPLIER: 'dry_multiplier',
|
|
DRY_BASE: 'dry_base',
|
|
DRY_ALLOWED_LENGTH: 'dry_allowed_length',
|
|
DRY_PENALTY_LAST_N: 'dry_penalty_last_n',
|
|
// MCP
|
|
MCP_SERVERS: 'mcpServers',
|
|
MCP_REQUEST_TIMEOUT_SECONDS: 'mcpRequestTimeoutSeconds',
|
|
AGENTIC_MAX_TURNS: 'agenticMaxTurns',
|
|
ALWAYS_SHOW_TOOL_CALL_CONTENT: 'alwaysShowToolCallContent',
|
|
// Performance
|
|
PRE_ENCODE_CONVERSATION: 'preEncodeConversation',
|
|
// Developer
|
|
DISABLE_REASONING_PARSING: 'disableReasoningParsing',
|
|
EXCLUDE_REASONING_FROM_CONTEXT: 'excludeReasoningFromContext',
|
|
SHOW_RAW_OUTPUT_SWITCH: 'showRawOutputSwitch',
|
|
JS_SANDBOX_ENABLED: 'jsSandboxEnabled',
|
|
SYMBOLIC_MATH_ENABLED: 'symbolicMathEnabled',
|
|
// PY_INTERPRETER_ENABLED: 'pyInterpreterEnabled',
|
|
CUSTOM_JSON: 'customJson',
|
|
CUSTOM_CSS: 'customCss'
|
|
} as const;
|