diff options
| author | Peter Stone <thepeterstone@gmail.com> | 2026-05-01 22:14:37 -1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-01 22:14:37 -1000 |
| commit | 99115d8158137083239c45e5a860b718ff4cefa1 (patch) | |
| tree | 1bf3bd0505eea79375c67af83c7c5fe8c0f274ff /internal/task | |
| parent | c2aa026f6ce1c9e216b99d74f294fc133d5fcddd (diff) | |
| parent | 50f8fe8c1ff8b82e0bd399e5776e58bda3e57d1c (diff) | |
Merge pull request #1 from thepeterstone/claude/local-oss-model-agents-MEBqj
Local OSS models as a third runner (epic)
Diffstat (limited to 'internal/task')
| -rw-r--r-- | internal/task/task.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/internal/task/task.go b/internal/task/task.go index b3660d3..fd1dde6 100644 --- a/internal/task/task.go +++ b/internal/task/task.go @@ -40,6 +40,11 @@ type AgentConfig struct { SystemPromptAppend string `yaml:"system_prompt_append" json:"system_prompt_append"` AdditionalArgs []string `yaml:"additional_args" json:"additional_args"` SkipPlanning bool `yaml:"skip_planning" json:"skip_planning"` + + // Local-runner sampling controls. Pointer for Temperature so a 0 value can + // mean "deterministic" rather than "unset, use server default". + Temperature *float64 `yaml:"temperature,omitempty" json:"temperature,omitempty"` + MaxTokens int `yaml:"max_tokens,omitempty" json:"max_tokens,omitempty"` } |
