Skip to content

AgentRecommendation

Agent recommendation card with confidence and accept action.

Demo

AgentRecommendationOne public API for H5 and Wevu
Live state
Release readiness workflowAgentRecommendation
AGENT 建议96%
推荐统一事件协议

业务只提供事件来源,组件负责状态投影。

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

<template>
  <AgentRecommendation title="推荐统一协议" :confidence="96" />
</template>

Props

PropTypeDefaultDescription
acceptTextstring采用建议Action label
confidencenumber80Confidence
descriptionstringDescription
titlestringrequiredTitle

Events

EventPayloadDescription
acceptvoidAccept recommendation

Slots

SlotDescription
defaultAdditional content
secondarySecondary action

Target Notes

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

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