Mercurial
view design_system/src/components/stack.js @ 260:1f9877b637e9
Add Copilot-powered cyberpunk JRPG chat
Integrate the production JRPG chat with Seobeo streaming, Deita persistence, and a Bazel-managed Copilot SDK and LiteLLM inference stack.
Co-authored-by: Copilot <[email protected]>
| author | MrJuneJune <mrjunejune@users.noreply.github.com> |
|---|---|
| date | Wed, 05 Aug 2026 09:19:41 -0700 |
| parents | 2b6e732087ff |
| children |
line wrap: on
line source
/** * Provides a token-driven flex layout around arbitrary native HTML. * * @extends {HTMLElement} */ export class ZenStack extends HTMLElement {} if (!customElements.get("zen-stack")) { customElements.define("zen-stack", ZenStack); }