Skip to content

Commit

Permalink
remove debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
poxrud committed Feb 27, 2024
1 parent cd415fb commit baf4fd3
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -311,9 +311,6 @@ def _query(
**kwargs,
)

print(f"QUERY RES: {results}")
print(f"EMBEDDINGS: {query_embeddings}")

logger.debug(f"> Top {len(results['documents'])} nodes:")
nodes = []
similarities = []
Expand Down Expand Up @@ -361,8 +358,6 @@ def _get(self, limit: int, where: dict, **kwargs) -> VectorStoreQueryResult:
where=where,
**kwargs,
)
# results = self._collection.get()
print(f"COLLECTIONs: {results}")

logger.debug(f"> Top {len(results['documents'])} nodes:")
nodes = []
Expand Down

0 comments on commit baf4fd3

Please sign in to comment.