import discord
from core.classes import Cog_Extension
from discord import app_commands


class Help(Cog_Extension):
    @app_commands.command(name="help", description="Show how to use")
    async def help(self, interaction: discord.Interaction):
        embed = discord.Embed(
            title="Help",
        )
        embed.add_field(
            name="/bing_cookies",
            value="Set and delete your Bing Cookies.",
            inline=False,
        )
        embed.add_field(name="/bing", value="Chat with Bing.", inline=False)
        embed.add_field(
            name="/reset", value="Reset your Bing conversation.", inline=False
        )
        embed.add_field(
            name="/switch_style",
            value="Switch your Bing conversation style.",
            inline=False,
        )
        embed.add_field(
            name="/create_image",
            value="Generate image by Bing Image Creator.",
            inline=False,
        )
        await interaction.response.send_message(embed=embed)


async def setup(bot):
    await bot.add_cog(Help(bot))