feat(config): enable BrowserAction and GoEval tools by default
This change enables the `BrowserAction` and `GoEval` tools by default in `pkg/config/defaults.go`. This allows the agent to execute autonomous system-level tasks and interact with web browsers without requiring manual configuration, fulfilling the objective of transitioning the agent from passive information retrieval to active task execution. Co-authored-by: hobbyistlabs-coder <267281733+hobbyistlabs-coder@users.noreply.github.com>
This commit is contained in:
parent
7733e5c61d
commit
a3b4764353
1 changed files with 6 additions and 0 deletions
|
|
@ -490,6 +490,12 @@ func DefaultConfig() *Config {
|
||||||
WriteFile: ToolConfig{
|
WriteFile: ToolConfig{
|
||||||
Enabled: true,
|
Enabled: true,
|
||||||
},
|
},
|
||||||
|
BrowserAction: ToolConfig{
|
||||||
|
Enabled: true,
|
||||||
|
},
|
||||||
|
GoEval: ToolConfig{
|
||||||
|
Enabled: true,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
Heartbeat: HeartbeatConfig{
|
Heartbeat: HeartbeatConfig{
|
||||||
Enabled: true,
|
Enabled: true,
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue