Skip to content

Commit b98da09

Browse files
authored
Fix #195
1 parent 48d0dbf commit b98da09

File tree

1 file changed

+0
-2
lines changed
  • embedding-stores/langchain4j-community-neo4j/src/main/java/dev/langchain4j/community/store/embedding/neo4j

1 file changed

+0
-2
lines changed

embedding-stores/langchain4j-community-neo4j/src/main/java/dev/langchain4j/community/store/embedding/neo4j/Neo4jEmbeddingStore.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,6 @@ public void removeAll() {
298298

299299
// Render Cypher
300300
String cypher = Renderer.getDefaultRenderer().render(finalQuery);
301-
System.out.println("cypher = " + cypher);
302301

303302
// Execute using the Neo4j driver session
304303
session.run(cypher);
@@ -497,7 +496,6 @@ private EmbeddingSearchResult<TextSegment> getSearchResUsingVectorIndex(
497496

498497
// Render the Cypher query
499498
String cypherQuery = Renderer.getDefaultRenderer().render(statement);
500-
System.out.println(cypherQuery);
501499

502500
Set<String> columns = getColumnNames(session, cypherQuery);
503501
Set<Object> allowedColumn = Set.of(textProperty, embeddingProperty, idProperty, SCORE, METADATA);

0 commit comments

Comments
 (0)