Spaces:
Paused
Paused
Update app.py
Browse files
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(
|
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()
|