mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-13 15:09:13 +00:00
18 lines
459 B
JavaScript
18 lines
459 B
JavaScript
import { siteConfig } from '@/lib/config'
|
|
import ExternalScript from './ExternalScript'
|
|
|
|
/**
|
|
* 一个开源ai组件
|
|
* @see https://github.com/webwhiz-ai/webwhiz
|
|
* @returns
|
|
*/
|
|
export default function WebWhiz() {
|
|
const props = {
|
|
id: '__webwhizSdk__',
|
|
src: 'https://www.unpkg.com/webwhiz@1.0.0/dist/sdk.js',
|
|
baseUrl: siteConfig('WEB_WHIZ_BASE_URL'),
|
|
chatbotId: siteConfig('WEB_WHIZ_CHAT_BOT_ID')
|
|
}
|
|
return <ExternalScript {...props}/>
|
|
}
|