assistme 0.6.4 → 0.6.5

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 CHANGED
@@ -4111,7 +4111,7 @@ async function runAnalysisQuery(model, prompt) {
4111
4111
  prompt,
4112
4112
  options: {
4113
4113
  model,
4114
- maxTurns: 1,
4114
+ maxTurns: 10,
4115
4115
  allowedTools: [],
4116
4116
  effort: "low",
4117
4117
  outputFormat: SELF_ANALYSIS_OUTPUT_FORMAT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "assistme",
3
- "version": "0.6.4",
3
+ "version": "0.6.5",
4
4
  "description": "AssistMe CLI Agent - AI-powered assistant that controls your real browser",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -356,7 +356,7 @@ async function runAnalysisQuery(model: string, prompt: string): Promise<unknown>
356
356
  prompt,
357
357
  options: {
358
358
  model,
359
- maxTurns: 1,
359
+ maxTurns: 10,
360
360
  allowedTools: [],
361
361
  effort: "low",
362
362
  outputFormat: SELF_ANALYSIS_OUTPUT_FORMAT,