simon_says_v2 / models /simon_says.py
ericmichael's picture
first commit
0079b8d
raw
history blame
221 Bytes
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