24 lines
423 B
Python
24 lines
423 B
Python
md5_path = "./md5.text"
|
||
|
||
# Chroma
|
||
collection_name = "rag"
|
||
persist_directory = "./chroma_db"
|
||
|
||
# spliter
|
||
chunk_size = 1000
|
||
chunk_overlap = 100
|
||
separators = ["\n\n", "\n", ".", "!", "?", "。", " ", ",", ","]
|
||
max_split_char_number = 100
|
||
|
||
#
|
||
similarity_threshold = 1
|
||
|
||
embedding_model_name = "text-embedding-v4"
|
||
chat_model_name = "qwen3-max"
|
||
|
||
session_config = {
|
||
"configurable": {
|
||
"session_id": "user_001",
|
||
}
|
||
}
|