trustgraph-base 0.17.4__tar.gz → 0.17.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/PKG-INFO +2 -2
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/api/api.py +14 -10
- trustgraph-base-0.17.6/trustgraph/base_version.py +1 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph_base.egg-info/PKG-INFO +2 -2
- trustgraph-base-0.17.4/trustgraph/base_version.py +0 -1
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/README.md +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/setup.cfg +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/setup.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/api/__init__.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/base/__init__.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/base/base_processor.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/base/consumer.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/base/consumer_producer.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/base/producer.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/clients/__init__.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/clients/agent_client.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/clients/base.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/clients/document_embeddings_client.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/clients/document_rag_client.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/clients/embeddings_client.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/clients/graph_embeddings_client.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/clients/graph_rag_client.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/clients/llm_client.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/clients/prompt_client.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/clients/triples_query_client.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/exceptions.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/knowledge/__init__.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/knowledge/defs.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/knowledge/document.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/knowledge/identifier.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/knowledge/organization.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/knowledge/publication.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/log_level.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/objects/__init__.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/objects/field.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/objects/object.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/rdf.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/schema/__init__.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/schema/agent.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/schema/documents.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/schema/graph.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/schema/lookup.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/schema/metadata.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/schema/models.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/schema/object.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/schema/prompt.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/schema/retrieval.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/schema/topic.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/schema/types.py +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph_base.egg-info/SOURCES.txt +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph_base.egg-info/dependency_links.txt +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph_base.egg-info/requires.txt +0 -0
- {trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph_base.egg-info/top_level.txt +0 -0
@@ -1,12 +1,12 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: trustgraph-base
|
3
|
-
Version: 0.17.
|
3
|
+
Version: 0.17.6
|
4
4
|
Summary: TrustGraph provides a means to run a pipeline of flexible AI processing components in a flexible means to achieve a processing pipeline.
|
5
5
|
Home-page: https://github.com/trustgraph-ai/trustgraph
|
6
6
|
Author: trustgraph.ai
|
7
7
|
Author-email: security@trustgraph.ai
|
8
8
|
License: UNKNOWN
|
9
|
-
Download-URL: https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v0.17.
|
9
|
+
Download-URL: https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v0.17.6.tar.gz
|
10
10
|
Platform: UNKNOWN
|
11
11
|
Classifier: Programming Language :: Python :: 3
|
12
12
|
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
@@ -205,16 +205,20 @@ class Api:
|
|
205
205
|
"limit": limit
|
206
206
|
}
|
207
207
|
|
208
|
-
if
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
208
|
+
if s:
|
209
|
+
if not isinstance(s, Uri):
|
210
|
+
raise RuntimeError("s must be Uri")
|
211
|
+
input["s"] = { "v": str(s), "e": isinstance(s, Uri), }
|
212
|
+
|
213
|
+
if p:
|
214
|
+
if not isinstance(p, Uri):
|
215
|
+
raise RuntimeError("p must be Uri")
|
216
|
+
input["p"] = { "v": str(p), "e": isinstance(p, Uri), }
|
217
|
+
|
218
|
+
if o:
|
219
|
+
if not isinstance(o, Uri) and not isinstance(o, Literal):
|
220
|
+
raise RuntimeError("o must be Uri or Literal")
|
221
|
+
input["o"] = { "v": str(o), "e": isinstance(o, Uri), }
|
218
222
|
|
219
223
|
url = f"{self.url}triples-query"
|
220
224
|
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.17.6"
|
@@ -1,12 +1,12 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: trustgraph-base
|
3
|
-
Version: 0.17.
|
3
|
+
Version: 0.17.6
|
4
4
|
Summary: TrustGraph provides a means to run a pipeline of flexible AI processing components in a flexible means to achieve a processing pipeline.
|
5
5
|
Home-page: https://github.com/trustgraph-ai/trustgraph
|
6
6
|
Author: trustgraph.ai
|
7
7
|
Author-email: security@trustgraph.ai
|
8
8
|
License: UNKNOWN
|
9
|
-
Download-URL: https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v0.17.
|
9
|
+
Download-URL: https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v0.17.6.tar.gz
|
10
10
|
Platform: UNKNOWN
|
11
11
|
Classifier: Programming Language :: Python :: 3
|
12
12
|
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.17.4"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/clients/document_embeddings_client.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/clients/graph_embeddings_client.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph/clients/triples_query_client.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{trustgraph-base-0.17.4 → trustgraph-base-0.17.6}/trustgraph_base.egg-info/dependency_links.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|