Files
nexusAI/packages/chat-client/src/config/constants.js
2026-04-09 04:21:34 -07:00

14 lines
436 B
JavaScript

export const FALLBACK_MODELS = [
{ value: 'companion:latest', label: 'Companion' },
{ value: 'mistral-nemo:latest', label: 'Mistral Nemo' },
{ value: 'coder:latest', label: 'Coder' },
{ value: 'qwen2.5-coder:14b', label: 'Qwen 2.5 Coder 14B' },
];
export const DEFAULT_MODEL = FALLBACK_MODELS[0].value;
export const API_DEFAULTS = {
SESSIONS_LIMIT: 20,
HISTORY_LIMIT: 50,
OFFSET: 0,
}