mirror of https://github.com/OpenSPG/KAG
33 lines
524 B
INI
33 lines
524 B
INI
|
|
[project]
|
|
with_server = True
|
|
host_addr = http://127.0.0.1:8887
|
|
|
|
[vectorizer]
|
|
vectorizer = knext.common.vectorizer.OpenAIVectorizer
|
|
model = bge-m3
|
|
api_key = EMPTY
|
|
base_url = http://127.0.0.1:11434/v1
|
|
vector_dimensions = 1024
|
|
|
|
[llm]
|
|
client_type = ollama
|
|
base_url = http://localhost:11434/api/generate
|
|
model = llama3.1
|
|
|
|
|
|
[indexer]
|
|
with_semantic = False
|
|
similarity_threshold = 0.8
|
|
|
|
[retriever]
|
|
with_semantic = False
|
|
pagerank_threshold = 0.9
|
|
match_threshold = 0.8
|
|
top_k = 10
|
|
|
|
[schedule]
|
|
interval_minutes = -1
|
|
|
|
[log]
|
|
level = INFO |