mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-06-21 04:38:07 +02:00
Fixing user fields
This commit is contained in:
parent
cf5041eeb0
commit
0bc97b9374
4 changed files with 13 additions and 5 deletions
|
|
@ -755,9 +755,9 @@ class SocketFlowInstance:
|
|||
def graph_embeddings_query(
|
||||
self,
|
||||
text: str,
|
||||
user: str,
|
||||
collection: str,
|
||||
limit: int = 10,
|
||||
user: str = "",
|
||||
**kwargs: Any
|
||||
) -> Dict[str, Any]:
|
||||
"""Query knowledge graph entities using semantic similarity."""
|
||||
|
|
@ -777,9 +777,9 @@ class SocketFlowInstance:
|
|||
def document_embeddings_query(
|
||||
self,
|
||||
text: str,
|
||||
user: str,
|
||||
collection: str,
|
||||
limit: int = 10,
|
||||
user: str = "",
|
||||
**kwargs: Any
|
||||
) -> Dict[str, Any]:
|
||||
"""Query document chunks using semantic similarity."""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue