Skip to content

Commit

Permalink
template: use dashes instead of underscores for neo4j-cypher package …
Browse files Browse the repository at this point in the history
…and path in readme (langchain-ai#12827)

Minimal readme template update

underscores didn't work, dashes do
  • Loading branch information
jexp authored Nov 3, 2023
1 parent e14aa37 commit e43b407
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions templates/neo4j-cypher/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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")
```

0 comments on commit e43b407

Please sign in to comment.