2024-03-01 15:33:22 +01:00
|
|
|
import { createBlock } from '@typebot.io/forge'
|
|
|
|
import { TogetherAiLogo } from './logo'
|
|
|
|
import { auth } from './auth'
|
|
|
|
import { createChatCompletion } from './actions/createChatCompletion'
|
|
|
|
|
2024-03-18 16:09:19 +01:00
|
|
|
export const togetherAiBlock = createBlock({
|
2024-03-01 15:33:22 +01:00
|
|
|
id: 'together-ai',
|
|
|
|
name: 'Together',
|
|
|
|
fullName: 'Together AI',
|
|
|
|
tags: ['ai', 'openai', 'chat', 'completion'],
|
|
|
|
LightLogo: TogetherAiLogo,
|
|
|
|
auth,
|
|
|
|
actions: [createChatCompletion],
|
|
|
|
})
|