From 9514e88a9315519eb2c32b44d7f82176a68a3336 Mon Sep 17 00:00:00 2001 From: Gaurav Khurana Date: Tue, 11 Aug 2026 08:42:58 +0530 Subject: [PATCH 1/3] Format table for example use cases and values --- ...Tutorial_1_Introduction_to_LangChain.ipynb | 22 ++++++++++--------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/Tutorial01/Tutorial_1_Introduction_to_LangChain.ipynb b/Tutorial01/Tutorial_1_Introduction_to_LangChain.ipynb index 7a3d20b..8d88307 100644 --- a/Tutorial01/Tutorial_1_Introduction_to_LangChain.ipynb +++ b/Tutorial01/Tutorial_1_Introduction_to_LangChain.ipynb @@ -72,16 +72,18 @@ " - For creative tasks, use higher temperature and top_p\n", " - Consider using top_p sampling for more consistent results across different prompts\n", "\n", - "6. Example Use Cases and Recommended Values:\n", - " Use Case | Temperature | Top_p | Description\n", - " ------------------------ | ----------- | ----- | -----------\n", - " Code Generation | 0.2 | 0.1 | Focused, convention-adhering code\n", - " Creative Writing | 0.7 | 0.8 | Diverse, exploratory text\n", - " Chatbot Responses | 0.5 | 0.5 | Balanced coherence and diversity\n", - " Code Comment Generation | 0.3 | 0.2 | Concise, relevant comments\n", - " Data Analysis Scripting | 0.2 | 0.1 | Correct, efficient scripts\n", - " Exploratory Code Writing | 0.6 | 0.7 | Creative, alternative solutions\n", - "\n", +"6. Example Use Cases and Recommended Values:\n", +"\n", +"| Use Case | Temperature | Top_p | Description |\n", +"| --- | --- | --- | --- |\n", +"| Code Generation | 0.2 | 0.1 | Focused, convention-adhering code |\n", +"| Creative Writing | 0.7 | 0.8 | Diverse, exploratory text |\n", +"| Chatbot Responses | 0.5 | 0.5 | Balanced coherence and diversity |\n", +"| Code Comment Generation | 0.3 | 0.2 | Concise, relevant comments |\n", +"| Data Analysis Scripting | 0.2 | 0.1 | Correct, efficient scripts |\n", +"| Exploratory Code Writing | 0.6 | 0.7 | Creative, alternative solutions |\n", +"\n", +"7. Advanced Techniques:\n "7. Advanced Techniques:\n", " - Fine-tuning: Adapt the model to specific tasks or domains for better performance\n", " - Prompt Engineering: Craft effective prompts to guide the model's output\n", From df71acc37e93b784d0f59da8349bcb93004bdc39 Mon Sep 17 00:00:00 2001 From: Gaurav Khurana Date: Tue, 11 Aug 2026 08:47:42 +0530 Subject: [PATCH 2/3] Fix duplicate line in advanced techniques section Removed duplicate line for advanced techniques section. --- Tutorial01/Tutorial_1_Introduction_to_LangChain.ipynb | 1 - 1 file changed, 1 deletion(-) diff --git a/Tutorial01/Tutorial_1_Introduction_to_LangChain.ipynb b/Tutorial01/Tutorial_1_Introduction_to_LangChain.ipynb index 8d88307..ab91cef 100644 --- a/Tutorial01/Tutorial_1_Introduction_to_LangChain.ipynb +++ b/Tutorial01/Tutorial_1_Introduction_to_LangChain.ipynb @@ -83,7 +83,6 @@ "| Data Analysis Scripting | 0.2 | 0.1 | Correct, efficient scripts |\n", "| Exploratory Code Writing | 0.6 | 0.7 | Creative, alternative solutions |\n", "\n", -"7. Advanced Techniques:\n "7. Advanced Techniques:\n", " - Fine-tuning: Adapt the model to specific tasks or domains for better performance\n", " - Prompt Engineering: Craft effective prompts to guide the model's output\n", From fbdd2b77794cc2eee2ac5f092e4041e323eb42aa Mon Sep 17 00:00:00 2001 From: Gaurav Khurana Date: Tue, 11 Aug 2026 08:49:50 +0530 Subject: [PATCH 3/3] Fix markdown table formatting in tutorial notebook --- Tutorial01/Tutorial_1_Introduction_to_LangChain.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tutorial01/Tutorial_1_Introduction_to_LangChain.ipynb b/Tutorial01/Tutorial_1_Introduction_to_LangChain.ipynb index ab91cef..8f3243b 100644 --- a/Tutorial01/Tutorial_1_Introduction_to_LangChain.ipynb +++ b/Tutorial01/Tutorial_1_Introduction_to_LangChain.ipynb @@ -75,7 +75,7 @@ "6. Example Use Cases and Recommended Values:\n", "\n", "| Use Case | Temperature | Top_p | Description |\n", -"| --- | --- | --- | --- |\n", +"|:--- |:--- |:--- |:--- |\n", "| Code Generation | 0.2 | 0.1 | Focused, convention-adhering code |\n", "| Creative Writing | 0.7 | 0.8 | Diverse, exploratory text |\n", "| Chatbot Responses | 0.5 | 0.5 | Balanced coherence and diversity |\n",