FAISS and embedding support (#48)

also adds embeddings and an in memory docstore
This commit is contained in:
Harrison Chase
2022-11-01 21:29:39 -07:00
committed by GitHub
parent 798deaec2b
commit 76aff023d7
16 changed files with 406 additions and 1 deletions

View File

@@ -14,7 +14,7 @@ setup(
version=__version__,
packages=find_packages(),
description="Building applications with LLMs through composability",
install_requires=["pydantic", "sqlalchemy"],
install_requires=["pydantic", "sqlalchemy", "numpy"],
long_description=long_description,
license="MIT",
url="https://github.com/hwchase17/langchain",