jiangchengfeiyi-xiaochengxu/pages/agentAI/agentAI.vue

31 lines
641 B
Vue
Raw Normal View History

2025-04-02 15:45:33 +00:00
<template>
<view >
<!-- index.wxml -->
<agent-ui :agentConfig="agentConfig"></agent-ui>
</view>
</template>
<script>
import agentUi from '@/components/agent-ui/index';
// index.js
export default {
components: {
// navigationBar,
agentUi
},
data() {
return {
agentConfig: {
type: 'bot',
// 值为'bot'或'model'。当type='bot'时botId必填当type='model'时modelName和model必填
botId: 'bot-3e561e60',
// agent id
}
};
},
methods: {}
};
</script>
<style></style>