mirror of
https://github.com/RYDE-WORK/Langchain-Chatchat.git
synced 2026-01-19 13:23:16 +08:00
49 lines
1.5 KiB
TOML
49 lines
1.5 KiB
TOML
[tool.poetry]
|
|
name = "Langchain-Chatchat"
|
|
version = "0.3.0"
|
|
description = "Langchain-Chatchat"
|
|
authors = ["chatchat"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
repository = "https://github.com/chatchat-space/Langchain-Chatchat.git"
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.8.1,<4.0,!=3.9.7"
|
|
|
|
|
|
[tool.poetry.group.lint.dependencies]
|
|
ruff = "^0.1.5"
|
|
model-providers = { path = "model-providers", develop = true }
|
|
chatchat = { path = "chatchat-server", develop = true }
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
model-providers = { path = "model-providers", develop = true }
|
|
chatchat = { path = "chatchat-server", develop = true }
|
|
ipykernel = "^6.29.2"
|
|
|
|
[tool.poetry.group.test.dependencies]
|
|
|
|
|
|
[tool.ruff]
|
|
extend-include = ["*.ipynb"]
|
|
extend-exclude = [
|
|
"docs/docs/expression_language/why.ipynb" # TODO: look into why linter errors
|
|
]
|
|
|
|
[tool.ruff.lint.per-file-ignores]
|
|
"**/{cookbook,docs}/*" = [
|
|
"E402", # allow imports to appear anywhere in docs
|
|
"F401", # allow "imported but unused" example code
|
|
"F811", # allow re-importing the same module, so that cells can stay independent
|
|
"F841", # allow assignments to variables that are never read -- it's example code
|
|
]
|
|
|
|
# These files were failing the listed rules at the time ruff was adopted for notebooks.
|
|
# Don't require them to change at once, though we should look into them eventually.
|
|
"cookbook/gymnasium_agent_simulation.ipynb" = ["F821"]
|
|
"docs/docs/integrations/document_loaders/tensorflow_datasets.ipynb" = ["F821"]
|
|
|