We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4630033 + 92856dd commit bbe6a8cCopy full SHA for bbe6a8c
src/routes/chat/[agentId]/[conversationId]/agent-info/chat-agent-info.svelte
@@ -24,7 +24,8 @@
24
<span>
25
{agent?.profiles?.length || 0} {agent?.profiles?.length > 1 ? 'profiles' : 'profile'}{!!agent?.profiles ? ', ' : ''}
26
{agent?.functions?.length || 0} {agent?.functions?.length > 1 ? 'functions' : 'function'}{!!agent?.functions ? ', ' : ''}
27
- {agent?.templates?.length || 0} {agent?.templates?.length > 1 ? 'templates' : 'template'}
+ {agent?.templates?.length || 0} {agent?.templates?.length > 1 ? 'templates' : 'template'}{!!agent?.templates ? ', ' : ''}
28
+ {agent?.utilities?.length || 0} {agent?.utilities?.length > 1 ? 'utilities' : 'utility'}
29
</span>
30
</div>
31
0 commit comments