@ikyyofc/gemini-cli 1.0.7 → 1.0.9

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/index.js CHANGED
@@ -127,7 +127,7 @@ async function send(rawLine) {
127
127
  const res = await runAgentLoop(userText, history, {
128
128
  systemInstruction: sysInstruction(),
129
129
  autoApprove,
130
- maxIterations: 40,
130
+ maxIterations: 5000,
131
131
  });
132
132
  if (res?.finalResponse) {
133
133
  history.push({ role: "user", content: userText });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ikyyofc/gemini-cli",
3
- "version": "1.0.7",
3
+ "version": "1.0.9",
4
4
  "description": "AI CLI Agent powered by Gemini — your own terminal assistant",
5
5
  "type": "module",
6
6
  "main": "index.js",
package/src/agent.js CHANGED
@@ -50,6 +50,7 @@ export async function runAgentLoop(userMessage, history, {
50
50
  } catch (err) {
51
51
  spinner.fail(chalk.hex("#F44747")("API error"));
52
52
  printError(err.message);
53
+ printError(err.response.data);
53
54
  return null;
54
55
  }
55
56