File size: 979 Bytes
cad1ad0
c3b6b19
 
604255a
 
 
 
 
 
cad1ad0
604255a
 
 
 
 
 
 
 
 
 
cad1ad0
604255a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
from src.services.speechtotext import SpeechToText
from src.services.texttotext import ConversationHandler
from src.services.texttospeech import TextToSpeech
from elevenlabs import play

class Pipeline:
    def __init__(self):
        self.speech_to_text = SpeechToText()
        self.text_to_text=ConversationHandler()
        self.text_to_speech=TextToSpeech()

    def speech_to_text_(self):
        transcribed_text = self.speech_to_text.record_and_transcribe()
        return transcribed_text
    
    async def text_to_text_(self):
        response=await self.text_to_text.give_response(self.speech_to_text_())
        return response
    
    async def text_to_speech_(self):
        response=await self.text_to_speech.synthesize(self.text_to_text_())
        return response
    



        

if __name__ == "__main__":
    import asyncio

    async def main():
        p=Pipeline()
        op=await p.text_to_text_()
        print(op)
    asyncio.run(main())