/
vshmidt
/
llama.cpp
Обзор
Документация
Войти
/
vshmidt
/
llama.cpp
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tools/server/webui/src/lib/constants/settings-sections.ts
19 строк
580 B
Aleksander Grygier
webui: Agentic Loop + MCP Client with support for Tools, Resources and Prompts (#18655)
06 мар 2026, 12:00
Не верифицирован
06 мар 2026, 12:00
f6235a4
Код
Авторство
О чём код?
/** * Settings section titles constants for ChatSettings component. * * These titles define the navigation sections in the settings dialog. * Used for both sidebar navigation and mobile horizontal scroll menu. */ export const SETTINGS_SECTION_TITLES = { GENERAL: 'General', DISPLAY: 'Display', SAMPLING: 'Sampling', PENALTIES: 'Penalties', IMPORT_EXPORT: 'Import/Export', MCP: 'MCP', DEVELOPER: 'Developer' } as const; /** Type for settings section titles */ export type SettingsSectionTitle = (typeof SETTINGS_SECTION_TITLES)[keyof typeof SETTINGS_SECTION_TITLES];