Spaces:
Sleeping
Sleeping
File size: 1,022 Bytes
b50d8a8 |
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 51 52 |
[project]
name = "ucl-module-chat"
version = "0.1.0"
description = "Unofficial chat app for the UCL module catalogue"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"beautifulsoup4>=4.12.3",
"langchain>=0.3.3",
"tqdm>=4.66.5",
"langchain-community>=0.3.2",
"faiss-cpu>=1.9.0",
"langchain-openai>=0.2.3",
"gradio>=4.44.1",
"jinja2>=3.1.4",
"loguru>=0.7.2",
"hydra-core>=1.3.2",
"gitpython>=3.1.43",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/ucl_module_chat"]
[tool.uv]
dev-dependencies = [
"jupyter>=1.1.1",
"black>=24.8.0",
"ruff>=0.6.9",
"pre-commit>=4.0.1",
]
[tool.black]
line-length = 88
[tool.ruff]
line-length = 88
fix = true
exclude = ["src/ucl_module_chat/data_processing/document_templates.py"]
[tool.ruff.lint]
select = ["E", "F", "I"]
fixable = ["ALL"]
unfixable = []
[tool.ruff.lint.isort]
force-single-line = false
combine-as-imports = true
|