File size: 11,201 Bytes
c9f5b32 |
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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 |
import re
import logging
import csv
from io import StringIO
logger = logging.getLogger(__name__)
def parse_toon_line(line_def, data_line):
"""
Parses a single TOON data line based on headers.
Handles CSV-style quoting for text fields.
Robustly handles '9/10' or '(9)' formats in numeric fields.
"""
if not data_line or data_line.isspace():
return {}
try:
# Use csv module to handle quoted strings
reader = csv.reader(StringIO(data_line), skipinitialspace=True)
try:
values = next(reader)
except StopIteration:
values = []
cleaned_values = []
for v in values:
v_str = v.strip()
# Remove parens: (9) -> 9
v_str = v_str.replace('(', '').replace(')', '')
# Handle fractional scores: 9/10 -> 9
if '/' in v_str and any(c.isdigit() for c in v_str):
parts = v_str.split('/')
# If first part is digit, take it.
if parts[0].strip().isdigit():
v_str = parts[0].strip()
cleaned_values.append(v_str)
headers = line_def.get('headers', [])
# Ensure values match headers length if possible, or pad
if len(cleaned_values) < len(headers):
cleaned_values += [""] * (len(headers) - len(cleaned_values))
elif len(cleaned_values) > len(headers):
cleaned_values = cleaned_values[:len(headers)]
return dict(zip(headers, cleaned_values))
except Exception as e:
logger.error(f"Error parsing TOON line '{data_line}': {e}")
return {}
def fuzzy_extract_scores(text: str) -> dict:
"""
Fallback method. Scans text for key metrics followed near-immediately by a number.
Handles: "Visual: 9", "Visual - 9", "Visual: 9/10", "Accuracy: 9/10"
"""
scores = {
'visual': '0', 'audio': '0', 'source': '0', 'logic': '0', 'emotion': '0',
'video_audio': '0', 'video_caption': '0', 'audio_caption': '0'
}
# Mappings: Regex Pattern -> Score Key
mappings = [
('visual', 'visual'),
('visual.*?integrity', 'visual'),
('accuracy', 'visual'), # Fallback
('audio', 'audio'),
('source', 'source'),
('logic', 'logic'),
('emotion', 'emotion'),
(r'video.*?audio', 'video_audio'),
(r'video.*?caption', 'video_caption'),
(r'audio.*?caption', 'audio_caption')
]
for pattern_str, key in mappings:
pattern = re.compile(fr'(?i){pattern_str}.*?[:=\-\s\(]+(\b10\b|\b\d\b)(?:/10)?')
match = pattern.search(text)
if match:
if scores[key] == '0':
scores[key] = match.group(1)
return scores
def parse_veracity_toon(text: str) -> dict:
"""
Parses the Veracity Vector TOON output into a standardized dictionary.
Handles "Simple", "Reasoning", and new "Modalities" blocks.
Robust against Markdown formatting artifacts and nested reports.
"""
if not text:
return {}
# 1. Cleanup
text = re.sub(r'```\w*', '', text)
text = re.sub(r'```', '', text)
text = text.strip()
parsed_sections = {}
# 2. Robust Regex for TOON Block Headers
# Matches: key : type [ count ] { headers } :
block_pattern = re.compile(
r'([a-zA-Z0-9_]+)\s*:\s*(?:\w+\s*)?(?:\[\s*(\d+)\s*\])?\s*\{\s*(.*?)\s*\}\s*:\s*',
re.MULTILINE
)
matches = list(block_pattern.finditer(text))
for i, match in enumerate(matches):
key = match.group(1).lower()
# Default to 1 if count is missing
count = int(match.group(2)) if match.group(2) else 1
headers_str = match.group(3)
headers = [h.strip().lower() for h in headers_str.split(',')]
start_idx = match.end()
# End at next match or end of text
end_idx = matches[i+1].start() if i + 1 < len(matches) else len(text)
block_content = text[start_idx:end_idx].strip()
lines = [line.strip() for line in block_content.splitlines() if line.strip()]
data_items = []
valid_lines = [l for l in lines if len(l) > 1]
for line in valid_lines[:count]:
item = parse_toon_line({'key': key, 'headers': headers}, line)
data_items.append(item)
if count == 1 and data_items:
parsed_sections[key] = data_items[0]
else:
parsed_sections[key] = data_items
# --- Flatten logic to standardized structure ---
flat_result = {
'veracity_vectors': {
'visual_integrity_score': '0',
'audio_integrity_score': '0',
'source_credibility_score': '0',
'logical_consistency_score': '0',
'emotional_manipulation_score': '0'
},
'modalities': {
'video_audio_score': '0',
'video_caption_score': '0',
'audio_caption_score': '0'
},
'video_context_summary': '',
'political_bias': {},
'criticism_level': {},
'sentiment_and_bias': '',
'tags': [],
'factuality_factors': {},
'disinformation_analysis': {},
'final_assessment': {}
}
got_vectors = False
got_modalities = False
# 1. Process 'vectors'
vectors_data = parsed_sections.get('vectors', [])
if isinstance(vectors_data, dict): # Simple schema
v = vectors_data
if any(val and val != '0' for val in v.values()):
if 'visual' in v: flat_result['veracity_vectors']['visual_integrity_score'] = v['visual']
if 'audio' in v: flat_result['veracity_vectors']['audio_integrity_score'] = v['audio']
if 'source' in v: flat_result['veracity_vectors']['source_credibility_score'] = v['source']
if 'logic' in v: flat_result['veracity_vectors']['logical_consistency_score'] = v['logic']
if 'emotion' in v: flat_result['veracity_vectors']['emotional_manipulation_score'] = v['emotion']
got_vectors = True
elif isinstance(vectors_data, list): # Reasoning schema
for item in vectors_data:
cat = item.get('category', '').lower()
score = item.get('score', '0')
if score and score != '0':
got_vectors = True
if 'visual' in cat: flat_result['veracity_vectors']['visual_integrity_score'] = score
elif 'audio' in cat: flat_result['veracity_vectors']['audio_integrity_score'] = score
elif 'source' in cat: flat_result['veracity_vectors']['source_credibility_score'] = score
elif 'logic' in cat: flat_result['veracity_vectors']['logical_consistency_score'] = score
elif 'emotion' in cat: flat_result['veracity_vectors']['emotional_manipulation_score'] = score
# 2. Process 'modalities'
modalities_data = parsed_sections.get('modalities', [])
if isinstance(modalities_data, dict): # Simple schema
m = modalities_data
for k, v in m.items():
k_clean = k.lower().replace(' ', '').replace('-', '').replace('_', '')
if 'videoaudio' in k_clean: flat_result['modalities']['video_audio_score'] = v
elif 'videocaption' in k_clean: flat_result['modalities']['video_caption_score'] = v
elif 'audiocaption' in k_clean: flat_result['modalities']['audio_caption_score'] = v
if v and v != '0': got_modalities = True
elif isinstance(modalities_data, list): # Reasoning schema
for item in modalities_data:
cat = item.get('category', '').lower().replace(' ', '').replace('-', '').replace('_', '')
score = item.get('score', '0')
if score and score != '0':
got_modalities = True
if 'videoaudio' in cat: flat_result['modalities']['video_audio_score'] = score
elif 'videocaption' in cat: flat_result['modalities']['video_caption_score'] = score
elif 'audiocaption' in cat: flat_result['modalities']['audio_caption_score'] = score
# --- FUZZY FALLBACK ---
if not got_vectors or not got_modalities:
fuzzy_scores = fuzzy_extract_scores(text)
if not got_vectors:
flat_result['veracity_vectors']['visual_integrity_score'] = fuzzy_scores['visual']
flat_result['veracity_vectors']['audio_integrity_score'] = fuzzy_scores['audio']
flat_result['veracity_vectors']['source_credibility_score'] = fuzzy_scores['source']
flat_result['veracity_vectors']['logical_consistency_score'] = fuzzy_scores['logic']
flat_result['veracity_vectors']['emotional_manipulation_score'] = fuzzy_scores['emotion']
if not got_modalities:
flat_result['modalities']['video_audio_score'] = fuzzy_scores['video_audio']
flat_result['modalities']['video_caption_score'] = fuzzy_scores['video_caption']
flat_result['modalities']['audio_caption_score'] = fuzzy_scores['audio_caption']
# 3. Factuality
f = parsed_sections.get('factuality', {})
if isinstance(f, list): f = f[0] if f else {}
flat_result['factuality_factors'] = {
'claim_accuracy': f.get('accuracy', 'Unverifiable'),
'evidence_gap': f.get('gap', ''),
'grounding_check': f.get('grounding', '')
}
# 4. Disinfo
d = parsed_sections.get('disinfo', {})
if isinstance(d, list): d = d[0] if d else {}
flat_result['disinformation_analysis'] = {
'classification': d.get('class', 'None'),
'intent': d.get('intent', 'None'),
'threat_vector': d.get('threat', 'None')
}
# 5. Final Assessment
fn = parsed_sections.get('final', {})
if isinstance(fn, list): fn = fn[0] if fn else {}
flat_result['final_assessment'] = {
'veracity_score_total': fn.get('score', '0'),
'reasoning': fn.get('reasoning', '')
}
# 6. Tags (New)
t = parsed_sections.get('tags', {})
if isinstance(t, list): t = t[0] if t else {}
raw_tags = t.get('keywords', '')
if raw_tags:
flat_result['tags'] = [x.strip() for x in raw_tags.split(',')]
# 7. Summary
s = parsed_sections.get('summary', {})
if isinstance(s, list): s = s[0] if s else {}
flat_result['video_context_summary'] = s.get('text', '')
# 8. Political Bias (New)
pb = parsed_sections.get('political_bias', {})
if isinstance(pb, list): pb = pb[0] if pb else {}
flat_result['political_bias'] = {
'score': pb.get('score', '0'),
'reasoning': pb.get('reasoning', '')
}
# 9. Criticism Level (New)
cl = parsed_sections.get('criticism_level', {})
if isinstance(cl, list): cl = cl[0] if cl else {}
flat_result['criticism_level'] = {
'score': cl.get('score', '0'),
'reasoning': cl.get('reasoning', '')
}
# 10. Sentiment and Bias (New)
sb = parsed_sections.get('sentiment_and_bias', {})
if isinstance(sb, list): sb = sb[0] if sb else {}
flat_result['sentiment_and_bias'] = sb.get('text', '')
flat_result['raw_parsed_structure'] = parsed_sections
return flat_result
|