wop commited on
Commit
97e83bb
1 Parent(s): 0b418d5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -5
app.py CHANGED
@@ -63,12 +63,8 @@ async def ai(ctx, *, input_text: str):
63
  """Ask our AI model a question."""
64
  result = ask(input_text)
65
 
66
- # Create an embed with the AI's response
67
- embed = discord.Embed(title="AI Response", description=result color=discord.Color.green())
68
- embed.set_footer(text="Created by Cosmos")
69
-
70
  # Reply with the embed
71
- await ctx.send(embed=embed)
72
 
73
 
74
  @bot.command()
 
63
  """Ask our AI model a question."""
64
  result = ask(input_text)
65
 
 
 
 
 
66
  # Reply with the embed
67
+ await ctx.send(result)
68
 
69
 
70
  @bot.command()