@vectorize-io/self-driving-agents 0.0.14 → 0.0.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +3 -0
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -918,6 +918,9 @@ async function main() {
|
|
|
918
918
|
ccConfig.dynamicBankId = true;
|
|
919
919
|
ccConfig.dynamicBankGranularity = expectedGranularity;
|
|
920
920
|
ccConfig.enableKnowledgeTools = true;
|
|
921
|
+
// SDA agents need auto-retain to capture conversation context for the agent's bank
|
|
922
|
+
if (ccConfig.autoRetain === undefined)
|
|
923
|
+
ccConfig.autoRetain = true;
|
|
921
924
|
mkdirSync(ccConfigDir, { recursive: true });
|
|
922
925
|
writeFileSync(ccConfigPath, JSON.stringify(ccConfig, null, 2) + "\n");
|
|
923
926
|
p.log.success(`Plugin config: ${color.dim(ccConfigPath)}`);
|