diff --git a/templates/rag-supabase/README.md b/templates/rag-supabase/README.md index 7acba90bb86..f9a55275535 100644 --- a/templates/rag-supabase/README.md +++ b/templates/rag-supabase/README.md @@ -82,13 +82,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 rag_supabase +langchain app new my-app --package rag-supabase ``` If you want to add this to an existing project, you can just run: ```shell -langchain app add rag_supabase +langchain app add rag-supabase ``` And add the following code to your `server.py` file: @@ -127,7 +127,7 @@ We can access the template from code with: ```python from langserve.client import RemoteRunnable -runnable = RemoteRunnable("http://localhost:8000/rag_supabase") +runnable = RemoteRunnable("http://localhost:8000/rag-supabase") ``` TODO: Add details about setting up the Supabase database \ No newline at end of file