-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.toml.example
More file actions
38 lines (34 loc) · 1.13 KB
/
Copy pathconfig.toml.example
File metadata and controls
38 lines (34 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
[base]
db_path = "data/app.db"
lock_path = "data/app.lock"
codex_cli_cmd = "codex"
codex_cli_args = []
codex_cli_input_mode = "stdin"
codex_cli_skip_git_check = true
jsonl_sync_interval_seconds = 1
jsonl_reasoning_mode = "hidden"
message_chunk_limit = 3500
[[bots]]
name = "stock"
token = "${ENV:TELEGRAM_BOT_TOKEN_STOCK}"
allowed_user_ids = [123456789]
# Optional: resume_id (defaults to "auto") to follow latest session under codex_workdir
codex_workdir = "${ENV:CODEX_WORKDIR_STOCK}"
[[bots]]
name = "gateway"
token = "${ENV:TELEGRAM_BOT_TOKEN_GATEWAY}"
allowed_user_ids = [123456789]
# Optional: resume_id (defaults to "auto") to follow latest session under codex_workdir
codex_workdir = "${ENV:CODEX_WORKDIR_GATEWAY}"
[[bots]]
name = "comfyUI"
token = "${ENV:TELEGRAM_BOT_TOKEN_COMFYUI}"
allowed_user_ids = [123456789]
# Optional: resume_id (defaults to "auto") to follow latest session under codex_workdir
codex_workdir = "${ENV:CODEX_WORKDIR_COMFYUI}"
[[bots]]
name = "trader"
token = "${ENV:TELEGRAM_BOT_TOKEN_TRADER}"
allowed_user_ids = [123456789]
resume_id = "${ENV:CODEX_CLI_RESUME_ID_TRADER}"
codex_workdir = "${ENV:CODEX_WORKDIR_TRADER}"