2
0
Files
bot/packages/forge/blocks/anthropic/index.ts
2024-03-19 08:31:36 +01:00

14 lines
398 B
TypeScript

import { createBlock } from '@typebot.io/forge'
import { AnthropicLogo } from './logo'
import { auth } from './auth'
import { createChatMessage } from './actions/createChatMessage'
export const anthropicBlock = createBlock({
id: 'anthropic',
name: 'Anthropic',
tags: ['ai', 'chat', 'completion', 'claude', 'anthropic'],
LightLogo: AnthropicLogo,
auth,
actions: [createChatMessage],
})