Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -22,7 +22,7 @@ if not DISCORD_BOT_TOKEN or not GEMINI_API_KEY:
|
|
22 |
async def hello_command(interaction):
|
23 |
await interaction.response.send_message("Hello there!")
|
24 |
|
25 |
-
@tree.command(name="imagen3", description="Generates
|
26 |
@app_commands.choices(
|
27 |
aspect_ratio=[
|
28 |
app_commands.Choice(name="1:1 (Square)", value="1:1"),
|
@@ -35,34 +35,46 @@ async def hello_command(interaction):
|
|
35 |
async def generate_command(
|
36 |
interaction: discord.Interaction,
|
37 |
prompt: str,
|
38 |
-
img_count:int,
|
39 |
aspect_ratio: app_commands.Choice[str],
|
40 |
):
|
41 |
try:
|
|
|
42 |
genai.configure(api_key=GEMINI_API_KEY)
|
43 |
imagen = genai.ImageGenerationModel("imagen-3.0-generate-001")
|
44 |
-
|
|
|
45 |
result = imagen.generate_images(
|
46 |
prompt=prompt,
|
47 |
number_of_images=img_count,
|
48 |
safety_filter_level="block_only_high",
|
49 |
person_generation="allow_adult",
|
50 |
-
aspect_ratio=aspect_ratio,
|
51 |
)
|
52 |
-
|
53 |
-
|
54 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
except Exception as e:
|
56 |
-
interaction.followup.send(content=f"
|
57 |
-
|
58 |
-
for i, image in enumerate(result.generated_images):
|
59 |
-
# Assuming `image` is a byte array or binary stream of the image
|
60 |
-
image_file = BytesIO(image) # Convert to BytesIO
|
61 |
-
files.append(discord.File(fp=image_file, filename=f"image_{i+1}.png"))
|
62 |
-
|
63 |
-
# Send images to Discord
|
64 |
-
await interaction.followup.send(content=f"Here are your {img_count} images for prompt: `{prompt}`", files=files)
|
65 |
-
|
66 |
async def on_ready():
|
67 |
await tree.sync()
|
68 |
print("Bot is ready!")
|
|
|
22 |
async def hello_command(interaction):
|
23 |
await interaction.response.send_message("Hello there!")
|
24 |
|
25 |
+
@tree.command(name="imagen3", description="Generates image(s) using imagen3 model")
|
26 |
@app_commands.choices(
|
27 |
aspect_ratio=[
|
28 |
app_commands.Choice(name="1:1 (Square)", value="1:1"),
|
|
|
35 |
async def generate_command(
|
36 |
interaction: discord.Interaction,
|
37 |
prompt: str,
|
38 |
+
img_count: int,
|
39 |
aspect_ratio: app_commands.Choice[str],
|
40 |
):
|
41 |
try:
|
42 |
+
await interaction.response.defer() # Defer the interaction
|
43 |
genai.configure(api_key=GEMINI_API_KEY)
|
44 |
imagen = genai.ImageGenerationModel("imagen-3.0-generate-001")
|
45 |
+
|
46 |
+
# Pass the value of the aspect_ratio
|
47 |
result = imagen.generate_images(
|
48 |
prompt=prompt,
|
49 |
number_of_images=img_count,
|
50 |
safety_filter_level="block_only_high",
|
51 |
person_generation="allow_adult",
|
52 |
+
aspect_ratio=aspect_ratio.value,
|
53 |
)
|
54 |
+
|
55 |
+
# Debugging result structure
|
56 |
+
print(result)
|
57 |
+
|
58 |
+
if result and result.generated_images:
|
59 |
+
files = []
|
60 |
+
for i, image in enumerate(result.generated_images):
|
61 |
+
if isinstance(image, bytes): # Raw image bytes
|
62 |
+
image_file = BytesIO(image)
|
63 |
+
files.append(discord.File(fp=image_file, filename=f"image_{i+1}.png"))
|
64 |
+
elif isinstance(image, str): # URL
|
65 |
+
async with aiohttp.ClientSession() as session:
|
66 |
+
async with session.get(image) as resp:
|
67 |
+
if resp.status == 200:
|
68 |
+
image_file = BytesIO(await resp.read())
|
69 |
+
files.append(discord.File(fp=image_file, filename=f"image_{i+1}.png"))
|
70 |
+
|
71 |
+
# Send all images
|
72 |
+
await interaction.followup.send(content=f"Here are your {img_count} images for prompt: `{prompt}`", files=files)
|
73 |
+
else:
|
74 |
+
await interaction.followup.send(content="No images were generated.")
|
75 |
except Exception as e:
|
76 |
+
await interaction.followup.send(content=f"Exception: {e}")
|
77 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
78 |
async def on_ready():
|
79 |
await tree.sync()
|
80 |
print("Bot is ready!")
|