From c0f023cc93df13fb47b2cea779468e6a3f64e78b Mon Sep 17 00:00:00 2001 From: linsong8208 Date: Sun, 18 Aug 2024 09:31:06 +0800 Subject: [PATCH 1/5] Update Prompt_chaining.ipynb --- Gemma/Prompt_chaining.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemma/Prompt_chaining.ipynb b/Gemma/Prompt_chaining.ipynb index d8c7787..53845ef 100644 --- a/Gemma/Prompt_chaining.ipynb +++ b/Gemma/Prompt_chaining.ipynb @@ -189,7 +189,7 @@ "\n", "Gemma is a family of lightweight, state-of-the-art open models from Google, built from the same research and technology used to create the Gemini models. They are text-to-text, decoder-only large language models, available in English, with open weights, pre-trained variants, and instruction-tuned variants. Gemma models are well-suited for a variety of text generation tasks, including question answering, summarization, and reasoning. Their relatively small size makes it possible to deploy them in environments with limited resources such as a laptop, desktop or your own cloud infrastructure, democratizing access to state of the art AI models and helping foster innovation for everyone.\n", "\n", - "Here's the [official documentation](https://ai.google.dev/gemma/docs/formatting) regarding promping instruction-tuned models." + "Here's the [official documentation](https://ai.google.dev/gemma/docs/formatting) regarding prompting instruction-tuned models." ] }, { From c4003672014b107f3d5e0f8539e68c6a81933b08 Mon Sep 17 00:00:00 2001 From: linsong8208 Date: Sun, 18 Aug 2024 09:31:38 +0800 Subject: [PATCH 2/5] Update Using_Gemma_with_LangChain.ipynb --- Gemma/Using_Gemma_with_LangChain.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemma/Using_Gemma_with_LangChain.ipynb b/Gemma/Using_Gemma_with_LangChain.ipynb index c9d1304..d8e07f0 100644 --- a/Gemma/Using_Gemma_with_LangChain.ipynb +++ b/Gemma/Using_Gemma_with_LangChain.ipynb @@ -162,7 +162,7 @@ "* Token to indicate the beginning of dialogue turn: ``\n", "* Token to indicate the end of dialogue turn: ``\n", "\n", - "Here's the [official documentation](https://ai.google.dev/gemma/docs/formatting) regarding promping instruction-tuned models." + "Here's the [official documentation](https://ai.google.dev/gemma/docs/formatting) regarding prompting instruction-tuned models." ] }, { From c04e598690bd5721fcfe488a78a450072673e4d1 Mon Sep 17 00:00:00 2001 From: linsong8208 Date: Sun, 18 Aug 2024 09:32:02 +0800 Subject: [PATCH 3/5] Update Advanced_Prompting_Techniques.ipynb --- Gemma/Advanced_Prompting_Techniques.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemma/Advanced_Prompting_Techniques.ipynb b/Gemma/Advanced_Prompting_Techniques.ipynb index 318f0c6..c0f513c 100644 --- a/Gemma/Advanced_Prompting_Techniques.ipynb +++ b/Gemma/Advanced_Prompting_Techniques.ipynb @@ -181,7 +181,7 @@ "* Token to indicate the beginning of dialogue turn: ``\n", "* Token to indicate the end of dialogue turn: ``\n", "\n", - "Here's the [official documentation](https://ai.google.dev/gemma/docs/formatting) regarding promping instruction-tuned models." + "Here's the [official documentation](https://ai.google.dev/gemma/docs/formatting) regarding prompting instruction-tuned models." ] }, { From e7ce24b037f5ce9f1a800945e41a27ba537816a3 Mon Sep 17 00:00:00 2001 From: linsong8208 Date: Sun, 18 Aug 2024 09:32:49 +0800 Subject: [PATCH 4/5] Update Using_Gemma_with_LangChain.ipynb --- Gemma/Using_Gemma_with_LangChain.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemma/Using_Gemma_with_LangChain.ipynb b/Gemma/Using_Gemma_with_LangChain.ipynb index d8e07f0..fd633b6 100644 --- a/Gemma/Using_Gemma_with_LangChain.ipynb +++ b/Gemma/Using_Gemma_with_LangChain.ipynb @@ -621,7 +621,7 @@ "# Create an actual chain\n", "\n", "rag_chain = (\n", - " # First you need retrieve documnets that are relevant to the\n", + " # First you need retrieve documents that are relevant to the\n", " # given query\n", " {\"context\": retriever | format_docs, \"question\": RunnablePassthrough()}\n", " # The output is passed the prompt and fills fields like `{question}`\n", From a712c493751568ebd4df2fd59f126be9f23202b8 Mon Sep 17 00:00:00 2001 From: linsong8208 Date: Sun, 18 Aug 2024 09:38:15 +0800 Subject: [PATCH 5/5] Update Common_use_cases.ipynb --- Common_use_cases.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common_use_cases.ipynb b/Common_use_cases.ipynb index 70d19d6..1ad66ab 100644 --- a/Common_use_cases.ipynb +++ b/Common_use_cases.ipynb @@ -189,7 +189,7 @@ "* Token to indicate the beginning of dialogue turn: ``\n", "* Token to indicate the end of dialogue turn: ``\n", "\n", - "Here's the [official documentation](https://ai.google.dev/gemma/docs/formatting) regarding promping instruction-tuned models." + "Here's the [official documentation](https://ai.google.dev/gemma/docs/formatting) regarding prompting instruction-tuned models." ] }, {