Closes #853 <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Introduced the ElevenLabs block for Typebot, enabling text to speech conversion using ElevenLabs API. - Added live tutorial videos for creating ElevenLabs and Telegram blocks. - Added a `docsUrl` for the OpenAI block to improve accessibility to documentation. - **Documentation** - New guides and integration details for ElevenLabs and Telegram blocks. - **Style** - Added ElevenLabs logos for light and dark themes. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
16 lines
496 B
TypeScript
16 lines
496 B
TypeScript
import { createBlock } from '@typebot.io/forge'
|
|
import { ElevenlabsLogo, ElevenlabsLogoDark } from './logo'
|
|
import { auth } from './auth'
|
|
import { convertTextToSpeech } from './actions/convertTextToSpeech'
|
|
|
|
export const elevenlabs = createBlock({
|
|
id: 'elevenlabs',
|
|
name: 'ElevenLabs',
|
|
tags: ['ai', 'voice', 'generation'],
|
|
LightLogo: ElevenlabsLogo,
|
|
DarkLogo: ElevenlabsLogoDark,
|
|
auth,
|
|
actions: [convertTextToSpeech],
|
|
docsUrl: 'https://docs.typebot.io/forge/blocks/elevenlabs',
|
|
})
|