13
packages/forge/blocks/groq/index.ts
Normal file
13
packages/forge/blocks/groq/index.ts
Normal 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],
|
||||
})
|
Reference in New Issue
Block a user