sofzcc commited on
Commit
049762b
Β·
verified Β·
1 Parent(s): 3f86d04

Create config.yaml

Browse files
Files changed (1) hide show
  1. config.yaml +38 -0
config.yaml ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ========================================
2
+ # Default/Generic Configuration
3
+ # ========================================
4
+
5
+ client:
6
+ name: "Knowledge Assistant"
7
+ description: "AI-powered Q&A with document retrieval and citation"
8
+ logo: null
9
+ theme_color: "blue"
10
+
11
+ kb:
12
+ directory: "./kb"
13
+ index_directory: "./.index"
14
+
15
+ models:
16
+ embedding: "sentence-transformers/all-MiniLM-L6-v2"
17
+ qa: "deepset/roberta-base-squad2"
18
+
19
+ thresholds:
20
+ confidence: 0.25
21
+ similarity: 0.35
22
+
23
+ chunking:
24
+ chunk_size: 800
25
+ overlap: 200
26
+
27
+ quick_actions:
28
+ - label: "πŸ“š Getting Started"
29
+ query: "How do I get started?"
30
+ - label: "❓ FAQ"
31
+ query: "What are frequently asked questions?"
32
+ - label: "πŸ“ž Contact Support"
33
+ query: "How do I contact support?"
34
+
35
+ messages:
36
+ welcome: "πŸ‘‹ How can I help? Ask me anything or use a quick action button below."
37
+ no_answer: "❌ **I don't know the answer to that** but if you have any document with details I can learn about it."
38
+ upload_prompt: "πŸ“€ Upload a relevant document above, and I'll be able to help you find the information you need!"