From 7f504c1f817885b43f6d081983d2c4e3ac7ad335 Mon Sep 17 00:00:00 2001 From: Ian Date: Fri, 8 Mar 2024 11:15:55 +0800 Subject: [PATCH] docs: Improve the tidb vector store notebook (#18773) Remove redundant useless content, and fix some minor oversight --- docs/docs/integrations/vectorstores/tidb_vector.ipynb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/docs/integrations/vectorstores/tidb_vector.ipynb b/docs/docs/integrations/vectorstores/tidb_vector.ipynb index cae2c76c62..c0630b801f 100644 --- a/docs/docs/integrations/vectorstores/tidb_vector.ipynb +++ b/docs/docs/integrations/vectorstores/tidb_vector.ipynb @@ -8,7 +8,7 @@ "\n", "> [TiDB Cloud](https://tidbcloud.com/), is a comprehensive Database-as-a-Service (DBaaS) solution, that provides dedicated and serverless options. TiDB Serverless is now integrating a built-in vector search into the MySQL landscape. With this enhancement, you can seamlessly develop AI applications using TiDB Serverless without the need for a new database or additional technical stacks. Be among the first to experience it by joining the waitlist for the private beta at https://tidb.cloud/ai.\n", "\n", - "In its latest version (insert version number here), TiDB introduces support for vector search. This notebook provides a detailed guide on utilizing the TiDB Vector functionality, showcasing its features and practical applications." + "This notebook provides a detailed guide on utilizing the TiDB Vector functionality, showcasing its features and practical applications." ] }, { @@ -33,6 +33,7 @@ "source": [ "%pip install langchain\n", "%pip install langchain-openai\n", + "%pip install pymysql\n", "%pip install tidb-vector" ] },