refactoring and clean up of chat cliet

This commit is contained in:
Storme-bit
2026-04-07 03:27:04 -07:00
parent 107ee5755e
commit 541e664da1
6 changed files with 43 additions and 30 deletions

View File

@@ -0,0 +1,14 @@
export const 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 = MODELS[0].value;
export const API_DEFAULTS = {
SESSIONS_LIMIT: 20,
HISTORY_LIMIT: 50,
OFFSET: 0,
}