kdemon1011 commited on
Commit
4e482f3
·
verified ·
1 Parent(s): f0dcfd3

Upload folder using huggingface_hub

Browse files
README.md CHANGED
@@ -46,7 +46,7 @@ Use the **Playground** panel (right side) to interact with the environment. Each
46
  | `get_board_view` | `{}` | Get visible board (SVG + metadata) |
47
  | `get_status` | `{}` | Score, flags, cells revealed |
48
  | `reveal_cell` | `{"row": 0, "col": 0}` | Reveal a hidden cell (costs 1 step) |
49
- | `inspect_region` | `{"row": 3, "col": 3, "radius": 1}` | Peek at a region without revealing |
50
  | `flag_cell` | `{"row": 1, "col": 1}` | Mark cell as hazardous |
51
  | `unflag_cell` | `{"row": 1, "col": 1}` | Remove a hazard flag |
52
  | `move_viewport` | `{"row": 5, "col": 5}` | Move fog-of-war viewport (fog scenarios only) |
 
46
  | `get_board_view` | `{}` | Get visible board (SVG + metadata) |
47
  | `get_status` | `{}` | Score, flags, cells revealed |
48
  | `reveal_cell` | `{"row": 0, "col": 0}` | Reveal a hidden cell (costs 1 step) |
49
+ | `inspect_region` | `{"center_row": 3, "center_col": 3, "radius": 1}` | Peek at a region without revealing |
50
  | `flag_cell` | `{"row": 1, "col": 1}` | Mark cell as hazardous |
51
  | `unflag_cell` | `{"row": 1, "col": 1}` | Remove a hazard flag |
52
  | `move_viewport` | `{"row": 5, "col": 5}` | Move fog-of-war viewport (fog scenarios only) |
openenv_visual_memory.egg-info/PKG-INFO CHANGED
@@ -3,7 +3,7 @@ Name: openenv-visual-memory
3
  Version: 0.1.0
4
  Summary: Visual Memory environment for OpenEnv — hidden-state visual reasoning and planning under partial observability
5
  Requires-Python: >=3.10
6
- Requires-Dist: openenv-core @ git+https://github.com/meta-pytorch/OpenEnv.git@v0.2.1
7
  Requires-Dist: fastmcp>=0.2.0
8
  Requires-Dist: fastapi>=0.115.0
9
  Requires-Dist: uvicorn>=0.24.0
@@ -12,6 +12,8 @@ Requires-Dist: httpx>=0.25.0
12
  Requires-Dist: numpy>=1.24.0
13
  Requires-Dist: svgwrite>=1.4.0
14
  Requires-Dist: python-dotenv>=1.0.0
 
 
15
  Provides-Extra: dev
16
  Requires-Dist: pytest>=8.0.0; extra == "dev"
17
  Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
 
3
  Version: 0.1.0
4
  Summary: Visual Memory environment for OpenEnv — hidden-state visual reasoning and planning under partial observability
5
  Requires-Python: >=3.10
6
+ Requires-Dist: openenv-core @ git+https://github.com/meta-pytorch/OpenEnv.git@v0.2.3
7
  Requires-Dist: fastmcp>=0.2.0
8
  Requires-Dist: fastapi>=0.115.0
9
  Requires-Dist: uvicorn>=0.24.0
 
12
  Requires-Dist: numpy>=1.24.0
13
  Requires-Dist: svgwrite>=1.4.0
14
  Requires-Dist: python-dotenv>=1.0.0
15
+ Requires-Dist: litellm>=1.0.0
16
+ Requires-Dist: pyyaml>=6.0.0
17
  Provides-Extra: dev
18
  Requires-Dist: pytest>=8.0.0; extra == "dev"
19
  Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
openenv_visual_memory.egg-info/SOURCES.txt CHANGED
@@ -3,17 +3,39 @@ __init__.py
3
  client.py
4
  models.py
5
  openenv.yaml
 
6
  pyproject.toml
7
  ./__init__.py
8
  ./client.py
9
  ./models.py
10
  ./openenv.yaml
 
 
 
 
 
11
  openenv_visual_memory.egg-info/PKG-INFO
12
  openenv_visual_memory.egg-info/SOURCES.txt
13
  openenv_visual_memory.egg-info/dependency_links.txt
14
  openenv_visual_memory.egg-info/entry_points.txt
15
  openenv_visual_memory.egg-info/requires.txt
16
  openenv_visual_memory.egg-info/top_level.txt
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  server/__init__.py
18
  server/app.py
19
  server/engine.py
 
3
  client.py
4
  models.py
5
  openenv.yaml
6
+ play_server.py
7
  pyproject.toml
8
  ./__init__.py
9
  ./client.py
10
  ./models.py
11
  ./openenv.yaml
12
+ ./play_server.py
13
+ ./run_eval.py
14
+ agent/__init__.py
15
+ agent/llm.py
16
+ agent/runner.py
17
  openenv_visual_memory.egg-info/PKG-INFO
18
  openenv_visual_memory.egg-info/SOURCES.txt
19
  openenv_visual_memory.egg-info/dependency_links.txt
20
  openenv_visual_memory.egg-info/entry_points.txt
21
  openenv_visual_memory.egg-info/requires.txt
22
  openenv_visual_memory.egg-info/top_level.txt
23
+ rewards/__init__.py
24
+ rewards/base.py
25
+ rewards/checks.py
26
+ rewards/transforms.py
27
+ scenarios/__init__.py
28
+ scenarios/ambiguous_cluster_10x10.json
29
+ scenarios/cascading_deduction_11x11.json
30
+ scenarios/decoy_minefield_8x10.json
31
+ scenarios/definitions.py
32
+ scenarios/delayed_recall_keys_8x8.json
33
+ scenarios/directional_trap_8x8.json
34
+ scenarios/flash_fade_minefield_7x7.json
35
+ scenarios/fog_key_hunt_8x8.json
36
+ scenarios/fog_labyrinth_10x10.json
37
+ scenarios/partial_intel_9x9.json
38
+ scenarios/safe_zone_identification_9x9.json
39
  server/__init__.py
40
  server/app.py
41
  server/engine.py
openenv_visual_memory.egg-info/requires.txt CHANGED
@@ -1,4 +1,4 @@
1
- openenv-core @ git+https://github.com/meta-pytorch/OpenEnv.git@v0.2.1
2
  fastmcp>=0.2.0
3
  fastapi>=0.115.0
4
  uvicorn>=0.24.0
@@ -7,6 +7,8 @@ httpx>=0.25.0
7
  numpy>=1.24.0
8
  svgwrite>=1.4.0
9
  python-dotenv>=1.0.0
 
 
10
 
11
  [dev]
12
  pytest>=8.0.0
 
1
+ openenv-core @ git+https://github.com/meta-pytorch/OpenEnv.git@v0.2.3
2
  fastmcp>=0.2.0
3
  fastapi>=0.115.0
4
  uvicorn>=0.24.0
 
7
  numpy>=1.24.0
8
  svgwrite>=1.4.0
9
  python-dotenv>=1.0.0
10
+ litellm>=1.0.0
11
+ pyyaml>=6.0.0
12
 
13
  [dev]
14
  pytest>=8.0.0
server/app.py CHANGED
@@ -42,7 +42,7 @@ Use the **Playground** (right panel) to interact. Enter a **Tool Name** and **Ar
42
  | `get_board_view` | `{}` | See the board (SVG) |
43
  | `get_status` | `{}` | Score, flags, progress |
44
  | `reveal_cell` | `{"row": 0, "col": 0}` | Uncover a cell (costs 1 step) |
45
- | `inspect_region` | `{"row": 3, "col": 3, "radius": 1}` | Peek without revealing |
46
  | `recall_log` | `{}` | Review all signals found |
47
 
48
  #### 3. Flag hazards & submit
 
42
  | `get_board_view` | `{}` | See the board (SVG) |
43
  | `get_status` | `{}` | Score, flags, progress |
44
  | `reveal_cell` | `{"row": 0, "col": 0}` | Uncover a cell (costs 1 step) |
45
+ | `inspect_region` | `{"center_row": 3, "center_col": 3, "radius": 1}` | Peek without revealing |
46
  | `recall_log` | `{}` | Review all signals found |
47
 
48
  #### 3. Flag hazards & submit