|
| 1 | +from typing import Any |
| 2 | + |
| 3 | +import requests |
| 4 | + |
| 5 | +from backend.data.block import Block, BlockCategory, BlockOutput, BlockSchema |
| 6 | +from backend.data.model import BlockSecret, SchemaField, SecretField |
| 7 | + |
| 8 | + |
| 9 | +class UnrealTextToSpeechBlock(Block): |
| 10 | + class Input(BlockSchema): |
| 11 | + text: str = SchemaField( |
| 12 | + description="The text to be converted to speech", |
| 13 | + placeholder="Enter the text you want to convert to speech", |
| 14 | + ) |
| 15 | + voice_id: str = SchemaField( |
| 16 | + description="The voice ID to use for text-to-speech conversion", |
| 17 | + placeholder="Scarlett", |
| 18 | + default="Scarlett", |
| 19 | + ) |
| 20 | + api_key: BlockSecret = SecretField( |
| 21 | + key="unreal_speech_api_key", description="Your Unreal Speech API key" |
| 22 | + ) |
| 23 | + |
| 24 | + class Output(BlockSchema): |
| 25 | + mp3_url: str = SchemaField(description="The URL of the generated MP3 file") |
| 26 | + error: str = SchemaField(description="Error message if the API call failed") |
| 27 | + |
| 28 | + def __init__(self): |
| 29 | + super().__init__( |
| 30 | + id="4ff1ff6d-cc40-4caa-ae69-011daa20c378", |
| 31 | + description="Converts text to speech using the Unreal Speech API", |
| 32 | + categories={BlockCategory.AI, BlockCategory.TEXT}, |
| 33 | + input_schema=UnrealTextToSpeechBlock.Input, |
| 34 | + output_schema=UnrealTextToSpeechBlock.Output, |
| 35 | + test_input={ |
| 36 | + "text": "This is a test of the text to speech API.", |
| 37 | + "voice_id": "Scarlett", |
| 38 | + "api_key": "test_api_key", |
| 39 | + }, |
| 40 | + test_output=[("mp3_url", "https://example.com/test.mp3")], |
| 41 | + test_mock={ |
| 42 | + "call_unreal_speech_api": lambda *args, **kwargs: { |
| 43 | + "OutputUri": "https://example.com/test.mp3" |
| 44 | + } |
| 45 | + }, |
| 46 | + ) |
| 47 | + |
| 48 | + @staticmethod |
| 49 | + def call_unreal_speech_api( |
| 50 | + api_key: str, text: str, voice_id: str |
| 51 | + ) -> dict[str, Any]: |
| 52 | + url = "https://api.v7.unrealspeech.com/speech" |
| 53 | + headers = { |
| 54 | + "Authorization": f"Bearer {api_key}", |
| 55 | + "Content-Type": "application/json", |
| 56 | + } |
| 57 | + data = { |
| 58 | + "Text": text, |
| 59 | + "VoiceId": voice_id, |
| 60 | + "Bitrate": "192k", |
| 61 | + "Speed": "0", |
| 62 | + "Pitch": "1", |
| 63 | + "TimestampType": "sentence", |
| 64 | + } |
| 65 | + |
| 66 | + response = requests.post(url, headers=headers, json=data) |
| 67 | + response.raise_for_status() |
| 68 | + return response.json() |
| 69 | + |
| 70 | + def run(self, input_data: Input, **kwargs) -> BlockOutput: |
| 71 | + try: |
| 72 | + api_response = self.call_unreal_speech_api( |
| 73 | + input_data.api_key.get_secret_value(), |
| 74 | + input_data.text, |
| 75 | + input_data.voice_id, |
| 76 | + ) |
| 77 | + yield "mp3_url", api_response["OutputUri"] |
| 78 | + except Exception as e: |
| 79 | + yield "error", str(e) |
0 commit comments