seawolf2357 commited on
Commit
df8b20e
Β·
verified Β·
1 Parent(s): 6bf5fae

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -56,10 +56,11 @@ class MyClient(discord.Client):
56
  image_path, used_seed, translated_prompt = await self.generate_image(prompt)
57
  user_id = message.author.id
58
  await message.channel.send(
59
- f"<@{user_id}> λ‹˜μ΄ μš”μ²­ν•˜μ‹  μ΄λ―Έμ§€μž…λ‹ˆλ‹€.\n",
60
- f"μ‚¬μš©λœ μ‹œλ“œ: {used_seed}\n",
61
  file=discord.File(image_path)
62
  )
 
 
63
  # 이미지 생성 ν›„ μ„€λͺ… 제곡 및 λŒ€ν™”
64
  await initiate_conversation(prompt, message)
65
  except RuntimeError as e:
 
56
  image_path, used_seed, translated_prompt = await self.generate_image(prompt)
57
  user_id = message.author.id
58
  await message.channel.send(
59
+ content=f"<@{user_id}> λ‹˜μ΄ μš”μ²­ν•˜μ‹  μ΄λ―Έμ§€μž…λ‹ˆλ‹€.\nμ‚¬μš©λœ μ‹œλ“œ: {used_seed}\n",
 
60
  file=discord.File(image_path)
61
  )
62
+
63
+
64
  # 이미지 생성 ν›„ μ„€λͺ… 제곡 및 λŒ€ν™”
65
  await initiate_conversation(prompt, message)
66
  except RuntimeError as e: