CoolFace
Apppublic

RohanExploit/Meta-hackathon

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
openenv.yaml42 linesDownload Raw Back to root
1name: "MultiChannelRetailEnv"2description: "Multi-channel retail with disruption recovery - realistic inventory/pricing optimization"3version: "0.2.0"4author: "OpenEnv Hackathon"5 6variables:7  - API_BASE_URL8  - MODEL_NAME9  - OPENAI_API_KEY10  - HF_TOKEN11  - ENV_BASE_URL12 13requirements:14  - python >=3.1015  - fastapi >=0.100.016  - pydantic >=2.0.017  - uvicorn >=0.23.018  - numpy >=1.24.019  - requests >=2.31.020  - openai >=1.0.021 22tasks:23  - easy24  - medium_simple25  - medium_challenge26  - hard27  - expert28 29endpoints:30  - POST /reset31  - POST /step32  - GET /state33  - GET /tasks34  - POST /evaluate35  - GET /health36  - POST /live/start37  - POST /live/stop38  - GET /live/status39  - GET /live/latest40  - GET /live/stream41  - GET /dashboard42