AgentLayerZero Playground

<StreamingText />

Renders raw streaming text with a pulsing cursor while generating is true. Use it for custom layouts where you want the streaming output outside a chat bubble — e.g. inline completions or embedded tool output.

<script setup lang="ts">
import { StreamingText } from '@agent-layer-zero/dendrite-vue'
</script>

<template>
  <StreamingText :content="content" :generating="isGenerating" />
</template>