Skip to content

Commit f477096

Browse files
authored
Update user.md
1 parent 3c92f9e commit f477096

File tree

1 file changed

+26
-1
lines changed

1 file changed

+26
-1
lines changed

app/docs/user.md

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,29 @@ Output
9090
]
9191
},
9292
'feedback': "Cannot determine if the answer is correct. Please provide more information about 'proton'"}
93-
```
93+
```
94+
95+
96+
### Listing Question Format
97+
98+
For the type of listing question, input to the response area or answer is expected to be in the shape of a string, with elements separated by semi-colons (`;`)Words and phrases are distinguished based on semantic similarity rather than exact matches. Additionally, responses shorter than the expected answers will be classified as incorrect, even if they contain partial correctness. However, correct answers will be provided in the feedback for reference:
99+
100+
Examples:
101+
- `'apple;pear;juice'`
102+
- `'pale white;light white;dim white'`
103+
104+
The return format will be structured as follows:
105+
106+
```json
107+
{
108+
"is_correct": true,
109+
"result": {
110+
"response": {
111+
"correct": correct_answers,
112+
"incorrect": incorrect_answers
113+
},
114+
"processing_time": time.process_time() - start_time,
115+
"method": "LLM-based comparison"
116+
},
117+
"feedback": "Correct answers: {correct_answers}. Incorrect answers: {incorrect_answers}."
118+
}

0 commit comments

Comments
 (0)