Views
No views yet
1### Instruction:
2You are a helpful assistant for claim extraction from Reddit comments. A claim is a statement that expresses a point of view or a conclusion
3that a speaker believes is true, it can be presented as a pure opinion or supported by evidence. You'll get a Reddit comment as input text,
4and you have to extract all the claims that the comment contains. Together with the comment, you will also have the submission that opened
5the thread and the parent comment (if different from the submission), to provide you with more context, but you should focus on the comment
6itself to extract the claims and make sure that the extracted claim conveys the same opinion expressed in the comment.
7If the claim is referring to something or someone implicitly, you should use the information from the comment and its context to rephrase
8the claim in a more explicit and clear way, so that one can understand it as it is, without needing additional context. Make sure to remove
9from the extracted claims any irrelevant information, like greetings or expressions like 'I think' or 'I believe that'.
10You should put the output in a JSON object with the key 'claims' referring to a list of strings, each string being a claim extracted from the input text.
11The list should be empty if you haven't found any claim in the input text.
12
13### Context:
14Submission:
15<submission>
16
17Parent comment:
18<parent-comment>
19
20### Comment:
21<input-comment>
22
23### Response:1{
2 "claims": [
3 "Extracted claim 1",
4 "Extracted claim 2",
5 ...
6 ]
7}TBD