forked from CaviraOSS/OpenMemory
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodels.yml
More file actions
49 lines (40 loc) · 1.22 KB
/
models.yml
File metadata and controls
49 lines (40 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# OpenMemory Embedding Models Configuration
# Configure which models to use for each brain sector and provider
# Provider settings (URLs, API keys, etc.) are in .env
# Sector-specific model mappings
# Each sector can use different models optimized for that type of memory
episodic:
ollama: nomic-embed-text
openai: text-embedding-3-small
gemini: models/embedding-001
local: all-MiniLM-L6-v2
semantic:
ollama: nomic-embed-text
openai: text-embedding-3-small
gemini: models/embedding-001
local: all-MiniLM-L6-v2
procedural:
ollama: nomic-embed-text
openai: text-embedding-3-small
gemini: models/embedding-001
local: all-MiniLM-L6-v2
emotional:
ollama: nomic-embed-text
openai: text-embedding-3-small
gemini: models/embedding-001
local: all-MiniLM-L6-v2
reflective:
ollama: nomic-embed-text
openai: text-embedding-3-large
gemini: models/embedding-001
local: all-mpnet-base-v2
# Available Ollama models (pull with: ollama pull <model>)
# - nomic-embed-text (768d, recommended)
# - mxbai-embed-large (1024d)
# - snowflake-arctic-embed (1024d)
# - all-minilm (384d, fast)
# OpenAI models:
# - text-embedding-3-small (1536d)
# - text-embedding-3-large (3072d)
# Gemini models:
# - models/embedding-001 (768d)