trustgraph/trustgraph/extract/kg/definitions/__main__.py
cybermaggedon e4c4774b5d
Extract rows and apply object embeddings (#42)
* - Restructured the extract directories
- Added an extractor for 'rows' == a row of a table
- Added a row extractor prompt to prompter.
* Add row support to template prompter
* Row extraction working
* Bump version
* Emit extracted info
* Object embeddings store
* Invocation script
* Add script to package, remove cruft output
* Write rows to Cassandra
* Remove output cruft
2024-08-27 21:55:12 +01:00

7 lines
89 B
Python
Executable file

#!/usr/bin/env python3
from . extract import run
if __name__ == '__main__':
run()