File size: 244 Bytes
af63393
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
from belel_conversation import get_reply
from elevenlabs_speech import speak
from input_capture import capture_input

def start_loop():
    while True:
        query = capture_input()
        response = get_reply(query)
        speak(response)