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