mirror of
https://github.com/hwchase17/langchain
synced 2024-11-04 06:00:26 +00:00
ac7e88fbbe
Just `poetry lock` and moving `langchain` to the latest version, in case folks copy this template. This resolves some vulnerable dependency alerts GitHub code scanning was flagging.
32 lines
629 B
TOML
32 lines
629 B
TOML
[tool.poetry]
|
|
name = "rag-timescale-conversation"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = [
|
|
"Lance Martin <lance@langchain.dev>",
|
|
]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.8.1,<4.0"
|
|
langchain = ">=0.0.335"
|
|
openai = ">=0.28.1"
|
|
tiktoken = ">=0.5.1"
|
|
pinecone-client = ">=2.2.4"
|
|
beautifulsoup4 = "^4.12.2"
|
|
python-dotenv = "^1.0.0"
|
|
timescale-vector = "^0.0.3"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
langchain-cli = ">=0.0.15"
|
|
|
|
[tool.langserve]
|
|
export_module = "rag_timescale_conversation"
|
|
export_attr = "chain"
|
|
|
|
[build-system]
|
|
requires = [
|
|
"poetry-core",
|
|
]
|
|
build-backend = "poetry.core.masonry.api"
|