Spaces:
Paused
Paused
feat(tools): show tool name creator in suggestion for assistants
Browse files
src/lib/components/AssistantToolPicker.svelte
CHANGED
|
@@ -116,6 +116,9 @@
|
|
| 116 |
class="w-full cursor-pointer px-3 py-2 text-left hover:bg-blue-500 hover:text-white"
|
| 117 |
>
|
| 118 |
{suggestion.displayName}
|
|
|
|
|
|
|
|
|
|
| 119 |
</button>
|
| 120 |
{/each}
|
| 121 |
</div>
|
|
|
|
| 116 |
class="w-full cursor-pointer px-3 py-2 text-left hover:bg-blue-500 hover:text-white"
|
| 117 |
>
|
| 118 |
{suggestion.displayName}
|
| 119 |
+
{#if suggestion.createdByName}
|
| 120 |
+
<span class="text-xs text-gray-500"> by {suggestion.createdByName}</span>
|
| 121 |
+
{/if}
|
| 122 |
</button>
|
| 123 |
{/each}
|
| 124 |
</div>
|