sofzcc commited on
Commit
2e0781c
Β·
verified Β·
1 Parent(s): 421c060

Update config.yaml

Browse files
Files changed (1) hide show
  1. config.yaml +12 -19
config.yaml CHANGED
@@ -1,37 +1,30 @@
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
  theme_color: "blue"
9
 
10
  kb:
11
  directory: "./kb"
12
- index_directory: "./.index"
13
 
14
  models:
15
  embedding: "sentence-transformers/all-MiniLM-L6-v2"
16
- qa: "deepset/roberta-base-squad2"
17
-
18
- thresholds:
19
- confidence: 0.25
20
- similarity: 0.35
21
 
22
  chunking:
23
- chunk_size: 800
24
- overlap: 200
25
 
26
  quick_actions:
27
  - label: "πŸ“š Getting Started"
28
- query: "How do I get started?"
29
- - label: "❓ FAQ"
30
- query: "What are frequently asked questions?"
31
- - label: "πŸ“ž Contact Support"
32
- query: "How do I contact support?"
33
 
34
  messages:
35
- welcome: "πŸ‘‹ How can I help? Ask me anything or use a quick action button below."
36
- no_answer: "❌ **I don't know the answer to that** but if you have any document with details I can learn about it."
37
- upload_prompt: "πŸ“€ Upload a relevant document above, and I'll be able to help you find the information you need!"
 
1
  # ========================================
2
+ # Simple Self-Service KB Assistant
3
  # ========================================
4
 
5
  client:
6
+ name: "Self-Service KB Assistant"
7
+ description: "Semantic search over a small knowledge base, returning relevant excerpts."
8
  theme_color: "blue"
9
 
10
  kb:
11
  directory: "./kb"
 
12
 
13
  models:
14
  embedding: "sentence-transformers/all-MiniLM-L6-v2"
 
 
 
 
 
15
 
16
  chunking:
17
+ chunk_size: 500
18
+ overlap: 100
19
 
20
  quick_actions:
21
  - label: "πŸ“š Getting Started"
22
+ query: "What makes a good knowledge base article?"
23
+ - label: "πŸ€– KB Assistant Use Cases"
24
+ query: "How could a KB assistant help agents?"
25
+ - label: "πŸ“ˆ Self-Service Benefits"
26
+ query: "Why is self-service important for customer support?"
27
 
28
  messages:
29
+ welcome: "πŸ‘‹ Ask me anything you'd normally search for in a knowledge base."
30
+ no_answer: "❌ I couldn't find anything relevant in the knowledge base for this query yet."