2
0

Add Groq block

Closes #1721
This commit is contained in:
Baptiste Arnaud
2024-08-22 15:31:05 +02:00
parent 77614f671f
commit 6a7877dc9b
22 changed files with 959 additions and 45 deletions

View File

@@ -18,6 +18,8 @@ import { nocodbBlock } from '@typebot.io/nocodb-block'
import { nocodbCredentialsSchema } from '@typebot.io/nocodb-block/schemas'
import { segmentBlock } from '@typebot.io/segment-block'
import { segmentCredentialsSchema } from '@typebot.io/segment-block/schemas'
import { groqBlock } from '@typebot.io/groq-block'
import { groqCredentialsSchema } from '@typebot.io/groq-block/schemas'
export const forgedCredentialsSchemas = {
[openAIBlock.id]: openAICredentialsSchema,
@@ -30,4 +32,5 @@ export const forgedCredentialsSchemas = {
[openRouterBlock.id]: openRouterCredentialsSchema,
[nocodbBlock.id]: nocodbCredentialsSchema,
[segmentBlock.id]: segmentCredentialsSchema,
[groqBlock.id]: groqCredentialsSchema,
}