-
Notifications
You must be signed in to change notification settings - Fork 68
/
pyproject.toml
44 lines (38 loc) · 1.12 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[tool.poetry]
name = "langcorn"
version = "0.0.22"
description = "A Python package creating rest api interface for LangChain"
authors = ["Alexander Miasoiedov <[email protected]>"]
maintainers = ["Alexander Miasoiedov <[email protected]>"]
repository = "https://github.com/msoedov/langcorn"
license = "MIT"
readme = "Readme.md"
keywords = ["nlp", "langchain", "openai", "gpt", "fastapi", "llm", "llmops"]
packages = [{ include = "langcorn", from = "." }]
[tool.poetry.scripts]
langcorn = "langcorn.__main__:entrypoint"
[tool.poetry.dependencies]
python = "^3.9"
fastapi = ">=0.104.1,<0.110.0"
uvicorn = "^0.23.2"
langchain = "^0.0.331"
openai = "^0.28.1"
fire = "^0.5.0"
loguru = "^0.7.2"
bs4 = "0.0.1" # required for ex4.py
langchain-experimental = "^0.0.37"
certifi = "^2023.7.22"
numexpr = "^2.8.7"
pydantic = "^1.10.13"
[tool.poetry.group.dev.dependencies]
black = ">=23.10.1,<25.0.0"
mypy = "^1.6.1"
httpx = "^0.25.1"
pytest = "^7.4.3"
pre-commit = "^3.5.0"
chromadb = "^0.3.2.6" # required for ex8.py
[tool.ruff]
line-length = 120
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"