mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +00:00
249c796785
Upgrade langserve template version to 0.0.30 to include new improvements
24 lines
462 B
TOML
24 lines
462 B
TOML
[tool.poetry]
|
|
name = "__app_name__"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Your Name <you@example.com>"]
|
|
readme = "README.md"
|
|
packages = [
|
|
{ include = "app" },
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
uvicorn = "^0.23.2"
|
|
langserve = {extras = ["server"], version = ">=0.0.30"}
|
|
pydantic = "<2"
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
langchain-cli = ">=0.0.15"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|