@itick/chat-vue
v1.0.1
Published
AI Chat SDK Vue 3 Wrapper
Readme
@itick/chat-vue
iTick AI Chat SDK Vue 3 封装组件。
安装
npm install @itick/chat-vue快速接入
<template>
<ChatWidget
ref="chatRef"
:apiUrl="apiUrl"
:token="token"
width="100%"
height="600px"
locale="zh-CN"
/>
</template>
<script setup>
import { ref } from 'vue';
import { ChatWidget } from '@itick/chat-vue';
const chatRef = ref();
const apiUrl = 'https://agent.itick.org/agent/token/stream';
const token = 'your-api-token';
</script>Expose 方法
| 方法 | 描述 |
|------|------|
| sendMessage(content) | 发送消息 |
| clearMessages() | 清空消息 |
| getMessages() | 获取消息列表 |
| setHistoryMessages(msgs) | 设置历史消息 |
| registerPlugin(plugin) | 注册渲染插件 |
| unregisterPlugin(name) | 注销插件 |
| updateConfig(partial) | 动态更新配置 |
| getSDK() | 获取底层 ChatSDK 实例 |
License
MIT
