Skip to content

Commit ce4f3b5

Browse files
committed
feat: add tree community config example
1 parent 07a9c3b commit ce4f3b5

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
{
2+
"extractor_llm": {
3+
"backend": "ollama",
4+
"config": {
5+
"model_name_or_path": "qwen3:0.6b",
6+
"temperature": 0.0,
7+
"remove_think_prefix": true,
8+
"max_tokens": 8192
9+
}
10+
},
11+
"dispatcher_llm": {
12+
"backend": "ollama",
13+
"config": {
14+
"model_name_or_path": "qwen3:0.6b",
15+
"temperature": 0.0,
16+
"remove_think_prefix": true,
17+
"max_tokens": 8192
18+
}
19+
},
20+
"embedder": {
21+
"backend": "ollama",
22+
"config": {
23+
"model_name_or_path": "nomic-embed-text:latest"
24+
}
25+
},
26+
"graph_db": {
27+
"backend": "neo4j-community",
28+
"config": {
29+
"uri": "bolt://localhost:7687",
30+
"user": "neo4j",
31+
"password": "12345678",
32+
"db_name": "neo4j",
33+
"user_name": "alice",
34+
"use_multi_db": false,
35+
"auto_create": false,
36+
"embedding_dimension": 768,
37+
"vec_config": {
38+
"backend": "qdrant",
39+
"config": {
40+
"collection_name": "shared-db-community-20250719",
41+
"vector_dimension": 768,
42+
"distance_metric": "cosine",
43+
"path": "./qdrant_data"
44+
}
45+
}
46+
}
47+
},
48+
"reorganize": false
49+
}

0 commit comments

Comments
 (0)