Spaces:
Sleeping
Sleeping
File size: 221 Bytes
0079b8d |
1 2 3 4 5 6 7 8 9 10 11 12 |
from utils.openai import chat_completion
def simon_says(message=None):
prompt = """
You are playing a game of Simon Says.
"""
response = chat_completion(message, prompt=prompt)
return response
|