forked from Archives/langchain
nits (#3203)
This commit is contained in:
parent
27cdf8d675
commit
36c10f8a52
@ -1,7 +1,6 @@
|
|||||||
{
|
{
|
||||||
"cells": [
|
"cells": [
|
||||||
{
|
{
|
||||||
"attachments": {},
|
|
||||||
"cell_type": "markdown",
|
"cell_type": "markdown",
|
||||||
"id": "683953b3",
|
"id": "683953b3",
|
||||||
"metadata": {},
|
"metadata": {},
|
||||||
@ -130,7 +129,7 @@
|
|||||||
"source": [
|
"source": [
|
||||||
"from langchain.embeddings.openai import OpenAIEmbeddings\n",
|
"from langchain.embeddings.openai import OpenAIEmbeddings\n",
|
||||||
"from langchain.text_splitter import CharacterTextSplitter\n",
|
"from langchain.text_splitter import CharacterTextSplitter\n",
|
||||||
"from langchain.vectorstores.supabase import SupabaseVectorStore\n",
|
"from langchain.vectorstores import SupabaseVectorStore\n",
|
||||||
"from langchain.document_loaders import TextLoader"
|
"from langchain.document_loaders import TextLoader"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -200,7 +199,6 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"attachments": {},
|
|
||||||
"cell_type": "markdown",
|
"cell_type": "markdown",
|
||||||
"id": "18152965",
|
"id": "18152965",
|
||||||
"metadata": {},
|
"metadata": {},
|
||||||
@ -241,7 +239,6 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"attachments": {},
|
|
||||||
"cell_type": "markdown",
|
"cell_type": "markdown",
|
||||||
"id": "794a7552",
|
"id": "794a7552",
|
||||||
"metadata": {},
|
"metadata": {},
|
||||||
@ -393,7 +390,7 @@
|
|||||||
"name": "python",
|
"name": "python",
|
||||||
"nbconvert_exporter": "python",
|
"nbconvert_exporter": "python",
|
||||||
"pygments_lexer": "ipython3",
|
"pygments_lexer": "ipython3",
|
||||||
"version": "3.11.3"
|
"version": "3.9.1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"nbformat": 4,
|
"nbformat": 4,
|
||||||
|
@ -10,6 +10,7 @@ from langchain.vectorstores.milvus import Milvus
|
|||||||
from langchain.vectorstores.opensearch_vector_search import OpenSearchVectorSearch
|
from langchain.vectorstores.opensearch_vector_search import OpenSearchVectorSearch
|
||||||
from langchain.vectorstores.pinecone import Pinecone
|
from langchain.vectorstores.pinecone import Pinecone
|
||||||
from langchain.vectorstores.qdrant import Qdrant
|
from langchain.vectorstores.qdrant import Qdrant
|
||||||
|
from langchain.vectorstores.supabase import SupabaseVectorStore
|
||||||
from langchain.vectorstores.weaviate import Weaviate
|
from langchain.vectorstores.weaviate import Weaviate
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
@ -25,4 +26,5 @@ __all__ = [
|
|||||||
"AtlasDB",
|
"AtlasDB",
|
||||||
"DeepLake",
|
"DeepLake",
|
||||||
"Annoy",
|
"Annoy",
|
||||||
|
"SupabaseVectorStore",
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user