16 lines
501 B
TypeScript
16 lines
501 B
TypeScript
import { createBlock } from '@typebot.io/forge'
|
|
import { ElevenlabsLogo, ElevenlabsLogoDark } from './logo'
|
|
import { auth } from './auth'
|
|
import { convertTextToSpeech } from './actions/convertTextToSpeech'
|
|
|
|
export const elevenlabsBlock = createBlock({
|
|
id: 'elevenlabs',
|
|
name: 'ElevenLabs',
|
|
tags: ['ai', 'voice', 'generation'],
|
|
LightLogo: ElevenlabsLogo,
|
|
DarkLogo: ElevenlabsLogoDark,
|
|
auth,
|
|
actions: [convertTextToSpeech],
|
|
docsUrl: 'https://docs.typebot.io/forge/blocks/elevenlabs',
|
|
})
|