Update app.py
Browse files
app.py
CHANGED
@@ -1,30 +1,85 @@
|
|
1 |
import discord
|
2 |
-
|
3 |
-
|
|
|
|
|
|
|
4 |
|
5 |
-
#
|
6 |
-
|
7 |
|
8 |
-
#
|
9 |
-
|
|
|
|
|
|
|
|
|
10 |
|
11 |
-
#
|
12 |
-
|
13 |
-
# ๋ฉ์์ง๋ฅผ ๋ฐ์ ์ฒ๋ฆฌ
|
14 |
-
if message.author == client.user:
|
15 |
-
return
|
16 |
|
17 |
-
|
18 |
-
|
19 |
|
20 |
-
#
|
21 |
-
|
22 |
-
async def onready():
|
23 |
-
print(f'{client.user} ๋ด์ด ์ค๋น๋์์ต๋๋ค.')
|
24 |
|
25 |
-
|
26 |
-
|
27 |
-
|
|
|
28 |
|
29 |
-
|
30 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import discord
|
2 |
+
import logging
|
3 |
+
import os
|
4 |
+
from huggingface_hub import InferenceClient
|
5 |
+
import asyncio
|
6 |
+
import subprocess
|
7 |
|
8 |
+
# ๋ก๊น
์ค์
|
9 |
+
logging.basicConfig(level=logging.DEBUG, format='%(asctime)s:%(levelname)s:%(name)s: %(message)s', handlers=[logging.StreamHandler()])
|
10 |
|
11 |
+
# ์ธํ
ํธ ์ค์
|
12 |
+
intents = discord.Intents.default()
|
13 |
+
intents.message_content = True
|
14 |
+
intents.messages = True
|
15 |
+
intents.guilds = True
|
16 |
+
intents.guild_messages = True
|
17 |
|
18 |
+
# ์ถ๋ก API ํด๋ผ์ด์ธํธ ์ค์
|
19 |
+
hf_client = InferenceClient("meta-llama/Meta-Llama-3-70B-Instruct", token=os.getenv("HF_TOKEN"))
|
|
|
|
|
|
|
20 |
|
21 |
+
# ํน์ ์ฑ๋ ID
|
22 |
+
SPECIFIC_CHANNEL_ID = int(os.getenv("DISCORD_CHANNEL_ID"))
|
23 |
|
24 |
+
# ๋ํ ํ์คํ ๋ฆฌ๋ฅผ ์ ์ฅํ ์ ์ญ ๋ณ์
|
25 |
+
conversation_history = []
|
|
|
|
|
26 |
|
27 |
+
class MyClient(discord.Client):
|
28 |
+
def __init__(self, *args, **kwargs):
|
29 |
+
super().__init__(*args, **kwargs)
|
30 |
+
self.is_processing = False
|
31 |
|
32 |
+
async def on_message(self, message):
|
33 |
+
if message.author == self.user:
|
34 |
+
return
|
35 |
+
if not self.is_message_in_specific_channel(message):
|
36 |
+
return
|
37 |
+
if self.is_processing:
|
38 |
+
return
|
39 |
+
self.is_processing = True
|
40 |
+
try:
|
41 |
+
response = await generate_response(message)
|
42 |
+
await message.channel.send(response)
|
43 |
+
finally:
|
44 |
+
self.is_processing = False
|
45 |
+
|
46 |
+
def is_message_in_specific_channel(self, message):
|
47 |
+
# ๋ฉ์์ง๊ฐ ์ง์ ๋ ์ฑ๋์ด๊ฑฐ๋, ํด๋น ์ฑ๋์ ์ฐ๋ ๋์ธ ๊ฒฝ์ฐ True ๋ฐํ
|
48 |
+
return message.channel.id == SPECIFIC_CHANNEL_ID or (
|
49 |
+
isinstance(message.channel, discord.Thread) and message.channel.parent_id == SPECIFIC_CHANNEL_ID
|
50 |
+
)
|
51 |
+
|
52 |
+
|
53 |
+
async def generate_response(message):
|
54 |
+
global conversation_history # ์ ์ญ ๋ณ์ ์ฌ์ฉ์ ๋ช
์
|
55 |
+
user_input = message.content
|
56 |
+
user_mention = message.author.mention
|
57 |
+
system_message = f"{user_mention}, DISCORD์์ ์ฌ์ฉ์๋ค์ ์ง๋ฌธ์ ๋ตํ๋ ์ด์์คํดํธ์
๋๋ค."
|
58 |
+
system_prefix = """
|
59 |
+
๋ฐ๋์ ํ๊ธ๋ก ๋ต๋ณํ์ญ์์ค.
|
60 |
+
"""
|
61 |
+
conversation_history.append({"role": "user", "content": user_input})
|
62 |
+
logging.debug(f'Conversation history updated: {conversation_history}')
|
63 |
+
|
64 |
+
messages = [{"role": "system", "content": f"{system_prefix} {system_message}"}] + conversation_history
|
65 |
+
logging.debug(f'Messages to be sent to the model: {messages}')
|
66 |
+
|
67 |
+
loop = asyncio.get_event_loop()
|
68 |
+
response = await loop.run_in_executor(None, lambda: hf_client.chat_completion(
|
69 |
+
messages, max_tokens=1000, stream=True, temperature=0.7, top_p=0.85))
|
70 |
+
|
71 |
+
full_response = []
|
72 |
+
for part in response:
|
73 |
+
logging.debug(f'Part received from stream: {part}')
|
74 |
+
if part.choices and part.choices[0].delta and part.choices[0].delta.content:
|
75 |
+
full_response.append(part.choices[0].delta.content)
|
76 |
+
|
77 |
+
full_response_text = ''.join(full_response)
|
78 |
+
logging.debug(f'Full model response: {full_response_text}')
|
79 |
+
|
80 |
+
conversation_history.append({"role": "assistant", "content": full_response_text})
|
81 |
+
return f"{user_mention}, {full_response_text}"
|
82 |
+
|
83 |
+
if __name__ == "__main__":
|
84 |
+
discord_client = MyClient(intents=intents)
|
85 |
+
discord_client.run(os.getenv('DISCORD_TOKEN'))
|