Skip to content

AgentConversation

Conversation list for message history and active responses.

Demo

AgentConversationOne public API for H5 and Wevu
Live state
Release readiness workflowAgentConversation

请检查这次发布是否满足双端要求。

Varo Agent

已完成检查,H5 与小程序均通过。

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-ui

Registry 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 { AgentConversation } from '@/components/agent-ui'
</script>

<template>
  <AgentConversation :messages="messages" />
</template>

Props

PropTypeDefaultDescription
messagesAgentConversationMessage[][]Messages

Events

None.

Target Notes

TargetImport
H5Named export from @/components/agent-ui
weapp@/components/agent-ui/AgentConversation.vue

The public API stays aligned across targets; DOM/WXML, scheduling, and native events are target-owned.