CoolFace
Apppublic

ChilleD/agent_world_model_env

sourceHugging Faceupdated 5mo agoView on Hugging Face
3likes
pyproject.toml44 linesDownload Raw Back to root
1[build-system]2requires = ["setuptools>=45", "wheel"]3build-backend = "setuptools.build_meta"4 5[project]6name = "agent-world-model-env"7version = "0.1.0"8description = "Agent World Model Environment for OpenEnv - wraps 1,000 LLM-synthesized environments"9requires-python = ">=3.10"10dependencies = [11    "openenv-core[core]>=0.2.2",12    "fastapi>=0.115.0",13    "pydantic>=2.0.0",14    "uvicorn>=0.24.0",15    "requests>=2.31.0",16    "sqlalchemy>=2.0.41",17    "huggingface-hub>=0.20.0",18    "fastapi-mcp==0.4.0",19    "openai>=1.106.1",20    "mcp-agent==0.2.6",21    # Used by the custom Gradio web UI (server/web_ui.py).22    "gradio>=4.0.0",23]24 25[project.optional-dependencies]26dev = [27    "pytest>=8.0.0",28    "pytest-cov>=4.0.0",29    "pytest-asyncio>=0.23.0",30]31 32[project.scripts]33server = "agent_world_model_env.server.app:main"34 35[tool.setuptools]36include-package-data = true37packages = [38    "agent_world_model_env",39    "agent_world_model_env.server",40]41[tool.setuptools.package-dir]42"agent_world_model_env" = "."43"agent_world_model_env.server" = "server"44