Skip to content

Commit

Permalink
optimize prompts
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenxu2022 committed Nov 18, 2024
1 parent fb7e52b commit b4a0529
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions WeiBanHelper.py
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ def ai_response(input, type):
messages=[
{
"role": "system",
"content": "本题为单选题,请根据题目和选项回答问题,以json格式输出正确的选项对应的id(即正确选项'id'键对应的值)和内容(即正确选项'content'键对应的值),除此之外不要输出任何多余的内容。"
"content": "本题为单选题,你只能选择一个选项,请根据题目和选项回答问题,以json格式输出正确的选项对应的id(即正确选项'id'键对应的值)和内容(即正确选项'content'键对应的值),示例回答:{\"id\":\"0196739f-f8b7-4d5e-b8c7-6a31eaf631eb\",\"content\":\"回答一\"}除此之外不要输出任何多余的内容。"
},
{
"role": "user",
Expand All @@ -414,7 +414,7 @@ def ai_response(input, type):
messages=[
{
"role": "system",
"content": "本题为多选题,请根据题目和选项回答问题,以json格式输出正确的选项对应的id(即正确选项'id'键对应的值)和内容(即正确选项'content'键对应的值),并使用逗号连接多个值,除此之外不要输出任何多余的内容。"
"content": "本题为多选题,你必须选择两个或以上选项,请根据题目和选项回答问题,以json格式输出正确的选项对应的id(即正确选项'id'键对应的值)和内容(即正确选项'content'键对应的值),回答只应该包含两个键,你需要使用逗号连接多个值,示例回答:{\"id\":\"0196739f-f8b7-4d5e-b8c7-6a31eaf631eb,b434e65e-8aa8-4b36-9fa9-224273efb6b0\",\"content\":\"回答一,回答二\"}除此之外不要输出任何多余的内容。"
},
{
"role": "user",
Expand Down

0 comments on commit b4a0529

Please sign in to comment.