trustgraph-embeddings-hf 0.20.11__tar.gz → 0.21.1__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-embeddings-hf-0.20.11 → trustgraph-embeddings-hf-0.21.1}/PKG-INFO +2 -2
- {trustgraph-embeddings-hf-0.20.11 → trustgraph-embeddings-hf-0.21.1}/setup.py +2 -2
- {trustgraph-embeddings-hf-0.20.11 → trustgraph-embeddings-hf-0.21.1}/trustgraph/embeddings/hf/hf.py +2 -2
- trustgraph-embeddings-hf-0.21.1/trustgraph/embeddings_hf_version.py +1 -0
- {trustgraph-embeddings-hf-0.20.11 → trustgraph-embeddings-hf-0.21.1}/trustgraph_embeddings_hf.egg-info/PKG-INFO +2 -2
- {trustgraph-embeddings-hf-0.20.11 → trustgraph-embeddings-hf-0.21.1}/trustgraph_embeddings_hf.egg-info/requires.txt +2 -2
- trustgraph-embeddings-hf-0.20.11/trustgraph/embeddings_hf_version.py +0 -1
- {trustgraph-embeddings-hf-0.20.11 → trustgraph-embeddings-hf-0.21.1}/README.md +0 -0
- {trustgraph-embeddings-hf-0.20.11 → trustgraph-embeddings-hf-0.21.1}/scripts/embeddings-hf +0 -0
- {trustgraph-embeddings-hf-0.20.11 → trustgraph-embeddings-hf-0.21.1}/setup.cfg +0 -0
- {trustgraph-embeddings-hf-0.20.11 → trustgraph-embeddings-hf-0.21.1}/trustgraph/__init__.py +0 -0
- {trustgraph-embeddings-hf-0.20.11 → trustgraph-embeddings-hf-0.21.1}/trustgraph/embeddings/__init__.py +0 -0
- {trustgraph-embeddings-hf-0.20.11 → trustgraph-embeddings-hf-0.21.1}/trustgraph/embeddings/hf/__init__.py +0 -0
- {trustgraph-embeddings-hf-0.20.11 → trustgraph-embeddings-hf-0.21.1}/trustgraph/embeddings/hf/__main__.py +0 -0
- {trustgraph-embeddings-hf-0.20.11 → trustgraph-embeddings-hf-0.21.1}/trustgraph_embeddings_hf.egg-info/SOURCES.txt +0 -0
- {trustgraph-embeddings-hf-0.20.11 → trustgraph-embeddings-hf-0.21.1}/trustgraph_embeddings_hf.egg-info/dependency_links.txt +0 -0
- {trustgraph-embeddings-hf-0.20.11 → trustgraph-embeddings-hf-0.21.1}/trustgraph_embeddings_hf.egg-info/top_level.txt +0 -0
@@ -1,9 +1,9 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: trustgraph-embeddings-hf
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.21.1
|
4
4
|
Summary: HuggingFace embeddings support for TrustGraph.
|
5
5
|
Home-page: https://github.com/trustgraph-ai/trustgraph
|
6
|
-
Download-URL: https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v0.
|
6
|
+
Download-URL: https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v0.21.1.tar.gz
|
7
7
|
Author: trustgraph.ai
|
8
8
|
Author-email: security@trustgraph.ai
|
9
9
|
Classifier: Programming Language :: Python :: 3
|
@@ -34,8 +34,8 @@ setuptools.setup(
|
|
34
34
|
python_requires='>=3.8',
|
35
35
|
download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz",
|
36
36
|
install_requires=[
|
37
|
-
"trustgraph-base>=0.
|
38
|
-
"trustgraph-flow>=0.
|
37
|
+
"trustgraph-base>=0.21,<0.22",
|
38
|
+
"trustgraph-flow>=0.21,<0.22",
|
39
39
|
"torch",
|
40
40
|
"urllib3",
|
41
41
|
"transformers",
|
{trustgraph-embeddings-hf-0.20.11 → trustgraph-embeddings-hf-0.21.1}/trustgraph/embeddings/hf/hf.py
RENAMED
@@ -40,7 +40,7 @@ class Processor(ConsumerProducer):
|
|
40
40
|
|
41
41
|
self.embeddings = HuggingFaceEmbeddings(model_name=model)
|
42
42
|
|
43
|
-
def handle(self, msg):
|
43
|
+
async def handle(self, msg):
|
44
44
|
|
45
45
|
v = msg.value()
|
46
46
|
|
@@ -96,5 +96,5 @@ class Processor(ConsumerProducer):
|
|
96
96
|
|
97
97
|
def run():
|
98
98
|
|
99
|
-
Processor.
|
99
|
+
Processor.launch(module, __doc__)
|
100
100
|
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.21.1"
|
@@ -1,9 +1,9 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: trustgraph-embeddings-hf
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.21.1
|
4
4
|
Summary: HuggingFace embeddings support for TrustGraph.
|
5
5
|
Home-page: https://github.com/trustgraph-ai/trustgraph
|
6
|
-
Download-URL: https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v0.
|
6
|
+
Download-URL: https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v0.21.1.tar.gz
|
7
7
|
Author: trustgraph.ai
|
8
8
|
Author-email: security@trustgraph.ai
|
9
9
|
Classifier: Programming Language :: Python :: 3
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.20.11"
|
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
|