File size: 363 Bytes
2a53e07 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import time
def generate_scenario(gender):
time.sleep(1)
return f"I see a {gender} in a coffee shop."
def suggest_next_line(history):
time.sleep(1)
return "So.. what do you do for fun?"
def generate_response(history):
time.sleep(1)
return "Nice to meet you"
def transcribe_audio(audio):
time.sleep(1)
return "I like your face"
|