@kenkaiiii/gg-agent 5.28.0 → 5.29.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.cjs +1 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +16 -1
- package/dist/index.d.ts +16 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -978,6 +978,7 @@ async function* agentLoop(messages, options) {
|
|
|
978
978
|
);
|
|
979
979
|
const executionResult = hasSequentialToolCall ? yield* executeToolCallsMixed(toolCalls, toolResults, executionOptions) : yield* executeToolCallsParallel(toolCalls, toolResults, executionOptions);
|
|
980
980
|
messages.push({ role: "tool", content: executionResult.toolResults });
|
|
981
|
+
yield { type: "checkpoint", turn };
|
|
981
982
|
const toolsAborted = executionResult.aborted;
|
|
982
983
|
if (fatalToolArgumentError) {
|
|
983
984
|
if (fatalToolArgumentRecoverable && !toolArgumentAutoContinueUsed) {
|