Spaces:
Build error
Build error
| import discord | |
| import logging | |
| import os | |
| from huggingface_hub import InferenceClient | |
| import asyncio | |
| import subprocess | |
| from PIL import Image | |
| import io | |
| # ๋ก๊น ์ค์ | |
| logging.basicConfig(level=logging.DEBUG, format='%(asctime)s:%(levelname)s:%(name)s: %(message)s', handlers=[logging.StreamHandler()]) | |
| # ์ธํ ํธ ์ค์ | |
| intents = discord.Intents.default() | |
| intents.message_content = True | |
| intents.messages = True | |
| intents.guilds = True | |
| intents.guild_messages = True | |
| # ์ถ๋ก API ํด๋ผ์ด์ธํธ ์ค์ | |
| hf_client = InferenceClient("stabilityai/stable-diffusion-3-medium") | |
| # ํน์ ์ฑ๋ ID | |
| SPECIFIC_CHANNEL_ID = int(os.getenv("DISCORD_CHANNEL_ID")) | |
| # ๋ํ ํ์คํ ๋ฆฌ๋ฅผ ์ ์ฅํ ๋ณ์ | |
| conversation_history = [] | |
| class MyClient(discord.Client): | |
| def __init__(self, *args, **kwargs): | |
| super().__init__(*args, **kwargs) | |
| self.is_processing = False | |
| async def on_ready(self): | |
| logging.info(f'{self.user} has logged in!') | |
| subprocess.Popen(["python", "web.py"]) # Start the web.py server as a separate process | |
| logging.info("Web.py server has been started.") | |
| async def on_message(self, message): | |
| if message.author == self.user or not message.content: | |
| return | |
| if message.channel.id != SPECIFIC_CHANNEL_ID: | |
| return | |
| if self.is_processing: | |
| return | |
| self.is_processing = True | |
| try: | |
| image_path = await generate_image(message.content) | |
| await send_image(message.channel, image_path) | |
| finally: | |
| self.is_processing = False | |
| async def generate_image(prompt): | |
| """Generate an image using the Stable Diffusion model.""" | |
| response = hf_client(text=prompt) | |
| image_data = response['image'][0] # Assuming the response contains image data | |
| image_bytes = io.BytesIO(image_data) | |
| image = Image.open(image_bytes) | |
| image.save("output.png") | |
| return "output.png" | |
| async def send_image(channel, image_path): | |
| """Send an image to the specified Discord channel.""" | |
| file = discord.File(image_path) | |
| await channel.send(file=file) | |
| if __name__ == "__main__": | |
| discord_client = MyClient(intents=intents) | |
| discord_client.run(os.getenv('DISCORD_TOKEN')) | |