-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yaml
More file actions
67 lines (58 loc) · 1.38 KB
/
Copy pathconfig.yaml
File metadata and controls
67 lines (58 loc) · 1.38 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
# Coddy HTTP stack. Mount: ./config.yaml -> /home/user/.coddy/config.yaml
# API key from https://hub.neuraldeep.ru/ (sk-...) -> https://api.neuraldeep.ru/v1
providers:
- name: neuraldeep
type: openai
api_base: "https://api.neuraldeep.ru/v1"
api_key: "${NEURALDEEP_API_KEY}"
models:
- model: "neuraldeep/gpt-oss-120b"
max_tokens: 8192
temperature: 0.2
- model: "neuraldeep/qwen3.6-35b-a3b"
max_tokens: 8192
temperature: 0.2
- model: "neuraldeep/qwen3.6-35b-a3b-noreason"
max_tokens: 8192
temperature: 0.2
agent:
model: "neuraldeep/gpt-oss-120b"
max_turns: 30
max_tokens_per_turn: 200000
sessions:
dir: ""
skills:
install_dir: ""
# Symlinks in workspace/.coddy/skills/ -> ../../../skills_cache/...
# Each entry is one skill folder with SKILL.md; rpa-skills is split per skill.
dirs:
- "/workspace/.coddy/skills"
mcp_servers:
- name: atlassian
type: http
url: "http://atlassian-mcp:9999/mcp"
tools:
require_permission_for_commands: true
require_permission_for_writes: false
restrict_to_cwd: true
command_allowlist:
- "gh"
- "glab"
- "aws"
- "yt-dlp"
- "go build"
- "go test"
- "go vet"
- "go fmt"
- "go mod tidy"
- "make"
- "git status"
- "git diff"
- "git log"
- "npx skillsbd"
httpserver:
host: "0.0.0.0"
port: 12345
logger:
level: "info"
format: "text"