artintel235 commited on
Commit
c0bb1cd
·
verified ·
1 Parent(s): a291ed6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +23 -12
app.py CHANGED
@@ -3,8 +3,8 @@ from discord import app_commands
3
  import os
4
  import requests
5
  import asyncio
6
- import aiohttp # Use aiohttp for asynchronous HTTP requests
7
- import gradio as gr # Import Gradio
8
 
9
  # --- Environment Variables & Setup ---
10
  DISCORD_BOT_TOKEN = os.getenv("DISCORD_BOT_TOKEN")
@@ -19,7 +19,6 @@ intents = discord.Intents.default()
19
  client = discord.Client(intents=intents)
20
  tree = app_commands.CommandTree(client)
21
 
22
-
23
  async def generate_image_async(prompt, aspect_ratio):
24
  payload = {
25
  "id": "cm3ugmzv2002gnckiosrwk6xi",
@@ -46,7 +45,6 @@ async def generate_image_async(prompt, aspect_ratio):
46
  except aiohttp.ClientError as e:
47
  return f"API request failed: {e}"
48
 
49
-
50
  @tree.command(name="generate", description="Generates an image based on a text prompt")
51
  @app_commands.choices(
52
  aspect_ratio=[
@@ -69,8 +67,11 @@ async def generate_command(
69
 
70
  image_url_or_error = await generate_image_async(prompt, aspect_ratio.value)
71
  if image_url_or_error.startswith("http"):
 
 
 
72
  await interaction.followup.send(
73
- f"Here's your generated image based on the prompt '{prompt}' with aspect ratio {aspect_ratio.name}:\n{image_url_or_error}"
74
  )
75
  else:
76
  await interaction.followup.send(
@@ -79,25 +80,37 @@ async def generate_command(
79
  except Exception as e:
80
  await interaction.followup.send(f"Error: {str(e)}")
81
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
82
 
83
  @tree.command(name="hello", description="Says hello!")
84
  async def hello_command(interaction):
85
  await interaction.response.send_message("Hello there!")
86
 
87
-
88
  async def on_ready():
89
  await tree.sync()
90
  print("Bot is ready!")
91
 
92
-
93
  client.event(on_ready)
94
 
95
-
96
  # --- Gradio Interface ---
97
  def echo_text(text):
98
  return text
99
 
100
-
101
  def run_gradio():
102
  gr.Interface(
103
  fn=echo_text,
@@ -107,7 +120,6 @@ def run_gradio():
107
  title="Minimal Gradio Interface",
108
  ).launch(server_name="0.0.0.0", server_port=7860, share=False, show_error=True)
109
 
110
-
111
  # --- Main ---
112
  async def main():
113
  bot_task = asyncio.create_task(client.start(DISCORD_BOT_TOKEN))
@@ -115,6 +127,5 @@ async def main():
115
 
116
  await asyncio.gather(bot_task, gradio_task)
117
 
118
-
119
  if __name__ == "__main__":
120
- asyncio.run(main())
 
3
  import os
4
  import requests
5
  import asyncio
6
+ import aiohttp
7
+ import gradio as gr
8
 
9
  # --- Environment Variables & Setup ---
10
  DISCORD_BOT_TOKEN = os.getenv("DISCORD_BOT_TOKEN")
 
19
  client = discord.Client(intents=intents)
20
  tree = app_commands.CommandTree(client)
21
 
 
22
  async def generate_image_async(prompt, aspect_ratio):
23
  payload = {
24
  "id": "cm3ugmzv2002gnckiosrwk6xi",
 
45
  except aiohttp.ClientError as e:
46
  return f"API request failed: {e}"
47
 
 
48
  @tree.command(name="generate", description="Generates an image based on a text prompt")
49
  @app_commands.choices(
50
  aspect_ratio=[
 
67
 
68
  image_url_or_error = await generate_image_async(prompt, aspect_ratio.value)
69
  if image_url_or_error.startswith("http"):
70
+ # Format the prompt for display with expand/collapse
71
+ formatted_prompt = format_prompt_for_discord(prompt)
72
+
73
  await interaction.followup.send(
74
+ f"Here's your generated image based on the prompt with aspect ratio {aspect_ratio.name}:\n{formatted_prompt}\n{image_url_or_error}"
75
  )
76
  else:
77
  await interaction.followup.send(
 
80
  except Exception as e:
81
  await interaction.followup.send(f"Error: {str(e)}")
82
 
83
+ def format_prompt_for_discord(prompt):
84
+ """Formats the prompt for display in Discord with expand/collapse functionality using spoiler tags."""
85
+ max_length = 256 # Adjust as needed
86
+ if len(prompt) <= max_length:
87
+ return f"**Prompt:** {prompt}" # No need to truncate
88
+
89
+ truncated_prompt = prompt[:max_length]
90
+ hidden_part = prompt[max_length:]
91
+
92
+ formatted_message = (
93
+ f"**Prompt:** {truncated_prompt}...\n"
94
+ f"<details><summary>Read More</summary>{hidden_part}</details>\n"
95
+ f"<details><summary>Hide</summary></details>"
96
+ )
97
+
98
+ return formatted_message
99
 
100
  @tree.command(name="hello", description="Says hello!")
101
  async def hello_command(interaction):
102
  await interaction.response.send_message("Hello there!")
103
 
 
104
  async def on_ready():
105
  await tree.sync()
106
  print("Bot is ready!")
107
 
 
108
  client.event(on_ready)
109
 
 
110
  # --- Gradio Interface ---
111
  def echo_text(text):
112
  return text
113
 
 
114
  def run_gradio():
115
  gr.Interface(
116
  fn=echo_text,
 
120
  title="Minimal Gradio Interface",
121
  ).launch(server_name="0.0.0.0", server_port=7860, share=False, show_error=True)
122
 
 
123
  # --- Main ---
124
  async def main():
125
  bot_task = asyncio.create_task(client.start(DISCORD_BOT_TOKEN))
 
127
 
128
  await asyncio.gather(bot_task, gradio_task)
129
 
 
130
  if __name__ == "__main__":
131
+ asyncio.run(main())