Spaces:
Sleeping
Sleeping
Upload pyproject.toml with huggingface_hub
Browse files- pyproject.toml +17 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "data-validation-env"
|
| 3 |
+
version = "1.0.0"
|
| 4 |
+
description = "An RL environment for training agents to clean and validate structured data"
|
| 5 |
+
requires-python = ">=3.11"
|
| 6 |
+
dependencies = [
|
| 7 |
+
"openenv-core>=0.2.0",
|
| 8 |
+
"fastapi>=0.104.0",
|
| 9 |
+
"uvicorn>=0.24.0",
|
| 10 |
+
"pydantic>=2.0.0",
|
| 11 |
+
"requests>=2.25.0",
|
| 12 |
+
]
|
| 13 |
+
|
| 14 |
+
[project.optional-dependencies]
|
| 15 |
+
inference = [
|
| 16 |
+
"openai>=1.0.0",
|
| 17 |
+
]
|