-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yaml.example
More file actions
43 lines (36 loc) · 952 Bytes
/
config.yaml.example
File metadata and controls
43 lines (36 loc) · 952 Bytes
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
42
43
# Knowledge Bot Configuration
# Copy to config.yaml and modify as needed
rag:
# Number of documents to retrieve per search
top_k: 5
# Chunking settings
chunk_size: 1000
chunk_overlap: 200
llm:
provider: openai # "anthropic" (Claude) or "openai" (GPT)
model: gpt-4o # auto-detected if empty: claude-sonnet-4-20250514 / gpt-4o
max_tokens: 4096
temperature: 0.1
embedding:
provider: openai
model: text-embedding-3-small
sources:
confluence:
enabled: true
spaces: [] # e.g., ["DEV", "PM"]
sync_interval: "1h"
jira:
enabled: false
projects: [] # e.g., ["DT", "PROJ"]
sync_interval: "30m"
slack:
enabled: false
channels: [] # e.g., ["general", "dev"]
sync_interval: "1h"
github:
enabled: false
repos: [] # e.g., ["org/repo"]
include_issues: true
include_prs: true
include_readme: true
sync_interval: "2h"