feat: add Qdrant recording workflow
Record to Qdrant / record-event (push) Successful in 12s
Record to Qdrant / nightly-digest (push) Has been skipped

This commit is contained in:
admin
2026-05-27 10:49:05 +09:00
parent b1689faab7
commit c7e55cfd24
6 changed files with 174 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
import json
d = json.load(open('/tmp/scroll.json'))
texts = '\n'.join(p.get('payload',{}).get('content','') for p in d.get('result',{}).get('points',[]))
open('/tmp/texts.txt','w').write(texts)