14 lines
388 B
TypeScript
14 lines
388 B
TypeScript
import { createBlock } from '@typebot.io/forge'
|
|
import { DifyAiLogo } from './logo'
|
|
import { auth } from './auth'
|
|
import { createChatMessage } from './actions/createChatMessage'
|
|
|
|
export const difyAiBlock = createBlock({
|
|
id: 'dify-ai',
|
|
name: 'Dify.AI',
|
|
tags: ['dify', 'ai', 'documents', 'files', 'knowledge base'],
|
|
LightLogo: DifyAiLogo,
|
|
auth,
|
|
actions: [createChatMessage],
|
|
})
|