AgentImageGeneration
Stable image surface from queued work through refinement to completion.
Demo
Refining image68% · Rendering details
Install
bash
pnpm add @varo-ui/ai
pnpm dlx @varo-ui/cli add --target h5 components/agent-ui
pnpm dlx @varo-ui/cli add --target weapp components/agent-uiRegistry installs the UI component into your project, so import it from @/components/agent-ui; @varo-ui/ai provides the event protocol, stream controller, and Markdown primitives—not Vue/Wevu UI components.
Basic Usage
vue
<script setup lang="ts">
import { AgentImageGeneration } from '@/components/agent-ui'
</script>
<template>
<AgentImageGeneration status="generating" :progress="68" prompt="Generate an Agent UI" />
</template>Props
| Prop | Type | Default | Description |
|---|---|---|---|
className | ClassValue | undefined | Root classes merged by the target-specific cn helper |
status | 'queued' | 'generating' | 'completed' | 'failed' | queued | Generation status |
progress | number | 0 | Progress |
src | string | — | Image source |
alt | string | Generated image | Alt text |
prompt | string | — | Prompt |
Events
| Event | Payload | Description |
|---|---|---|
retry | void | Retry |
download | string | Download |
Target Notes
| Target | Import |
|---|---|
| H5 | Named export from @/components/agent-ui |
| weapp | Default export from @/components/agent-ui/AgentImageGeneration.vue |
The public API stays aligned across targets; DOM/WXML, scheduling, and native events are target-owned.