Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion infra/.env
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ COMPOSE_PROFILES=local
# Local deployment defaults to the self-hosted Ollama container instead of a hosted API.
DEFAULT_LLM_MODEL=local
OLLAMA_BASE_URL=http://ollama:11434
LOCAL_LLM_MODEL=llama3.1
LOCAL_LLM_MODEL=llama3.2:1b

NOTE_SERVICE_URL=http://note-service-app:8005
CALENDAR_SERVICE_URL=http://calendar-service-app:8004
Expand Down
1 change: 1 addition & 0 deletions web-client/src/routes/_authenticated/chat/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ const MODEL_DISPLAY_NAMES: Record<string, string> = {
'mistral-small-latest': 'Mistral Small',
'command-r': 'Cohere Command R',
'llama3.1': 'Llama 3.1 (Ollama)',
'llama3.2:1b': 'Llama 3.2 1B (Ollama)',
'gemini-3.1-flash-lite': 'Gemini 3.1 Flash Lite',
};

Expand Down
Loading