Visual Studio Code – no module named error even though I already installed the modules
I am trying to integrate CHATGPT by open ai to my discord server. this is the code: import discord import openai intents = discord.Intents.default() intents.message_content = True # Discord and Openai DISCORD_TOKEN = "key" openai.api_key = "key" # Initialize a…