Skip to content

Commit

Permalink
updated neo4j example
Browse files Browse the repository at this point in the history
  • Loading branch information
LangChain4j committed Dec 22, 2023
1 parent 999aa50 commit c4077eb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions neo4j-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@

<groupId>dev.langchain4j</groupId>
<artifactId>neo4j-example</artifactId>
<version>0.23.0</version>
<version>0.25.0</version>

<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

Expand Down
4 changes: 2 additions & 2 deletions neo4j-example/src/main/java/Neo4jEmbeddingStoreExample.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
public class Neo4jEmbeddingStoreExample {

/**
* To run this example, ensure you have Neo4j running locally,
* and change uri, username and password strings consistently.
* To run this example, ensure you have Neo4j running locally,
* and change uri, username and password strings consistently.
* If not, then:
* - Execute "docker pull neo4j:latest"
* - Execute "docker run -d -p 7687:7687 --env NEO4J_AUTH=neo4j/password1234 neo4j:latest"
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
<module>devoxx</module>
<module>elasticsearch-example</module>
<module>milvus-example</module>
<module>neo4j-example</module>
<module>opensearch-example</module>
<module>other-examples</module>
<module>pinecone-example</module>
<module>redis-example</module>
<module>neo4j-example</module>
<module>spring-boot-example</module>
<module>vespa-example</module>
<module>weaviate-example</module>
Expand Down

0 comments on commit c4077eb

Please sign in to comment.