seawolf2357
commited on
Commit
โข
b1244a4
1
Parent(s):
6b0f0a1
Update app.py
Browse files
app.py
CHANGED
@@ -52,8 +52,8 @@ class MyClient(discord.Client):
|
|
52 |
|
53 |
async def generate_image(prompt):
|
54 |
try:
|
55 |
-
#
|
56 |
-
response = hf_client
|
57 |
image_data = response['images'][0] # ์๋ต์์ ์ด๋ฏธ์ง ๋ฐ์ดํฐ ์ถ์ถ
|
58 |
image_bytes = io.BytesIO(base64.b64decode(image_data))
|
59 |
image = Image.open(image_bytes)
|
@@ -65,6 +65,7 @@ async def generate_image(prompt):
|
|
65 |
return None
|
66 |
|
67 |
|
|
|
68 |
async def send_image(channel, image_path):
|
69 |
file = discord.File(image_path)
|
70 |
await channel.send(file=file)
|
|
|
52 |
|
53 |
async def generate_image(prompt):
|
54 |
try:
|
55 |
+
# ๋ชจ๋ธ ํธ์ถ
|
56 |
+
response = hf_client(inputs=prompt)
|
57 |
image_data = response['images'][0] # ์๋ต์์ ์ด๋ฏธ์ง ๋ฐ์ดํฐ ์ถ์ถ
|
58 |
image_bytes = io.BytesIO(base64.b64decode(image_data))
|
59 |
image = Image.open(image_bytes)
|
|
|
65 |
return None
|
66 |
|
67 |
|
68 |
+
|
69 |
async def send_image(channel, image_path):
|
70 |
file = discord.File(image_path)
|
71 |
await channel.send(file=file)
|