diff --git a/templates/neo4j-cypher/README.md b/templates/neo4j-cypher/README.md index 980ad0a5cb86b..0244923d3b449 100644 --- a/templates/neo4j-cypher/README.md +++ b/templates/neo4j-cypher/README.md @@ -42,13 +42,13 @@ pip install -U langchain-cli To create a new LangChain project and install this as the only package, you can do: ```shell -langchain app new my-app --package neo4j_cypher +langchain app new my-app --package neo4j-cypher ``` If you want to add this to an existing project, you can just run: ```shell -langchain app add neo4j_cypher +langchain app add neo4j-cypher ``` And add the following code to your `server.py` file: @@ -86,5 +86,5 @@ We can access the template from code with: ```python from langserve.client import RemoteRunnable -runnable = RemoteRunnable("http://localhost:8000/neo4j_cypher") +runnable = RemoteRunnable("http://localhost:8000/neo4j-cypher") ```