mirror of
https://github.com/hwchase17/langchain
synced 2024-11-04 06:00:26 +00:00
66c41c0dbf
This PR adds a self-querying template using Qdrant as a vector store. The template uses an artificial dataset and was implemented in a way that simplifies passing different components and choosing LLM and embedding providers. --------- Co-authored-by: Erick Friis <erick@langchain.dev>
33 lines
734 B
TOML
33 lines
734 B
TOML
[tool.poetry]
|
|
name = "self-query-qdrant"
|
|
version = "0.1.0"
|
|
description = "Self-querying retriever using Qdrant"
|
|
authors = ["Kacper Łukawski <lukawski.kacper@gmail.com>"]
|
|
license = "Apache 2.0"
|
|
readme = "README.md"
|
|
packages = [{include = "self_query_qdrant"}]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.9,<3.13"
|
|
langchain = ">=0.0.325"
|
|
openai = "^0.28.1"
|
|
qdrant-client = ">=1.6"
|
|
lark = "^1.1.8"
|
|
tiktoken = "^0.5.1"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
langchain-cli = ">=0.0.15"
|
|
[tool.poetry.group.dev.dependencies.python-dotenv]
|
|
extras = [
|
|
"cli",
|
|
]
|
|
version = "^1.0.0"
|
|
|
|
[tool.langserve]
|
|
export_module = "self_query_qdrant"
|
|
export_attr = "chain"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|