seawolf2357
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -49,15 +49,14 @@ async def generate_response(user_input, history, system_message, max_tokens, tem
|
|
49 |
messages.append({"role": "assistant", "content": val[1]})
|
50 |
messages.append({"role": "user", "content": user_input})
|
51 |
|
52 |
-
# ํจ์๊ฐ ๋๊ธฐ ๋ฐฉ์์ด๋ฏ๋ก await๋ฅผ ์ฌ์ฉํ์ง ์์
|
53 |
try:
|
54 |
-
response = hf_client.chat_completion(messages, max_tokens=max_tokens, stream=False, temperature=temperature, top_p=top_p)
|
55 |
-
|
|
|
56 |
except Exception as e:
|
57 |
logging.error(f"An error occurred: {e}")
|
58 |
return "์ค๋ฅ๊ฐ ๋ฐ์ํ์ต๋๋ค. ๋ค์ ์๋ํด ์ฃผ์ธ์."
|
59 |
|
60 |
-
|
61 |
# ๋์ค์ฝ๋ ๋ด ์ธ์คํด์ค ์์ฑ ๋ฐ ์คํ
|
62 |
discord_client = MyClient(intents=intents)
|
63 |
discord_client.run(os.getenv('DISCORD_TOKEN'))
|
|
|
49 |
messages.append({"role": "assistant", "content": val[1]})
|
50 |
messages.append({"role": "user", "content": user_input})
|
51 |
|
|
|
52 |
try:
|
53 |
+
response = await hf_client.chat_completion(messages, max_tokens=max_tokens, stream=False, temperature=temperature, top_p=top_p)
|
54 |
+
# ์ฌ๋ฐ๋ฅธ ์์ฑ์ ์ ๊ทผํ์ฌ ์๋ต ๋ด์ฉ์ ์ถ์ถ
|
55 |
+
return response.choices[0].text # 'delta' ๋์ 'text' ๋๋ API ๋ฌธ์์ ๋ฐ๋ฅธ ์ ์ ํ ์์ฑ ์ฌ์ฉ
|
56 |
except Exception as e:
|
57 |
logging.error(f"An error occurred: {e}")
|
58 |
return "์ค๋ฅ๊ฐ ๋ฐ์ํ์ต๋๋ค. ๋ค์ ์๋ํด ์ฃผ์ธ์."
|
59 |
|
|
|
60 |
# ๋์ค์ฝ๋ ๋ด ์ธ์คํด์ค ์์ฑ ๋ฐ ์คํ
|
61 |
discord_client = MyClient(intents=intents)
|
62 |
discord_client.run(os.getenv('DISCORD_TOKEN'))
|