<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.
…streaming output here…
<script setup lang="ts">
import { StreamingText } from '@agent-layer-zero/dendrite-vue'
</script>
<template>
<StreamingText :content="content" :generating="isGenerating" />
</template> import { StreamingText } from '@agent-layer-zero/dendrite-react'
<StreamingText content={content} generating={isGenerating} /> <div class="alz-streaming"> <span class="alz-streaming__text">…streaming output here…</span> <span class="alz-streaming__cursor"></span> </div>