Spaces:
Runtime error
Runtime error
seawolf2357
commited on
Commit
β’
8954f0b
1
Parent(s):
1831164
Update app.py
Browse files
app.py
CHANGED
@@ -3,6 +3,7 @@ import logging
|
|
3 |
import os
|
4 |
from huggingface_hub import InferenceClient
|
5 |
import asyncio
|
|
|
6 |
|
7 |
# λ‘κΉ
μ€μ
|
8 |
logging.basicConfig(level=logging.DEBUG, format='%(asctime)s:%(levelname)s:%(name)s: %(message)s', handlers=[logging.StreamHandler()])
|
@@ -16,7 +17,7 @@ intents.messages = True
|
|
16 |
hf_client = InferenceClient("CohereForAI/c4ai-command-r-plus", token=os.getenv("HF_TOKEN"))
|
17 |
|
18 |
# νΉμ μ±λ ID
|
19 |
-
SPECIFIC_CHANNEL_ID = int(os.getenv("DISCORD_CHANNEL_ID"))
|
20 |
|
21 |
# λν νμ€ν 리λ₯Ό μ μ₯ν λ³μ
|
22 |
conversation_history = []
|
@@ -24,44 +25,26 @@ conversation_history = []
|
|
24 |
class MyClient(discord.Client):
|
25 |
def __init__(self, *args, **kwargs):
|
26 |
super().__init__(*args, **kwargs)
|
27 |
-
self.is_processing = False
|
28 |
|
29 |
async def on_ready(self):
|
30 |
logging.info(f'{self.user}λ‘ λ‘κ·ΈμΈλμμ΅λλ€!')
|
31 |
-
|
|
|
32 |
|
33 |
async def on_message(self, message):
|
34 |
if message.author == self.user:
|
35 |
-
logging.info('μμ μ λ©μμ§λ 무μν©λλ€.')
|
36 |
return
|
37 |
-
|
38 |
if message.channel.id != SPECIFIC_CHANNEL_ID:
|
39 |
-
logging.info(f'λ©μμ§κ° μ§μ λ μ±λ {SPECIFIC_CHANNEL_ID}μ΄ μλλ―λ‘ λ¬΄μλ©λλ€.')
|
40 |
return
|
41 |
-
|
42 |
if self.is_processing:
|
43 |
-
logging.info('νμ¬ λ©μμ§λ₯Ό μ²λ¦¬ μ€μ
λλ€. μλ‘μ΄ μμ²μ 무μν©λλ€.')
|
44 |
return
|
45 |
-
|
46 |
-
logging.debug(f'Receiving message in channel {message.channel.id}: {message.content}')
|
47 |
-
|
48 |
-
if not message.content.strip(): # λ©μμ§κ° λΉ λ¬Έμμ΄μΈ κ²½μ° μ²λ¦¬
|
49 |
-
logging.warning('Received message with no content.')
|
50 |
-
await message.channel.send('μ§λ¬Έμ μ
λ ₯ν΄ μ£ΌμΈμ.')
|
51 |
-
return
|
52 |
-
|
53 |
-
self.is_processing = True # λ©μμ§ μ²λ¦¬ μμ νλκ·Έ μ€μ
|
54 |
-
|
55 |
try:
|
56 |
response = await generate_response(message.content)
|
57 |
await message.channel.send(response)
|
58 |
finally:
|
59 |
-
self.is_processing = False
|
60 |
-
|
61 |
-
async def log_live_message(self):
|
62 |
-
while True:
|
63 |
-
logging.info("Live") # λ‘κ·Έλ‘ "Live" λ©μμ§ μΆλ ₯
|
64 |
-
await asyncio.sleep(60) # 1λΆλ§λ€ λ°λ³΅
|
65 |
|
66 |
async def generate_response(user_input):
|
67 |
system_message = "DISCORDμμ μ¬μ©μλ€μ μ§λ¬Έμ λ΅νλ 'AI μ±λ' μ λ΄ μ΄μμ€ν΄νΈμ΄κ³ λμ μ΄λ¦μ 'AI λ°©μ₯'μ΄λ€. λνλ₯Ό κ³μ μ΄μ΄κ°κ³ , μ΄μ μλ΅μ μ°Έκ³ νμμμ€."
|
@@ -73,32 +56,36 @@ async def generate_response(user_input):
|
|
73 |
λ°λμ νκΈλ‘ λ΅λ³νμμμ€.
|
74 |
"""
|
75 |
|
76 |
-
|
77 |
global conversation_history
|
78 |
conversation_history.append({"role": "user", "content": user_input})
|
79 |
-
logging.debug(f'Conversation history updated: {conversation_history}')
|
80 |
-
|
81 |
messages = [{"role": "system", "content": f"{system_prefix} {system_message}"}] + conversation_history
|
82 |
-
logging.debug(f'Messages to be sent to the model: {messages}')
|
83 |
|
84 |
-
|
85 |
-
loop = asyncio.get_event_loop()
|
86 |
-
response = await loop.run_in_executor(None, lambda: hf_client.chat_completion(
|
87 |
-
messages, max_tokens=1000, stream=True, temperature=0.7, top_p=0.85))
|
88 |
-
|
89 |
-
# μ€νΈλ¦¬λ° μλ΅μ μ²λ¦¬νλ λ‘μ§ μΆκ°
|
90 |
full_response = []
|
91 |
for part in response:
|
92 |
-
logging.debug(f'Part received from stream: {part}') # μ€νΈλ¦¬λ° μλ΅μ κ° ννΈ λ‘κΉ
|
93 |
if part.choices and part.choices[0].delta and part.choices[0].delta.content:
|
94 |
full_response.append(part.choices[0].delta.content)
|
95 |
|
96 |
full_response_text = ''.join(full_response)
|
97 |
-
logging.debug(f'Full model response: {full_response_text}')
|
98 |
-
|
99 |
conversation_history.append({"role": "assistant", "content": full_response_text})
|
100 |
return full_response_text
|
101 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
102 |
# λμ€μ½λ λ΄ μΈμ€ν΄μ€ μμ± λ° μ€ν
|
103 |
discord_client = MyClient(intents=intents)
|
104 |
discord_client.run(os.getenv('DISCORD_TOKEN'))
|
|
|
3 |
import os
|
4 |
from huggingface_hub import InferenceClient
|
5 |
import asyncio
|
6 |
+
from http.server import BaseHTTPRequestHandler, HTTPServer
|
7 |
|
8 |
# λ‘κΉ
μ€μ
|
9 |
logging.basicConfig(level=logging.DEBUG, format='%(asctime)s:%(levelname)s:%(name)s: %(message)s', handlers=[logging.StreamHandler()])
|
|
|
17 |
hf_client = InferenceClient("CohereForAI/c4ai-command-r-plus", token=os.getenv("HF_TOKEN"))
|
18 |
|
19 |
# νΉμ μ±λ ID
|
20 |
+
SPECIFIC_CHANNEL_ID = int(os.getenv("DISCORD_CHANNEL_ID"))
|
21 |
|
22 |
# λν νμ€ν 리λ₯Ό μ μ₯ν λ³μ
|
23 |
conversation_history = []
|
|
|
25 |
class MyClient(discord.Client):
|
26 |
def __init__(self, *args, **kwargs):
|
27 |
super().__init__(*args, **kwargs)
|
28 |
+
self.is_processing = False
|
29 |
|
30 |
async def on_ready(self):
|
31 |
logging.info(f'{self.user}λ‘ λ‘κ·ΈμΈλμμ΅λλ€!')
|
32 |
+
# Run the web server as a background task
|
33 |
+
asyncio.create_task(run_server())
|
34 |
|
35 |
async def on_message(self, message):
|
36 |
if message.author == self.user:
|
|
|
37 |
return
|
|
|
38 |
if message.channel.id != SPECIFIC_CHANNEL_ID:
|
|
|
39 |
return
|
|
|
40 |
if self.is_processing:
|
|
|
41 |
return
|
42 |
+
self.is_processing = True
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
try:
|
44 |
response = await generate_response(message.content)
|
45 |
await message.channel.send(response)
|
46 |
finally:
|
47 |
+
self.is_processing = False
|
|
|
|
|
|
|
|
|
|
|
48 |
|
49 |
async def generate_response(user_input):
|
50 |
system_message = "DISCORDμμ μ¬μ©μλ€μ μ§λ¬Έμ λ΅νλ 'AI μ±λ' μ λ΄ μ΄μμ€ν΄νΈμ΄κ³ λμ μ΄λ¦μ 'AI λ°©μ₯'μ΄λ€. λνλ₯Ό κ³μ μ΄μ΄κ°κ³ , μ΄μ μλ΅μ μ°Έκ³ νμμμ€."
|
|
|
56 |
λ°λμ νκΈλ‘ λ΅λ³νμμμ€.
|
57 |
"""
|
58 |
|
59 |
+
|
60 |
global conversation_history
|
61 |
conversation_history.append({"role": "user", "content": user_input})
|
|
|
|
|
62 |
messages = [{"role": "system", "content": f"{system_prefix} {system_message}"}] + conversation_history
|
|
|
63 |
|
64 |
+
response = await asyncio.get_event_loop().run_in_executor(None, lambda: hf_client.chat_completion(messages, max_tokens=1000))
|
|
|
|
|
|
|
|
|
|
|
65 |
full_response = []
|
66 |
for part in response:
|
|
|
67 |
if part.choices and part.choices[0].delta and part.choices[0].delta.content:
|
68 |
full_response.append(part.choices[0].delta.content)
|
69 |
|
70 |
full_response_text = ''.join(full_response)
|
|
|
|
|
71 |
conversation_history.append({"role": "assistant", "content": full_response_text})
|
72 |
return full_response_text
|
73 |
|
74 |
+
class SimpleHTTPRequestHandler(BaseHTTPRequestHandler):
|
75 |
+
def do_GET(self):
|
76 |
+
logging.info(f"Received GET request from {self.address_string()}")
|
77 |
+
self.send_response(200)
|
78 |
+
self.send_header('Content-type', 'text/html')
|
79 |
+
self.end_headers()
|
80 |
+
self.wfile.write(b"Hello, this is a simple server!")
|
81 |
+
|
82 |
+
async def run_server():
|
83 |
+
server_address = ('', 8000)
|
84 |
+
httpd = HTTPServer(server_address, SimpleHTTPRequestHandler)
|
85 |
+
logging.info('HTTP Server Running on port 8000...')
|
86 |
+
with httpd:
|
87 |
+
httpd.serve_forever()
|
88 |
+
|
89 |
# λμ€μ½λ λ΄ μΈμ€ν΄μ€ μμ± λ° μ€ν
|
90 |
discord_client = MyClient(intents=intents)
|
91 |
discord_client.run(os.getenv('DISCORD_TOKEN'))
|