Arguments

{JSON.stringify(toolCall.arguments, null, 2)}
{#if isShell && toolCall.result !== undefined} {#if shellResult !== null}

stdout:

{shellResult.stdout || "(empty)"}
{#if shellResult.stderr}

stderr:

{shellResult.stderr}
{/if}
exit code: {shellResult.exitCode}
{:else}

Result

{toolCall.result}
{/if} {:else if isShell && toolCall.shellOutput} {#if toolCall.shellOutput.stdout}

stdout

{toolCall.shellOutput.stdout}
{/if} {#if toolCall.shellOutput.stderr}

stderr

{toolCall.shellOutput.stderr}
{/if} Running... {:else if toolCall.result !== undefined}

Result

{toolCall.result}
{/if}