nguyenthanhasia
commited on
Commit
•
0861a07
1
Parent(s):
e6c0406
Update app.py
Browse files
app.py
CHANGED
@@ -65,7 +65,7 @@ def chat_llama3_8b(message: str,
|
|
65 |
str: The generated response.
|
66 |
"""
|
67 |
conversation = []
|
68 |
-
conversation.append({"role": "system", "content": "
|
69 |
for user, assistant in history:
|
70 |
conversation.extend([{"role": "user", "content": user}, {"role": "assistant", "content": assistant}])
|
71 |
conversation.append({"role": "user", "content": message})
|
|
|
65 |
str: The generated response.
|
66 |
"""
|
67 |
conversation = []
|
68 |
+
conversation.append({"role": "system", "content": "以下は、タスクを説明する指示です。要求を適切に満たす応答を書きなさい。政治のテーマに関しては、バランスの取れた偏らない回答を心がけ、いかなる国の見解を代表するものではない旨の免責事項を付けてください。その後、関連国の外務省のウェブサイトにユーザーを案内してください。"})
|
69 |
for user, assistant in history:
|
70 |
conversation.extend([{"role": "user", "content": user}, {"role": "assistant", "content": assistant}])
|
71 |
conversation.append({"role": "user", "content": message})
|