Chats

    {#if sortedChats.length === 0}
  • No chats yet...
  • {:else}
    • {#each sortedChats as chat}
    • {chat.name || `Chat ${chat.id}`}
    • {/each}
  • {/if}

Actions

  • 🔑 API key
  • ➕ New chat
  • { replace('#/').then(() => { clearChats() }) }}>🗑️ Clear chats
  • {#if activeChatId}
  • { if (activeChatId) { exportAsMarkdown(activeChatId) } }}>📥 Export chat
  • {/if}