2
0
Files
bot/packages/forge/blocks/togetherAi/index.ts
Baptiste Arnaud 648ec08a10 Add Together AI block (#1304)
Closes #1253
2024-03-01 15:33:22 +01:00

15 lines
420 B
TypeScript

import { createBlock } from '@typebot.io/forge'
import { TogetherAiLogo } from './logo'
import { auth } from './auth'
import { createChatCompletion } from './actions/createChatCompletion'
export const togetherAi = createBlock({
id: 'together-ai',
name: 'Together',
fullName: 'Together AI',
tags: ['ai', 'openai', 'chat', 'completion'],
LightLogo: TogetherAiLogo,
auth,
actions: [createChatCompletion],
})