Araeynn commited on
Commit
3bd9595
·
verified ·
1 Parent(s): be67a7f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -4
app.py CHANGED
@@ -178,10 +178,9 @@ async def on_message(message: discord.Message):
178
  ats = []
179
  if len(message.attachments) > 0:
180
  for i in message.attachments:
181
- if i.content_type == "image":
182
- Image.open(io.BytesIO(i.read())).save("image.png")
183
- ats.append(f"ImageInput:{caption('image.png')}")
184
- print(caption('image.png'))
185
  s = f"GPT4 Correct {message.author}: {message.content} Attachments: {' '.join(ats)}<|end_of_turn|>"
186
  try:
187
  with open(os.path.join(guild_name, f"{msgchannel_name}.txt"), "a") as f:
 
178
  ats = []
179
  if len(message.attachments) > 0:
180
  for i in message.attachments:
181
+ Image.open(io.BytesIO(i.read())).save("image.png")
182
+ ats.append(f"ImageInput:{caption('image.png')}")
183
+ print(caption("image.png"))
 
184
  s = f"GPT4 Correct {message.author}: {message.content} Attachments: {' '.join(ats)}<|end_of_turn|>"
185
  try:
186
  with open(os.path.join(guild_name, f"{msgchannel_name}.txt"), "a") as f: