TTOPM's picture
Upload 4 files
af63393 verified
raw
history blame contribute delete
244 Bytes
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)