From 1710423de393167d1b21af583f8353dd26084f27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albert=20Gil=20L=C3=B3pez?= Date: Tue, 11 Jun 2024 02:47:39 +0200 Subject: [PATCH] docs: correct path in readme (#22383) Description: Fix incorrect path in README instructions. Issue: N/A Dependencies: None Twitter handle: @jddam --------- Co-authored-by: isaac hershenson --- templates/rag-pinecone/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/templates/rag-pinecone/README.md b/templates/rag-pinecone/README.md index b4382550ab..8410c9d0a3 100644 --- a/templates/rag-pinecone/README.md +++ b/templates/rag-pinecone/README.md @@ -33,6 +33,7 @@ And add the following code to your `server.py` file: ```python from rag_pinecone import chain as rag_pinecone_chain +# Be careful with this, in the console, when you create the project add_routes(app, rag_pinecone_chain, path="\rag-pinecone") appears with a backslash, the correct route is "/rag-pinecone" add_routes(app, rag_pinecone_chain, path="/rag-pinecone") ```