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

@ -0,0 +1,13 @@
import { createBlock } from '@typebot.io/forge'
import { GroqLogo } from './logo'
import { auth } from './auth'
import { createChatCompletion } from './actions/createChatCompletion'
export const groqBlock = createBlock({
id: 'groq',
name: 'Groq',
tags: ['ai', 'chat completion', 'bot'],
LightLogo: GroqLogo,
auth,
actions: [createChatCompletion],
})