From 725e4912aeb98dca4b2774d2944b21975b2c3fd0 Mon Sep 17 00:00:00 2001 From: Francisco Kurucz Date: Thu, 8 Aug 2024 10:26:13 -0300 Subject: [PATCH] docs: Fix reference to SQL QA migration (#25157) **Description:** I found that the link to the notebook in the Migration notes is broken, i found that it was linked to this file https://github.com/langchain-ai/langchain/blob/v0.0.250/docs/extras/use_cases/tabular/sql_query.ipynb and i think now this tutorial https://github.com/JuanFKurucz/langchain/blob/master/docs/docs/tutorials/sql_qa.ipynb is the best fit for this reference **Twitter handle:** @juanfkurucz --------- Co-authored-by: Chester Curme --- MIGRATE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MIGRATE.md b/MIGRATE.md index 4d721df072f..7254e9b7e3e 100644 --- a/MIGRATE.md +++ b/MIGRATE.md @@ -52,7 +52,7 @@ Now: `from langchain_experimental.sql import SQLDatabaseChain` -Alternatively, if you are just interested in using the query generation part of the SQL chain, you can check out [`create_sql_query_chain`](https://github.com/langchain-ai/langchain/blob/master/docs/extras/use_cases/tabular/sql_query.ipynb) +Alternatively, if you are just interested in using the query generation part of the SQL chain, you can check out this [`SQL question-answering tutorial`](https://python.langchain.com/v0.2/docs/tutorials/sql_qa/#convert-question-to-sql-query) `from langchain.chains import create_sql_query_chain`