Spaces:
Sleeping
Sleeping
File size: 696 Bytes
d2739ca 5e1433f d2739ca 5e1433f d2739ca | 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 | [build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rag-context-optimizer"
version = "1.0.0"
description = "RAG pipeline optimization environment - minimize tokens, maximize answer quality"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastapi==0.115.0",
"uvicorn[standard]==0.30.0",
"pydantic>=2.11,<3",
"httpx==0.27.0",
"openai==1.30.0",
"python-multipart==0.0.9",
"openenv-core>=0.2.0",
]
[project.scripts]
server = "server.app:main"
[tool.setuptools]
packages = ["env", "server"]
py-modules = ["app", "inference", "validate"]
[tool.pytest.ini_options]
testpaths = ["tests"]
|