2024-03-18 16:09:19 +01:00
|
|
|
// Do not edit this file manually
|
|
|
|
import { anthropicBlock } from '@typebot.io/anthropic-block'
|
|
|
|
import { openRouterBlock } from '@typebot.io/open-router-block'
|
|
|
|
import { togetherAiBlock } from '@typebot.io/together-ai-block'
|
|
|
|
import { elevenlabsBlock } from '@typebot.io/elevenlabs-block'
|
|
|
|
import { difyAiBlock } from '@typebot.io/dify-ai-block'
|
|
|
|
import { mistralBlock } from '@typebot.io/mistral-block'
|
|
|
|
import { qrCodeBlock } from '@typebot.io/qrcode-block'
|
|
|
|
import { chatNodeBlock } from '@typebot.io/chat-node-block'
|
|
|
|
import { calComBlock } from '@typebot.io/cal-com-block'
|
|
|
|
import { openAIBlock } from '@typebot.io/openai-block'
|
2024-05-27 12:46:42 +04:00
|
|
|
import { nocodbBlock } from '@typebot.io/nocodb-block'
|
2024-08-16 11:23:23 -04:00
|
|
|
import { segmentBlock } from '@typebot.io/segment-block'
|
2024-08-22 15:31:05 +02:00
|
|
|
import { groqBlock } from '@typebot.io/groq-block'
|
2024-03-18 16:09:19 +01:00
|
|
|
|
|
|
|
export const forgedBlocks = {
|
|
|
|
[openAIBlock.id]: openAIBlock,
|
|
|
|
[calComBlock.id]: calComBlock,
|
|
|
|
[chatNodeBlock.id]: chatNodeBlock,
|
|
|
|
[qrCodeBlock.id]: qrCodeBlock,
|
|
|
|
[difyAiBlock.id]: difyAiBlock,
|
|
|
|
[mistralBlock.id]: mistralBlock,
|
|
|
|
[elevenlabsBlock.id]: elevenlabsBlock,
|
|
|
|
[anthropicBlock.id]: anthropicBlock,
|
|
|
|
[togetherAiBlock.id]: togetherAiBlock,
|
|
|
|
[openRouterBlock.id]: openRouterBlock,
|
2024-05-27 12:46:42 +04:00
|
|
|
[nocodbBlock.id]: nocodbBlock,
|
2024-08-16 11:23:23 -04:00
|
|
|
[segmentBlock.id]: segmentBlock,
|
2024-08-22 15:31:05 +02:00
|
|
|
[groqBlock.id]: groqBlock,
|
2024-03-19 10:38:55 +01:00
|
|
|
}
|