Cold-chain certification must be verified before a new supplier can be approved.
AgentContextCard
Retrieved knowledge chunks with source type and open actions.
Demo
H5 and weapp-vite builds both completed successfully.
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 { AgentContextCard } from '@/components/agent-ui'
</script>
<template>
<AgentContextCard title="检索上下文" :chunks="chunks" />
</template>Props
| Prop | Type | Default | Description |
|---|---|---|---|
chunks | AgentContextChunk[] | [] | Context chunks |
title | string | Retrieved context | Title |
Events
| Event | Payload | Description |
|---|---|---|
open | AgentContextChunk | Open source |
Target Notes
| Target | Import |
|---|---|
| H5 | Named export from @/components/agent-ui |
| weapp | Default export from @/components/agent-ui/AgentContextCard.vue |
The public API stays aligned across targets; DOM/WXML, scheduling, and native events are target-owned.