-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbrain.yml
More file actions
66 lines (55 loc) · 1.16 KB
/
brain.yml
File metadata and controls
66 lines (55 loc) · 1.16 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
database:
path: "storage/brain.db"
wal_mode: true
fts_enabled: true
vector_extension: "sqlite-vec"
services:
ingestion:
port: 8001
workers: 4
batch_size: 100
max_file_size: "50MB"
search:
port: 8002
embedding_model: "sentence-transformers/all-MiniLM-L6-v2"
vector_dimensions: 384
similarity_threshold: 0.7
knowledge:
port: 8003
entity_model: "en_core_web_sm"
min_confidence: 0.8
chat:
port: 8004
context_window: 4000
memory_turns: 10
interfaces:
cli:
pager: "less"
editor: "nvim"
colors: true
web:
port: 8000
debug: false
template_dir: "templates"
static_dir: "static"
connectors:
filesystem:
supported_types: [".txt", ".md", ".pdf", ".docx", ".py", ".cpp", ".h"]
ignore_patterns: ["*.pyc", "__pycache__", ".git"]
web:
user_agent: "SecondBrain/1.0"
timeout: 30
max_depth: 3
git:
include_history: true
analyze_diffs: true
exclude_binaries: true
embeddings:
model_path: "storage/models/"
cache_size: 1000
batch_size: 32
device: "cpu"
logging:
level: "INFO"
structured: true
file_path: "logs/brain.log"