Skip to content

Commit 754284c

Browse files
committed
ML/LLM: Fix notebook cratedb-vectorstore-rag-openai-sql.ipynb
It still used dialect's `patch_inspector` while it is no longer there.
1 parent b7b5eb7 commit 754284c

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

topic/machine-learning/llm-langchain/cratedb-vectorstore-rag-openai-sql.ipynb

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -79,13 +79,9 @@
7979
"import pandas as pd\n",
8080
"import sqlalchemy as sa\n",
8181
"\n",
82-
"# TODO: Bring this into the `crate-python` driver.\n",
83-
"from cratedb_toolkit.sqlalchemy.patch import patch_inspector\n",
8482
"from langchain_community.document_loaders import PyPDFLoader\n",
8583
"from langchain_text_splitters import RecursiveCharacterTextSplitter\n",
86-
"from langchain_openai import OpenAIEmbeddings\n",
87-
"\n",
88-
"patch_inspector()"
84+
"from langchain_openai import OpenAIEmbeddings"
8985
]
9086
},
9187
{

0 commit comments

Comments
 (0)