14 lines
479 B
Python
14 lines
479 B
Python
import json
|
|
entries = []
|
|
with open('/mnt/d/Resonance_Engine/fractonaut_chronicle.jsonl') as f:
|
|
for line in f:
|
|
line = line.strip()
|
|
if line:
|
|
try: entries.append(json.loads(line))
|
|
except: pass
|
|
print(f'Total entries: {len(entries)}')
|
|
for e in entries[-20:]:
|
|
print(f'--- turn={e.get(chr(116)+chr(117)+chr(114)+chr(110))} cycle={e.get(chr(99)+chr(121)+chr(99)+chr(108)+chr(101))} ---')
|
|
print(e.get('response','(empty)'))
|
|
print()
|