Merge branch 'main' into dev

This commit is contained in:
Timothy Jaeryang Baek 2023-12-05 19:56:28 -05:00 committed by GitHub
commit bd3e168e2f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 82 additions and 16 deletions

View file

@ -317,7 +317,21 @@
</div>
<div class=" mt-2 text-2xl text-gray-800 dark:text-gray-100 font-semibold">
{#if selectedModelfile}
{selectedModelfile.desc}
<span class=" capitalize">
{selectedModelfile.title}
</span>
<div class="mt-0.5 text-base font-normal text-gray-600 dark:text-gray-400">
{selectedModelfile.desc}
</div>
{#if selectedModelfile.user}
<div class="mt-0.5 text-sm font-normal text-gray-500 dark:text-gray-500">
By <a href="https://ollamahub.com/"
>{selectedModelfile.user.name
? selectedModelfile.user.name
: `@${selectedModelfile.user.username}`}</a
>
</div>
{/if}
{:else}
How can I help you today?
{/if}