Nomos
Your resident operator. Ask about the fleet, or tell it to act.
{#if suggestions.length}
{#each suggestions as q}
{/each}
{/if}
{#if msg.role === 'user'}
You
{#if msg.created_at}
{formatTime(msg.created_at)}
{/if}
{msg.text}
{:else}
{@const isLast = idx === messages.length - 1}
{@const traceStatus = !isLast
? 'idle'
: error
? 'error'
: streaming
? 'running'
: indicatorDone
? 'done'
: 'idle'}
Nomos
{#if msg.created_at}
{formatTime(msg.created_at)}
{/if}
{#if msg.tools.length > 0 || traceStatus !== 'idle'}
{/if}
{#if msg.text}
{@html render(msg.text)}
{#if isLast && streaming}
{/if}
{/if}
{/if}