{#if atSelectedModel !== undefined || selectedToolIds.length > 0 || webSearchEnabled}
{#if atSelectedModel !== undefined}
model.id === atSelectedModel.id)?.info?.meta
?.profile_image_url ??
($i18n.language === 'dg-DG'
? `/doge.png`
: `${WEBUI_BASE_URL}/static/favicon.png`)}
/>
Talking to {atSelectedModel.name}
{/if}
{#if selectedToolIds.length > 0}
{selectedToolIds
.map((id) => {
return $tools.find((tool) => tool.id === id)?.name;
})
.join(', ')}
{/if}
{#if webSearchEnabled}
{$i18n.t('Search the web')}
{/if}