Skip to content

Commit

Permalink
Merge pull request #71 from kinarr/gemma-2-es-rag-fix-typo
Browse files Browse the repository at this point in the history
Fix small typo in ES Gemma RAG Colab
  • Loading branch information
windmaple authored Oct 10, 2024
2 parents a864aa2 + 74cd876 commit 2ef65dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gemma/Using_Gemma_with_Elasticsearch_and_LangChain.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1254,7 +1254,7 @@
"\n",
"Finally, you'll set up the RAG chain that ties everything together while relying on LangChain's [LCEL paradigm](https://python.langchain.com/v0.1/docs/expression_language/why/).\n",
"\n",
"[The prompt](https://smith.langchain.com/hub/rlm/rag-prompt) you're using expects an input that includes two keys: `context` and `question`. The user only provides the question, so uoi need to obtain and format the relevant context using our retriever. Here's how it works:\n",
"[The prompt](https://smith.langchain.com/hub/rlm/rag-prompt) you're using expects an input that includes two keys: `context` and `question`. The user only provides the question, so you need to obtain and format the relevant context using our retriever. Here's how it works:\n",
"\n",
"* **Retrieve Relevant Documents**: Use `retriever` to get the relevant documents based on the user's question.\n",
"\n",
Expand Down

0 comments on commit 2ef65dd

Please sign in to comment.