Skip to content

Commit ff87f4b

Browse files
authored
Fix for rag-supabase readme (langchain-ai#12869)
- **Description:** Correct naming for package in README - **Issue:** README wasn't aligned with pyproject.toml, resulting in not being able to install the rag-supabase package. - **Tag maintainer:** @gregnr
1 parent 99ffeb2 commit ff87f4b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

templates/rag-supabase/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,13 +82,13 @@ pip install -U langchain-cli
8282
To create a new LangChain project and install this as the only package, you can do:
8383

8484
```shell
85-
langchain app new my-app --package rag_supabase
85+
langchain app new my-app --package rag-supabase
8686
```
8787

8888
If you want to add this to an existing project, you can just run:
8989

9090
```shell
91-
langchain app add rag_supabase
91+
langchain app add rag-supabase
9292
```
9393

9494
And add the following code to your `server.py` file:
@@ -127,7 +127,7 @@ We can access the template from code with:
127127
```python
128128
from langserve.client import RemoteRunnable
129129

130-
runnable = RemoteRunnable("http://localhost:8000/rag_supabase")
130+
runnable = RemoteRunnable("http://localhost:8000/rag-supabase")
131131
```
132132

133133
TODO: Add details about setting up the Supabase database

0 commit comments

Comments
 (0)