-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathconfig.toml
More file actions
44 lines (38 loc) · 1.22 KB
/
config.toml
File metadata and controls
44 lines (38 loc) · 1.22 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
# Codex CLI Configuration
# This configuration uses LiteLLM as the model provider gateway
# See: https://docs.litellm.ai/docs/simple_proxy
model = "gpt-5.4"
model_provider = "github"
model_verbosity = "medium"
approval_policy = "on-request"
sandbox_mode = "workspace-write"
model_reasoning_effort = "high"
suppress_unstable_features_warning = true
web_search = "disabled" # live
personality = "pragmatic"
[features]
skills = true
unified_exec = true
shell_snapshot = true
multi_agent = true
steer = true
collaboration_modes = true
personality = true
voice_transcription = true
# Model providers (LiteLLM as Github Copilot proxy)
[model_providers.github]
name = "Github"
base_url = "http://localhost:4000"
http_headers = { "Authorization"= "Bearer sk-dummy" }
wire_api = "responses"
[sandbox_workspace_write]
network_access = true
# MCP Tools
[mcp_servers.claude]
command = "claude"
args = ["mcp", "serve"]
[mcp_servers.chrome]
command = "npx"
args = ["chrome-devtools-mcp@latest", "--no-usage-statistics", "--autoConnect"]
[tui]
status_line = ["model-with-reasoning", "context-remaining", "current-dir", "model-name", "git-branch", "context-used", "context-window-size", "used-tokens", "total-output-tokens", "five-hour-limit", "weekly-limit"]