-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathprompt.py
34 lines (25 loc) · 1 KB
/
prompt.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
evaluate_system = """
You are an expert evaluator with extensive experience in evaluating response of given query.
""".strip()
evaluate_prompt = """
Evaluate the Response based on the Query and criteria provided.
** Criteria **
```{criteria}```
** Query **
```{query}```
** Response **
```{response}```
Provide your evaluation based on the criteria:
```{criteria}```
Provide reasons for each score, indicating where and why any strengths or deficiencies occur within the Response. Reference specific passages or elements from the text to support your justification.
Ensure that each reason is concrete, with explicit references to the text that aligns with the criteria requirements.
Scoring Range: Assign an integer score between 1 to 10
** Output format **
Return the results in the following JSON format, Only output this JSON format and nothing else:
```json
{{
"score": an integer score between 1 to 10,
"reason": "Specific and detailed justification for the score using text elements."
}}
```
""".strip()