This commit is contained in:
tangly1024.com
2024-09-20 11:52:59 +08:00
parent 8332e97b71
commit eb1d46d18e
2 changed files with 42 additions and 0 deletions

39
components/Coze.js Normal file
View File

@@ -0,0 +1,39 @@
import { siteConfig } from '@/lib/config'
import { loadExternalResource } from '@/lib/utils'
import { useEffect } from 'react'
/**
* Coze-AI机器人
* @returns
*/
export default function Coze() {
const cozeSrc = siteConfig(
'COZE_SRC_URL',
'https://lf-cdn.coze.cn/obj/unpkg/flow-platform/chat-app-sdk/0.1.0-beta.6/libs/cn/index.js'
)
const title = siteConfig('COZE_TITLE', 'NotionNext助手')
const botId = siteConfig('COZE_BOT_ID')
const loadCoze = async () => {
await loadExternalResource(cozeSrc)
CozeWebSDK = window.CozeWebSDK
if (CozeWebSDK) {
new CozeWebSDK.WebChatClient({
config: {
bot_id: botId
},
componentProps: {
title: title
}
})
}
}
useEffect(() => {
if (!botId) {
return
}
loadCoze()
}, [])
return <></>
}