Skip to content

Commit

Permalink
update prompt MNQA EN-QA
Browse files Browse the repository at this point in the history
  • Loading branch information
AridHasan committed Sep 6, 2024
1 parent d76f86d commit b40d1f6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions assets/en/QA/qa/MultiNativQA_Llama3_8b_ZeroShot.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,17 @@ def prompt(input_sample):

# Define the question prompt
question_prompt = f"""
Please use your expertise to answer the following English question. You should only Answer in English.
Provide your response in the following JSON format: {{"answer": "your answer"}}.
Please provide JSON output only. No additional text.
Please use your expertise to answer the following English question. Answer in English and rate your confidence level from 1 to 10.
Provide your response in the following JSON format: {{"answer": "your answer", "score": your confidence score}}.
Please provide JSON output only. No additional text. Answer should be limited to less or equal to {input_sample['length']} words.
Question: {input_sample}
Answer:
Question: {input_sample['question']}
"""

# Define the assistant prompt
assistant_prompt = """
I am an English AI assistant specialized in providing detailed and accurate answers across various fields. I aim to deliver clear, concise, and relevant information. How can I assist you today?
I am an English AI assistant specialized in providing detailed and accurate answers across various fields.
I aim to deliver clear, concise, and relevant information. How can I assist you today?
"""

return [
Expand Down

0 comments on commit b40d1f6

Please sign in to comment.