mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-05-26 07:45:13 +02:00
Cannot access s error (#50)
* Fix order of statements error * Bump version * Update templates * Add missing script files * Added missing DE support init * Fixed bugs preventing definition extraction from working (#49).
This commit is contained in:
parent
208c219962
commit
af5508ff68
22 changed files with 270 additions and 255 deletions
|
|
@ -87,17 +87,17 @@ class Processor(ConsumerProducer):
|
|||
|
||||
for defn in defs:
|
||||
|
||||
s = defn.name
|
||||
o = defn.definition
|
||||
|
||||
if s == "": continue
|
||||
if o == "": continue
|
||||
|
||||
if s is None: continue
|
||||
if o is None: continue
|
||||
|
||||
s = defn.name
|
||||
s_uri = self.to_uri(s)
|
||||
|
||||
o = defn.definition
|
||||
|
||||
s_value = Value(value=str(s_uri), is_uri=True)
|
||||
o_value = Value(value=str(o), is_uri=False)
|
||||
|
||||
|
|
|
|||
3
trustgraph/query/doc_embeddings/qdrant/__init__.py
Normal file
3
trustgraph/query/doc_embeddings/qdrant/__init__.py
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
from . service import *
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue