wop commited on
Commit
6f84ccc
1 Parent(s): a61547a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
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", description=result, color=discord.Color.green())
 
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