enh: prepend image filename with prompt

This commit is contained in:
Timothy J. Baek
2024-09-18 01:04:20 +02:00
parent 63b3076d64
commit 614c219010
2 changed files with 4 additions and 4 deletions

View File

@@ -344,7 +344,7 @@
{#each message.files as file}
<div>
{#if file.type === 'image'}
<Image src={file.url} />
<Image src={file.url} alt={message.content} />
{/if}
</div>
{/each}