File size: 2,616 Bytes
78efe79
440418c
f3985af
bad7ad6
407a575
98c1b1b
 
 
407a575
32c38ef
f3985af
440418c
1831164
440418c
98c1b1b
440418c
98c1b1b
 
08baccf
32c38ef
98c1b1b
cb69e60
64f1359
8954f0b
64f1359
4509126
 
 
78efe79
08baccf
 
8954f0b
08baccf
78efe79
98c1b1b
 
34428f1
78efe79
 
98c1b1b
78efe79
64f1359
 
 
 
8954f0b
64f1359
98c1b1b
 
64f1359
8954f0b
1831164
98c1b1b
57dc30c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b019b06
98c1b1b
 
 
 
0926d14
34428f1
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
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 from Hugging Face.
    """
    try:
        # Using the Inference API correctly
        response = hf_client(inputs={"prompt": prompt}, parameters={"num_images": 1}, model_id="stabilityai/stable-diffusion-3-medium")
        image_data = response['images'][0]  # Assuming the response contains image data

        # Save image data to a file
        image_bytes = io.BytesIO(base64.b64decode(image_data))
        image = Image.open(image_bytes)
        image_path = "output.png"
        image.save(image_path)
        return image_path

    except Exception as e:
        logging.error(f"Failed to generate image: {str(e)}")
        return None


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'))