Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -52,7 +52,8 @@ async def ai(ctx, *, input_text: str):
|
|
52 |
result = ask(input_text)
|
53 |
|
54 |
# Create an embed with the AI's response
|
55 |
-
embed = discord.Embed(title="AI Response",
|
|
|
56 |
embed.add_field(name="Info", value="Session resets every `1` message!\nModel Name: `Mistral 7B`", inline=False)
|
57 |
embed.set_footer(text="Created by Cosmos")
|
58 |
|
|
|
52 |
result = ask(input_text)
|
53 |
|
54 |
# Create an embed with the AI's response
|
55 |
+
embed = discord.Embed(title="AI Response", color=discord.Color.green())
|
56 |
+
embed.add_field(name="response", value=result, inline=False)
|
57 |
embed.add_field(name="Info", value="Session resets every `1` message!\nModel Name: `Mistral 7B`", inline=False)
|
58 |
embed.set_footer(text="Created by Cosmos")
|
59 |
|