Spaces:
Runtime error
Runtime error
File size: 997 Bytes
a09c762 | 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 45 46 47 48 49 50 | [tool.poetry]
name = "chainlit-handson"
version = "0.1.0"
description = ""
authors = ["Nanthagopal-Eswaran <nanthagopal.eswaran@solitontech.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.11,<3.13"
chainlit = "^1.0.502"
langchain = "^0.1.14"
langchain-openai = "^0.1.1"
[tool.poetry.group.dev.dependencies]
ruff = "^0.3.5"
mypy = "^1.9.0"
pre-commit = "^3.7.0"
[tool.ruff]
# Allow lines to be as long as 100.
line-length = 100
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"B", # flake8-bugbear
"I", # isort
"C", # pylint convention
"A", # flake8-builtins
"N", # pep8-naming
"ASYNC", # flake8-async
"C4", # flake8-comprehensions
]
ignore = [
"E501", # line too long, handled by formatter
"W191", # indentation contains tabs
]
[tool.ruff.pydocstyle]
convention = "google"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
|