CoolFace
Apppublic

sadhana33/openenv-project

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
package.json29 linesDownload Raw Back to root
1{2  "name": "openenv-project",3  "version": "1.0.0",4  "description": "A complete, real-world OpenEnv environment that AI agents can learn from through the standard step()/reset()/state() API",5  "main": "index.js",6  "scripts": {7    "start": "node index.js",8    "test": "node agent.js",9    "demo": "node agent.js"10  },11  "keywords": [12    "reinforcement-learning",13    "openenv",14    "gridworld",15    "ai",16    "agent",17    "q-learning",18    "gym",19    "environment"20  ],21  "author": "OpenEnv Team",22  "license": "ISC",23  "dependencies": {24    "express": "^5.2.1"25  },26  "engines": {27    "node": ">=14.0.0"28  }29}