const agent = new Agent({
...
tools: { findJobsTool, findNotesTool },
memory: new Memory({
options: {
lastMessages: 20,
threads: {
generateTitle: true,
},
workingMemory: {
enabled: true,
scope: "resource",
template: `## User Information...`
}
}
})
})
const agent = new Agent({
...
tools: { findJobsTool, findNotesTool },
memory: new Memory({
options: {
lastMessages: 20,
threads: {
generateTitle: true,
},
workingMemory: {
enabled: true,
scope: "resource",
template: `## User Information...`
}
}
})
})