-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkeys.json
More file actions
41 lines (28 loc) · 1.25 KB
/
keys.json
File metadata and controls
41 lines (28 loc) · 1.25 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
{
"_comment": "All configuration options for the knowledge processing system",
"_comment_credentials": "Sensitive credentials are loaded from secret.json (ignored by git)",
"CHUNK_STRATEGY": "SEMANTIC",
"_chunk_strategy_options": "FIXED, OVERLAP, SENTENCE, PARAGRAPH, SEMANTIC, HYBRID, DOC_STRUCTURE, SLIDING_WINDOW",
"EMBED_MODEL": "EMB_3_LARGE",
"_embed_model_options": "ADA_002, EMB_3_SMALL, EMB_3_LARGE",
"LLM_MODEL": "gpt-4o",
"_llm_model_options": "gpt-4o, gpt-4o-mini, gpt-4-turbo",
"LLM_MAX_TOKENS": 1000,
"LLM_TEMPERATURE": 0.7,
"RAG_TOP_K": 10,
"_rag_top_k_range": "8-20",
"RAG_RERANK_METHOD": "MMR",
"_rag_rerank_options": "MMR, CROSS_ENCODER, LLM_RERANK",
"RAG_FINAL_CHUNKS": 5,
"_rag_final_chunks_range": "3-7",
"RAG_CONTEXT_MAX_TOKENS": 1500,
"_rag_context_max_tokens_range": "1000-1500",
"RAG_SYSTEM_PROMPT": "You are a retrieval-augmented assistant. Use only the provided context. Cite sources. If unsure, say you don't know.",
"RAG_MMR_DIVERSITY_THRESHOLD": 0.7,
"_rag_mmr_diversity_range": "0.5-0.9",
"CONVERSATION_MOOD": true,
"_conversation_mood_options": "true, false",
"NUMBER_OF_CONVERSATIONS_TO_STORE": 10,
"_conversations_to_store_range": "5-20",
"CONVERSATIONS": []
}