Feature/rework kg core (#171)

* Knowledge cores with msgpack
* Put it in the cli package
* Tidy up msgpack dumper
* Created a loader
This commit is contained in:
cybermaggedon 2024-11-25 20:46:35 +00:00 committed by GitHub
parent 319f9ac04a
commit 340d7a224f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 700 additions and 4 deletions

View file

@ -39,6 +39,7 @@ setuptools.setup(
"pulsar-client",
"rdflib",
"tabulate",
"msgpack",
],
scripts=[
"scripts/tg-graph-show",
@ -54,5 +55,8 @@ setuptools.setup(
"scripts/tg-invoke-agent",
"scripts/tg-invoke-prompt",
"scripts/tg-invoke-llm",
"scripts/tg-save-kg-core",
"scripts/tg-load-kg-core",
"scripts/tg-dump-msgpack",
]
)