@client.event
async def on_message(message):
if message.author == client.user:
return
if message.content.startswith('$'):
# Create the chat completion input with the user's message and bot's name
input_message = {"role": "user", "content": message.content}
bot_name_message = {"role": "assistant", "content": "My name is Agex."}
# Use the OpenAI GPT-3 API to generate a response
output = openai.ChatCompletion.create(
model="gpt-3.5-turbo",
messages=[input_message, bot_name_message]
)
# Send the generated response back to the user
await message.channel.send(output) in this code i wanted gpt to telll is name Agex