2023-10-25 18:06:58 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "langchain-cli"
|
2023-10-26 20:53:59 +00:00
|
|
|
version = "0.0.4"
|
2023-10-25 18:06:58 +00:00
|
|
|
description = "CLI for interacting with LangChain"
|
|
|
|
authors = ["Erick Friis <erick@langchain.dev>"]
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = ">=3.8.1,<4.0"
|
|
|
|
typer = {extras = ["all"], version = "^0.9.0"}
|
|
|
|
tomli = "^2.0.1"
|
|
|
|
gitpython = "^3.1.40"
|
|
|
|
langserve = "^0.0.16"
|
|
|
|
fastapi = "^0.104.0"
|
|
|
|
uvicorn = "^0.23.2"
|
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
|
|
|
langchain = "langchain_cli.cli:app"
|
|
|
|
langchain-cli = "langchain_cli.cli:app"
|
|
|
|
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
poethepoet = "^0.24.1"
|
|
|
|
pytest = "^7.4.2"
|
|
|
|
pytest-watch = "^4.2.0"
|
|
|
|
|
|
|
|
[tool.poe.tasks]
|
|
|
|
test = "poetry run pytest"
|
|
|
|
watch = "poetry run ptw"
|
|
|
|
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|