{meta.label}
{call.name}
{#if argEntries.length > 0}
{@const [firstKey, firstValue] = argEntries[0]}
{#if call.name === 'web_search' && typeof firstValue === 'string'}
Searching: "{firstValue}"
{:else if call.name === 'fetch_url' && typeof firstValue === 'string'}
{firstValue}
{:else if call.name === 'get_location'}
Detecting user location...
{:else if call.name === 'calculate' && typeof firstValue === 'string'}
{firstValue}
{:else}
{formatValue(firstValue)}
{/if}
{/if}