2
0
Files
bot/packages/forge/blocks/anthropic/index.ts
2024-06-18 12:13:00 +02:00

15 lines
481 B
TypeScript

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