-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yaml.example
More file actions
34 lines (26 loc) · 1.12 KB
/
Copy pathconfig.yaml.example
File metadata and controls
34 lines (26 loc) · 1.12 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
# jbuntai configuration
# Place this file at ~/.config/jbuntai/config.yaml
# Maximum consecutive kanji characters before inserting a boundary.
# Default: 5
max_kanji_run: 5
# LLM settings for disambiguation and finishing passes.
llm:
# LLM backend to use: "claudecode" or "codex".
# - claudecode: uses Claude Code CLI (requires `claude` command)
# - codex: uses ChatGPT Responses API via OAuth PKCE (requires ChatGPT subscription)
# Default: "codex"
backend: "codex"
# Use LLM for word boundary disambiguation.
# Default: true
disambiguate: true
# Model for disambiguation (empty = backend default: claudecode=haiku, codex=gpt-5.4-mini).
# disambiguate_model: ""
# Reasoning effort for disambiguation — codex only (none/low/medium/high/xhigh, empty = default: none).
# disambiguate_reasoning: ""
# Use LLM for finishing pass (polishing output).
# Default: true
finish: true
# Model for finishing (empty = backend default: claudecode=sonnet, codex=gpt-5.4).
# finish_model: ""
# Reasoning effort for finishing — codex only (none/low/medium/high/xhigh, empty = default: low).
# finish_reasoning: ""