trustgraph-base .chunks / .documents confusion in the API (#481)

* trustgraph-base .chunks / .documents confusion in the API

* Added tests, fixed test failures in code

* Fix file dup error

* Fix contract error
This commit is contained in:
cybermaggedon 2025-09-02 17:58:53 +01:00 committed by GitHub
parent 210d600f78
commit 38826c7de1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 639 additions and 9 deletions

View file

@ -45,4 +45,11 @@ class DocumentEmbeddingsRequest(Record):
class DocumentEmbeddingsResponse(Record):
error = Error()
chunks = Array(String())
chunks = Array(String())
document_embeddings_request_queue = topic(
"non-persistent://trustgraph/document-embeddings-request"
)
document_embeddings_response_queue = topic(
"non-persistent://trustgraph/document-embeddings-response"
)