File size: 243 Bytes
ca4ed58
3da97ef
ca4ed58
3da97ef
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
from pydantic import BaseModel
from typing import List
class Verdict(BaseModel):
	claim_id: str
	label: str           # supported | refuted | insufficient
	confidence: float
	best_evidence_id: str
	rationale: str
	citation_ids: List[str] = []