こちらは公式のサンプルコードになります
これにコマンドのコードを組み込んで実行して見て下さい
引用したページ
py
1from discord import ui
2
3class Questionnaire(ui.Modal, title='Questionnaire Response'):
4 name = ui.TextInput(label='Name')
5 answer = ui.TextInput(label='Answer', style=discord.TextStyle.paragraph)
6
7 async def on_submit(self, interaction: discord.Interaction):
8 await interaction.response.send_message(f'Thanks for your response, {self.name}!', ephemeral=True)