2
0
Files
bot/packages/forge/blocks/togetherAi/index.ts
2024-03-19 08:31:36 +01:00

15 lines
425 B
TypeScript

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