-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontext.toml
More file actions
59 lines (54 loc) · 1.13 KB
/
Copy pathcontext.toml
File metadata and controls
59 lines (54 loc) · 1.13 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[common]
output = ".ctxt/ctx_index.json"
synonym_cache = ".ctxt/ctx_cache.json"
llm_model = "qwen3.5-4b"
batch_size = 0
synonyms = 10
ignore = [".git", ".venv", "site-packages", "__pycache__", "node_modules", "vendor", "dist"]
verbose = true
[llm]
# LLM provider name shown in logs (cosmetic)
provider = "local"
# API endpoint - OpenAI-compatible
endpoint = "https://llama.kentaylor.dev/v1/chat/completions"
# Model to use
model = "qwen3.5-4b"
# API key (not needed for local endpoint)
api_key = ""
# Environment variable containing API key (not needed for local)
api_key_env = ""
# Sampling parameters
temperature = 0.0
max_tokens = 0
[init]
root = "."
[watch]
root = "."
debounce = "750ms"
llm = true
persist = "shutdown"
persist_interval = "45s"
search_log = true
search_log_query_max = 120
max_batch_size = 0
[search]
index = "ctx_index.json"
limit = 5
min_score = 1
type = "all"
dir_summary = false
dir_limit = 5
drill_limit = 3
memory = true
runtime_file = "ctx_runtime.json"
explain = false
json = false
show_tokens = false
[eval]
index = "ctx_index.json"
cases = "ctx_cases.json"
limit = 5
min_score = 1
type = "all"
explain = false
json = false