diff options
| author | Peter Stone <thepeterstone@gmail.com> | 2026-03-07 23:53:15 +0000 |
|---|---|---|
| committer | Peter Stone <thepeterstone@gmail.com> | 2026-03-08 05:18:41 +0000 |
| commit | ebdb12fc37c9c8db460827fdba1aa10e5b208cb9 (patch) | |
| tree | b0f4b12e9251b836e6efef283c9b7ad959c9692f /internal/config/config.go | |
| parent | f11f1f8c7d3ce9caca592323def9cc598e5c7392 (diff) | |
feat(wiring): configure GeminiRunner and update API server
Diffstat (limited to 'internal/config/config.go')
| -rw-r--r-- | internal/config/config.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/config/config.go b/internal/config/config.go index da7f264..a66524a 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -10,6 +10,7 @@ type Config struct { DBPath string `toml:"-"` LogDir string `toml:"-"` ClaudeBinaryPath string `toml:"claude_binary_path"` + GeminiBinaryPath string `toml:"gemini_binary_path"` MaxConcurrent int `toml:"max_concurrent"` DefaultTimeout string `toml:"default_timeout"` ServerAddr string `toml:"server_addr"` @@ -24,6 +25,7 @@ func Default() *Config { DBPath: filepath.Join(dataDir, "claudomator.db"), LogDir: filepath.Join(dataDir, "executions"), ClaudeBinaryPath: "claude", + GeminiBinaryPath: "gemini", MaxConcurrent: 3, DefaultTimeout: "15m", ServerAddr: ":8484", |
