Spaces:
Paused
Paused
| [build-system] | |
| requires = ["setuptools>=45", "wheel"] | |
| build-backend = "setuptools.build_meta" | |
| [project] | |
| name = "openenv-watchdog-env" | |
| version = "0.1.0" | |
| description = "WatchDog: RL environment for training AI oversight agents" | |
| requires-python = ">=3.10" | |
| dependencies = [ | |
| "openenv-core[core]>=0.2.0", | |
| "fastapi>=0.115.0", | |
| "gradio>=4.0.0", | |
| "pydantic>=2.0.0", | |
| "uvicorn>=0.24.0", | |
| "torch>=2.4.0", | |
| "transformers>=4.50.0", | |
| "accelerate>=0.30.0", | |
| "bitsandbytes>=0.44.0", | |
| "peft>=0.14.0", | |
| "trl>=0.15.0", | |
| "datasets>=2.18.0", | |
| "langchain-google-genai>=2.0.0", | |
| "langchain-core>=0.3.0", | |
| ] | |
| [project.optional-dependencies] | |
| dev = [ | |
| "pytest>=8.0.0", | |
| "pytest-cov>=4.0.0", | |
| "httpx>=0.25.0", | |
| ] | |
| gemini = [ | |
| "langchain-google-genai>=2.0.0", | |
| "langchain-core>=0.3.0", | |
| "google-genai", | |
| ] | |
| [project.scripts] | |
| server = "watchdog_env.server.app:main" | |
| [tool.setuptools] | |
| include-package-data = true | |
| packages = ["watchdog_env", "watchdog_env.server", "watchdog_env.mutations", "watchdog_env.plugins", "watchdog_env.plugins.cicero", "watchdog_env.plugins.codenames", "watchdog_env.plugins.avalon"] | |
| package-dir = { "watchdog_env" = ".", "watchdog_env.server" = "server", "watchdog_env.mutations" = "mutations", "watchdog_env.plugins" = "plugins", "watchdog_env.plugins.cicero" = "plugins/cicero", "watchdog_env.plugins.codenames" = "plugins/codenames", "watchdog_env.plugins.avalon" = "plugins/avalon" } | |