Skip to content

Commit 111fb66

Browse files
committed
feat(tools): show tool name creator in suggestion for assistants
1 parent 208f7a7 commit 111fb66

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/lib/components/AssistantToolPicker.svelte

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,9 @@
116116
class="w-full cursor-pointer px-3 py-2 text-left hover:bg-blue-500 hover:text-white"
117117
>
118118
{suggestion.displayName}
119+
{#if suggestion.createdByName}
120+
<span class="text-xs text-gray-500"> by {suggestion.createdByName}</span>
121+
{/if}
119122
</button>
120123
{/each}
121124
</div>

0 commit comments

Comments
 (0)