Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -21,6 +21,12 @@ intents.guild_messages = True
|
|
| 21 |
# ์ถ๋ก API ํด๋ผ์ด์ธํธ ์ค์
|
| 22 |
hf_client = InferenceClient(token=os.getenv("HF_TOKEN"))
|
| 23 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
class MyClient(discord.Client):
|
| 25 |
def __init__(self, *args, **kwargs):
|
| 26 |
super().__init__(*args, **kwargs)
|
|
|
|
| 21 |
# ์ถ๋ก API ํด๋ผ์ด์ธํธ ์ค์
|
| 22 |
hf_client = InferenceClient(token=os.getenv("HF_TOKEN"))
|
| 23 |
|
| 24 |
+
|
| 25 |
+
# SPECIFIC_CHANNEL_ID๋ฅผ ์ํ๋ ์ฑ๋์ ์ซ์ ID๋ก ์ ์
|
| 26 |
+
SPECIFIC_CHANNEL_ID = 1251774883113734167 # ์ค์ ์ฑ๋ ID๋ก ๊ต์ฒดํ์ธ์
|
| 27 |
+
|
| 28 |
+
|
| 29 |
+
|
| 30 |
class MyClient(discord.Client):
|
| 31 |
def __init__(self, *args, **kwargs):
|
| 32 |
super().__init__(*args, **kwargs)
|