{$i18n.t('Available Tools')}
{#if selectedTools.length > 0} {#if $toolServers.length > 0}
{$i18n.t('Tools')}
{/if}
{#each selectedTools as tool}
{tool?.name}
{#if tool?.meta?.description}
{tool?.meta?.description}
{/if}
{/each}
{/if} {#if $toolServers.length > 0}
{$i18n.t('Tool Servers')}
{$i18n.t('Open WebUI can use tools provided by any OpenAPI server.')}
{$i18n.t('Learn more about OpenAPI tool servers.')}
{#each $toolServers as toolServer}
{toolServer?.openapi?.info?.title} - v{toolServer?.openapi?.info?.version}
{toolServer?.openapi?.info?.description}
{toolServer?.url}
{#each toolServer?.specs ?? [] as tool_spec}
{tool_spec?.name}
{tool_spec?.description}
{/each}
{/each}
{/if}