{#if open}
{#if tool.liveOutput}
Live output
{tool.liveOutput}
{/if} {#if tool.args}
Args
{JSON.stringify(
              tool.args,
              null,
              2
            )}
{/if} {#if tool.result !== undefined && tool.result !== null}
Result
{JSON.stringify(
              tool.result,
              null,
              2
            )}
{/if} {#if tool.error}
Error
{tool.error}
{/if}
{/if}