From e0cb3ea90c1f8ec26957ffca65c6e451d444c69d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C3=ADdac=20Sabat=C3=A9s?= Date: Thu, 6 Jul 2023 19:07:37 +0200 Subject: [PATCH] Fix sql_database.ipynb link (#6525) Looks like the [SQLDatabaseChain](https://langchain.readthedocs.io/en/latest/modules/chains/examples/sqlite.html) in the SQL Database Agent page was broken I've change it to the SQL Chain page --- docs/extras/modules/agents/toolkits/sql_database.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/extras/modules/agents/toolkits/sql_database.ipynb b/docs/extras/modules/agents/toolkits/sql_database.ipynb index f8ed01d25b..457e6e4ffe 100644 --- a/docs/extras/modules/agents/toolkits/sql_database.ipynb +++ b/docs/extras/modules/agents/toolkits/sql_database.ipynb @@ -7,7 +7,7 @@ "source": [ "# SQL Database Agent\n", "\n", - "This notebook showcases an agent designed to interact with a sql databases. The agent builds off of [SQLDatabaseChain](https://langchain.readthedocs.io/en/latest/modules/chains/examples/sqlite.html) and is designed to answer more general questions about a database, as well as recover from errors.\n", + "This notebook showcases an agent designed to interact with a sql databases. The agent builds off of [SQLDatabaseChain](https://python.langchain.com/docs/modules/chains/popular/sqlite) and is designed to answer more general questions about a database, as well as recover from errors.\n", "\n", "Note that, as this agent is in active development, all answers might not be correct. Additionally, it is not guaranteed that the agent won't perform DML statements on your database given certain questions. Be careful running it on sensitive data!\n", "\n",