disable todo tools by default in agent

pull/1317/head v0.3.69
Dax Raad 2025-07-25 10:23:23 -04:00
parent f307a5ce0b
commit d6b3bb0807
1 changed files with 4 additions and 1 deletions

View File

@ -44,7 +44,10 @@ export namespace Agent {
item = result[key] = {
name: key,
description: "",
tools: {},
tools: {
todowrite: false,
todoread: false,
},
}
const model = value.model ?? cfg.model
if (model) item.model = Provider.parseModel(model)