Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Embed Char in HTMX apps while preserving widget state across swaps
<body> <div id="content" hx-target="this" hx-swap="innerHTML"></div> <char-agent id="char-widget" publishable-key="pk_live_..."></char-agent> <script> const agent = document.getElementById("char-widget"); const idToken = window.currentUserIdToken; if (idToken) { agent.connect({ publishableKey: "pk_live_...", idToken }); } </script> </body>