trustgraph-base 1.1.10__tar.gz → 1.2.3__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-1.1.10 → trustgraph_base-1.2.3}/PKG-INFO +6 -7
- trustgraph_base-1.2.3/pyproject.toml +28 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/__init__.py +1 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/agent_client.py +8 -10
- trustgraph_base-1.2.3/trustgraph/base_version.py +1 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph_base.egg-info/PKG-INFO +6 -7
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph_base.egg-info/SOURCES.txt +1 -1
- trustgraph-base-1.1.10/setup.py +0 -42
- trustgraph-base-1.1.10/trustgraph/base_version.py +0 -1
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/README.md +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/setup.cfg +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/api/__init__.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/api/api.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/api/config.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/api/exceptions.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/api/flow.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/api/knowledge.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/api/library.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/api/types.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/agent_service.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/async_processor.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/consumer.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/consumer_spec.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/document_embeddings_client.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/document_embeddings_query_service.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/document_embeddings_store_service.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/embeddings_client.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/embeddings_service.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/flow.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/flow_processor.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/graph_embeddings_client.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/graph_embeddings_query_service.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/graph_embeddings_store_service.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/graph_rag_client.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/llm_service.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/metrics.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/producer.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/producer_spec.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/prompt_client.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/publisher.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/pubsub.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/request_response_spec.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/setting_spec.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/spec.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/subscriber.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/subscriber_spec.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/text_completion_client.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/tool_client.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/tool_service.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/triples_client.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/triples_query_service.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/triples_store_service.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/clients/__init__.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/clients/agent_client.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/clients/base.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/clients/config_client.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/clients/document_embeddings_client.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/clients/document_rag_client.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/clients/embeddings_client.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/clients/graph_embeddings_client.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/clients/graph_rag_client.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/clients/llm_client.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/clients/prompt_client.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/clients/triples_query_client.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/exceptions.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/knowledge/__init__.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/knowledge/defs.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/knowledge/document.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/knowledge/identifier.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/knowledge/organization.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/knowledge/publication.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/log_level.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/messaging/__init__.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/messaging/registry.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/messaging/translators/__init__.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/messaging/translators/agent.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/messaging/translators/base.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/messaging/translators/config.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/messaging/translators/document_loading.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/messaging/translators/embeddings.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/messaging/translators/embeddings_query.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/messaging/translators/flow.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/messaging/translators/knowledge.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/messaging/translators/library.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/messaging/translators/metadata.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/messaging/translators/primitives.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/messaging/translators/prompt.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/messaging/translators/retrieval.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/messaging/translators/text_completion.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/messaging/translators/tool.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/messaging/translators/triples.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/objects/__init__.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/objects/field.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/objects/object.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/rdf.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/schema/__init__.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/schema/agent.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/schema/config.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/schema/documents.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/schema/flows.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/schema/graph.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/schema/knowledge.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/schema/library.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/schema/lookup.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/schema/metadata.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/schema/models.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/schema/object.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/schema/prompt.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/schema/retrieval.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/schema/topic.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/schema/types.py +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph_base.egg-info/dependency_links.txt +0 -0
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph_base.egg-info/requires.txt +1 -1
- {trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph_base.egg-info/top_level.txt +0 -0
@@ -1,15 +1,14 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: trustgraph-base
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.2.3
|
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
|
-
|
6
|
-
|
7
|
-
Author: trustgraph.ai
|
8
|
-
Author-email: security@trustgraph.ai
|
5
|
+
Author-email: "trustgraph.ai" <security@trustgraph.ai>
|
6
|
+
Project-URL: Homepage, https://github.com/trustgraph-ai/trustgraph
|
9
7
|
Classifier: Programming Language :: Python :: 3
|
10
|
-
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
11
8
|
Classifier: Operating System :: OS Independent
|
12
9
|
Requires-Python: >=3.8
|
13
10
|
Description-Content-Type: text/markdown
|
11
|
+
Requires-Dist: pulsar-client
|
12
|
+
Requires-Dist: prometheus-client
|
14
13
|
|
15
14
|
See https://trustgraph.ai/
|
@@ -0,0 +1,28 @@
|
|
1
|
+
[build-system]
|
2
|
+
requires = ["setuptools>=61.0", "wheel"]
|
3
|
+
build-backend = "setuptools.build_meta"
|
4
|
+
|
5
|
+
[project]
|
6
|
+
name = "trustgraph-base"
|
7
|
+
dynamic = ["version"]
|
8
|
+
authors = [{name = "trustgraph.ai", email = "security@trustgraph.ai"}]
|
9
|
+
description = "TrustGraph provides a means to run a pipeline of flexible AI processing components in a flexible means to achieve a processing pipeline."
|
10
|
+
readme = "README.md"
|
11
|
+
requires-python = ">=3.8"
|
12
|
+
dependencies = [
|
13
|
+
"pulsar-client",
|
14
|
+
"prometheus-client",
|
15
|
+
]
|
16
|
+
classifiers = [
|
17
|
+
"Programming Language :: Python :: 3",
|
18
|
+
"Operating System :: OS Independent",
|
19
|
+
]
|
20
|
+
|
21
|
+
[project.urls]
|
22
|
+
Homepage = "https://github.com/trustgraph-ai/trustgraph"
|
23
|
+
|
24
|
+
[tool.setuptools.packages.find]
|
25
|
+
include = ["trustgraph*"]
|
26
|
+
|
27
|
+
[tool.setuptools.dynamic]
|
28
|
+
version = {attr = "trustgraph.base_version.__version__"}
|
@@ -4,9 +4,9 @@ from .. schema import AgentRequest, AgentResponse
|
|
4
4
|
from .. knowledge import Uri, Literal
|
5
5
|
|
6
6
|
class AgentClient(RequestResponse):
|
7
|
-
async def
|
7
|
+
async def invoke(self, recipient, question, plan=None, state=None,
|
8
8
|
history=[], timeout=300):
|
9
|
-
|
9
|
+
|
10
10
|
resp = await self.request(
|
11
11
|
AgentRequest(
|
12
12
|
question = question,
|
@@ -18,22 +18,20 @@ class AgentClient(RequestResponse):
|
|
18
18
|
timeout=timeout,
|
19
19
|
)
|
20
20
|
|
21
|
-
print(resp, flush=True)
|
22
|
-
|
23
21
|
if resp.error:
|
24
22
|
raise RuntimeError(resp.error.message)
|
25
23
|
|
26
|
-
return resp
|
24
|
+
return resp.answer
|
27
25
|
|
28
|
-
class
|
26
|
+
class AgentClientSpec(RequestResponseSpec):
|
29
27
|
def __init__(
|
30
28
|
self, request_name, response_name,
|
31
29
|
):
|
32
|
-
super(
|
30
|
+
super(AgentClientSpec, self).__init__(
|
33
31
|
request_name = request_name,
|
34
|
-
request_schema =
|
32
|
+
request_schema = AgentRequest,
|
35
33
|
response_name = response_name,
|
36
|
-
response_schema =
|
37
|
-
impl =
|
34
|
+
response_schema = AgentResponse,
|
35
|
+
impl = AgentClient,
|
38
36
|
)
|
39
37
|
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "1.2.3"
|
@@ -1,15 +1,14 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: trustgraph-base
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.2.3
|
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
|
-
|
6
|
-
|
7
|
-
Author: trustgraph.ai
|
8
|
-
Author-email: security@trustgraph.ai
|
5
|
+
Author-email: "trustgraph.ai" <security@trustgraph.ai>
|
6
|
+
Project-URL: Homepage, https://github.com/trustgraph-ai/trustgraph
|
9
7
|
Classifier: Programming Language :: Python :: 3
|
10
|
-
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
11
8
|
Classifier: Operating System :: OS Independent
|
12
9
|
Requires-Python: >=3.8
|
13
10
|
Description-Content-Type: text/markdown
|
11
|
+
Requires-Dist: pulsar-client
|
12
|
+
Requires-Dist: prometheus-client
|
14
13
|
|
15
14
|
See https://trustgraph.ai/
|
trustgraph-base-1.1.10/setup.py
DELETED
@@ -1,42 +0,0 @@
|
|
1
|
-
import setuptools
|
2
|
-
import os
|
3
|
-
import importlib
|
4
|
-
|
5
|
-
with open("README.md", "r") as fh:
|
6
|
-
long_description = fh.read()
|
7
|
-
|
8
|
-
# Load a version number module
|
9
|
-
spec = importlib.util.spec_from_file_location(
|
10
|
-
'version', 'trustgraph/base_version.py'
|
11
|
-
)
|
12
|
-
version_module = importlib.util.module_from_spec(spec)
|
13
|
-
spec.loader.exec_module(version_module)
|
14
|
-
|
15
|
-
version = version_module.__version__
|
16
|
-
|
17
|
-
setuptools.setup(
|
18
|
-
name="trustgraph-base",
|
19
|
-
version=version,
|
20
|
-
author="trustgraph.ai",
|
21
|
-
author_email="security@trustgraph.ai",
|
22
|
-
description="TrustGraph provides a means to run a pipeline of flexible AI processing components in a flexible means to achieve a processing pipeline.",
|
23
|
-
long_description=long_description,
|
24
|
-
long_description_content_type="text/markdown",
|
25
|
-
url="https://github.com/trustgraph-ai/trustgraph",
|
26
|
-
packages=setuptools.find_namespace_packages(
|
27
|
-
where='./',
|
28
|
-
),
|
29
|
-
classifiers=[
|
30
|
-
"Programming Language :: Python :: 3",
|
31
|
-
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
32
|
-
"Operating System :: OS Independent",
|
33
|
-
],
|
34
|
-
python_requires='>=3.8',
|
35
|
-
download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz",
|
36
|
-
install_requires=[
|
37
|
-
"pulsar-client",
|
38
|
-
"prometheus-client",
|
39
|
-
],
|
40
|
-
scripts=[
|
41
|
-
]
|
42
|
-
)
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "1.1.10"
|
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-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/document_embeddings_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
|
{trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/graph_embeddings_query_service.py
RENAMED
File without changes
|
{trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/base/graph_embeddings_store_service.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
|
{trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/clients/document_embeddings_client.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/clients/graph_embeddings_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
|
{trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/messaging/translators/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/messaging/translators/embeddings.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/messaging/translators/knowledge.py
RENAMED
File without changes
|
{trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/messaging/translators/library.py
RENAMED
File without changes
|
{trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/messaging/translators/metadata.py
RENAMED
File without changes
|
{trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/messaging/translators/primitives.py
RENAMED
File without changes
|
File without changes
|
{trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/messaging/translators/retrieval.py
RENAMED
File without changes
|
{trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/messaging/translators/text_completion.py
RENAMED
File without changes
|
File without changes
|
{trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph/messaging/translators/triples.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
|
{trustgraph-base-1.1.10 → trustgraph_base-1.2.3}/trustgraph_base.egg-info/dependency_links.txt
RENAMED
File without changes
|
File without changes
|