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