2023-10-26 01:47:42 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "rag-elasticsearch"
|
|
|
|
version = "0.0.1"
|
|
|
|
description = ""
|
2023-10-31 17:19:15 +00:00
|
|
|
authors = [
|
|
|
|
"Joe McElroy <joseph.mcelroy@elastic.co>",
|
|
|
|
]
|
2023-10-26 01:47:42 +00:00
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2023-10-31 16:20:29 +00:00
|
|
|
python = ">=3.8.1,<4.0"
|
2023-10-31 17:19:15 +00:00
|
|
|
langchain = ">=0.0.325"
|
2023-10-26 01:47:42 +00:00
|
|
|
openai = "^0.28.1"
|
|
|
|
elasticsearch = "^8.10.0"
|
|
|
|
sentence-transformers = "^2.2.2"
|
|
|
|
jq = "^1.6.0"
|
|
|
|
tiktoken = "^0.5.1"
|
|
|
|
|
2023-11-03 20:15:29 +00:00
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
langchain-cli = ">=0.0.15"
|
|
|
|
|
2023-10-26 01:47:42 +00:00
|
|
|
[tool.langserve]
|
2023-10-31 07:06:02 +00:00
|
|
|
export_module = "rag_elasticsearch"
|
2023-10-26 01:47:42 +00:00
|
|
|
export_attr = "chain"
|
|
|
|
|
|
|
|
[build-system]
|
2023-10-31 17:19:15 +00:00
|
|
|
requires = [
|
|
|
|
"poetry-core",
|
|
|
|
]
|
2023-10-26 01:47:42 +00:00
|
|
|
build-backend = "poetry.core.masonry.api"
|