-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrentl.toml.example
More file actions
74 lines (56 loc) · 1.21 KB
/
Copy pathrentl.toml.example
File metadata and controls
74 lines (56 loc) · 1.21 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[project]
schema_version = { major = 0, minor = 1, patch = 0 }
project_name = "local-validate"
[project.paths]
workspace_dir = "."
input_path = "input.txt"
output_dir = "out"
logs_dir = "logs"
[logging]
[[logging.sinks]]
type = "file"
[[logging.sinks]]
type = "console"
[agents]
prompts_dir = "packages/rentl-agents/prompts"
agents_dir = "packages/rentl-agents/agents"
[project.formats]
input_format = "txt"
output_format = "txt"
[project.languages]
source_language = "en"
target_languages = ["ja"]
[endpoint]
provider_name = "local"
base_url = "http://localhost:1234/v1"
api_key_env = "RENTL_LOCAL_API_KEY"
[pipeline.default_model]
model_id = "openai/gpt-oss-20b"
[[pipeline.phases]]
phase = "ingest"
[[pipeline.phases]]
phase = "context"
agents = ["scene_summarizer"]
[[pipeline.phases]]
phase = "pretranslation"
agents = ["idiom_labeler"]
[[pipeline.phases]]
phase = "translate"
agents = ["direct_translator"]
[[pipeline.phases]]
phase = "qa"
agents = ["style_guide_critic"]
[[pipeline.phases]]
phase = "edit"
agents = ["basic_editor"]
[[pipeline.phases]]
phase = "export"
[concurrency]
max_parallel_requests = 1
max_parallel_scenes = 1
[retry]
max_retries = 1
backoff_s = 1.0
max_backoff_s = 2.0
[cache]
enabled = false