Fixing user fields

This commit is contained in:
Cyber MacGeddon 2026-04-21 11:48:51 +01:00
parent cf5041eeb0
commit 0bc97b9374
4 changed files with 13 additions and 5 deletions

View file

@ -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."""