Skip to content

AgentActivity

Unified activity stream for reasoning, searches, tools, and traces.

Demo

AgentActivityOne public API for H5 and Wevu
Live state
Release readiness workflowAgentActivity
Agent 活动2/3
  1. Reasoning0.2s

    识别发布检查意图

    Completed
  2. Registry search0.4s

    找到 44 个 Agent UI surface

    Completed
  3. Build tool

    正在构建 weapp-vite

    Running

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

<template>
  <AgentActivity title="Agent 活动" :items="activity" />
</template>

Props

PropTypeDefaultDescription
itemsAgentActivityItem[][]Activity items
titlestringAgent activityTitle

Events

None.

Target Notes

TargetImport
H5Named export from @/components/agent-ui
weappDefault export from @/components/agent-ui/AgentActivity.vue

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