clawcompany 0.34.0 → 0.35.0
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/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2149,7 +2149,7 @@ import { join } from "path";
|
|
|
2149
2149
|
import { existsSync, readFileSync, writeFileSync, mkdirSync } from "fs";
|
|
2150
2150
|
function banner() {
|
|
2151
2151
|
console.log("");
|
|
2152
|
-
console.log(" \u{1F99E} ClawCompany v0.
|
|
2152
|
+
console.log(" \u{1F99E} ClawCompany v0.35.0");
|
|
2153
2153
|
console.log(" Build for OPC. Every human being is a chairman.");
|
|
2154
2154
|
console.log("");
|
|
2155
2155
|
}
|
|
@@ -3510,7 +3510,7 @@ var AgentExecutor = class {
|
|
|
3510
3510
|
content: this.buildTaskPrompt(task)
|
|
3511
3511
|
}
|
|
3512
3512
|
];
|
|
3513
|
-
const MAX_TURNS =
|
|
3513
|
+
const MAX_TURNS = 25;
|
|
3514
3514
|
for (let turn = 0; turn < MAX_TURNS; turn++) {
|
|
3515
3515
|
const response = await this.router.chatAsRole(
|
|
3516
3516
|
role2.id,
|
package/package.json
CHANGED