Spaces:
Runtime error
Runtime error
seawolf2357
commited on
Commit
โข
15f5b33
1
Parent(s):
a0eb0c7
Update app.py
Browse files
app.py
CHANGED
@@ -49,16 +49,16 @@ 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 |
-
# hf_client.chat_completion ํธ์ถ
|
53 |
try:
|
54 |
-
|
|
|
|
|
55 |
return response.choices[0].delta.content.strip()
|
56 |
except Exception as e:
|
57 |
logging.error(f"An error occurred: {e}")
|
58 |
return "์ค๋ฅ๊ฐ ๋ฐ์ํ์ต๋๋ค. ๋ค์ ์๋ํด ์ฃผ์ธ์."
|
59 |
|
60 |
|
61 |
-
|
62 |
# ๋์ค์ฝ๋ ๋ด ์ธ์คํด์ค ์์ฑ ๋ฐ ์คํ
|
63 |
discord_client = MyClient(intents=intents)
|
64 |
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 |
+
# hf_client.chat_completion ํธ์ถ
|
54 |
+
response = hf_client.chat_completion(messages, max_tokens=max_tokens, stream=False, temperature=temperature, top_p=top_p)
|
55 |
+
# chat_completion์ด ๋น๋๊ธฐ ํจ์๊ฐ ์๋ ๊ฒฝ์ฐ
|
56 |
return response.choices[0].delta.content.strip()
|
57 |
except Exception as e:
|
58 |
logging.error(f"An error occurred: {e}")
|
59 |
return "์ค๋ฅ๊ฐ ๋ฐ์ํ์ต๋๋ค. ๋ค์ ์๋ํด ์ฃผ์ธ์."
|
60 |
|
61 |
|
|
|
62 |
# ๋์ค์ฝ๋ ๋ด ์ธ์คํด์ค ์์ฑ ๋ฐ ์คํ
|
63 |
discord_client = MyClient(intents=intents)
|
64 |
discord_client.run(os.getenv('DISCORD_TOKEN'))
|