Merge pull request #727 from code-yeongyu/feat/disable-call-omo-agent-default
feat(tools): disable call_omo_agent by default, enable via sisyphus_task
This commit is contained in:
commit
9048b616e3
@ -152,7 +152,6 @@ export class BackgroundManager {
|
|||||||
system: input.skillContent,
|
system: input.skillContent,
|
||||||
tools: {
|
tools: {
|
||||||
task: false,
|
task: false,
|
||||||
call_omo_agent: false,
|
|
||||||
},
|
},
|
||||||
parts: [{ type: "text", text: input.prompt }],
|
parts: [{ type: "text", text: input.prompt }],
|
||||||
},
|
},
|
||||||
@ -313,7 +312,6 @@ export class BackgroundManager {
|
|||||||
agent: existingTask.agent,
|
agent: existingTask.agent,
|
||||||
tools: {
|
tools: {
|
||||||
task: false,
|
task: false,
|
||||||
call_omo_agent: false,
|
|
||||||
},
|
},
|
||||||
parts: [{ type: "text", text: input.prompt }],
|
parts: [{ type: "text", text: input.prompt }],
|
||||||
},
|
},
|
||||||
|
|||||||
@ -282,6 +282,7 @@ export function createConfigHandler(deps: ConfigHandlerDeps) {
|
|||||||
config.tools = {
|
config.tools = {
|
||||||
...(config.tools as Record<string, unknown>),
|
...(config.tools as Record<string, unknown>),
|
||||||
"grep_app_*": false,
|
"grep_app_*": false,
|
||||||
|
call_omo_agent: false,
|
||||||
};
|
};
|
||||||
|
|
||||||
if (agentResult.explore) {
|
if (agentResult.explore) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user