CoolFace
Apppublic

AMD21/codefixerenv

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
pyproject.toml21 linesDownload Raw Back to root
1[project]2name = "codefixerenv"3version = "1.0.0"4description = "OpenEnv environment for Python code-debugging RL tasks"5requires-python = ">=3.11"6dependencies = [7    "fastapi>=0.110.0",8    "uvicorn[standard]>=0.29.0",9    "pydantic>=2.6.0",10    "openai>=1.30.0",11    "requests>=2.31.0",12    "openenv-core>=0.2.0",13]14 15[project.scripts]16server = "server.app:main"17 18[build-system]19requires = ["setuptools>=68"]20build-backend = "setuptools.backends.legacy:build"21