Spaces:
Sleeping
Sleeping
File size: 689 Bytes
beffe84 |
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 |
[build-system]
requires = ["setuptools>=73.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "self-rag-client"
version = "0.1.0"
description = "A RAG (Retrieval-Augmented Generation) client implementation"
authors = [
{ name = "Luc EBERT", email = "[email protected]" }
]
dependencies = [
"chainlit>=2.2.1",
"langchain-core>=0.3.37",
"langgraph-sdk>=0.1.53",
]
requires-python = ">=3.9, <3.12"
readme = "README.md"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"black>=22.0.0",
"isort>=5.0.0",
"flake8>=4.0.0",
]
[tool.black]
line-length = 88
target-version = ["py38"]
[tool.isort]
profile = "black"
line_length = 88
|