template: use dashes instead of underscores for neo4j-cypher package and path in readme (#12827)

Minimal readme template update

underscores didn't work, dashes do
This commit is contained in:
Michael Hunger 2023-11-03 23:54:48 +01:00 committed by GitHub
parent e14aa37d59
commit e43b4079c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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")
```