Skip to content

AgentContextCard

展示检索知识块、来源类型与跳转动作。

案例

AgentContextCardH5 与 Wevu 使用同一公共 API
实时状态
发布检查工作流AgentContextCard
检索上下文2 chunks
Supplier policy80 chars

Cold-chain certification must be verified before a new supplier can be approved.

PDF
Build report53 chars

H5 and weapp-vite builds both completed successfully.

JSON

安装

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

UI 组件由 Registry 安装到项目本地,因此从 @/components/agent-ui 导入;@varo-ui/ai 只提供事件协议、流控制和 Markdown 能力,不导出 Vue/Wevu UI 组件。

基础用法

vue
<script setup lang="ts">
import { AgentContextCard } from '@/components/agent-ui'
</script>

<template>
  <AgentContextCard title="检索上下文" :chunks="chunks" />
</template>

Props

PropTypeDefault说明
chunksAgentContextChunk[][]上下文块
titlestringRetrieved context标题

Events

EventPayload说明
openAgentContextChunk打开来源

平台差异

TargetImport
H5Named export from @/components/agent-ui
weapp默认导出自 @/components/agent-ui/AgentContextCard.vue

组件 API 在两个目标保持一致;DOM/WXML、调度和原生事件由目标实现负责。