Spaces:
Sleeping
Sleeping
File size: 872 Bytes
5815846 809345d 5815846 df7bda2 809345d 5815846 df7bda2 5815846 809345d | 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 | [build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.backends.legacy:build"
[project]
name = "sql-db-engineer-agent"
version = "2.0.0"
description = "OpenEnv-compliant RL environment where AI agents learn to act like senior database engineers"
requires-python = ">=3.10"
dependencies = [
"fastapi==0.135.2",
"uvicorn==0.42.0",
"pydantic==2.12.5",
"openai==2.30.0",
"python-dotenv==1.2.2",
"pytest==9.0.2",
"huggingface_hub==1.8.0",
"openenv-core>=0.2.0",
"matplotlib>=3.7.0",
"requests>=2.31.0",
]
[project.scripts]
server = "inference:main"
[project.urls]
Homepage = "https://huggingface.co/spaces/junaid0600/sql-db-engineer-agent"
Repository = "https://github.com/Mdjunaid06/sql-db-engineer-agent"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"] |