CoolFace
Apppublic

hanabhi/gridworld-env

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
mkdocs.yml88 linesDownload Raw Back to docs
1site_name: OpenEnv Documentation2site_description: Official documentation for the OpenEnv agentic execution framework3site_url: https://meta-pytorch.github.io/OpenEnv4repo_url: https://github.com/meta-pytorch/OpenEnv5repo_name: meta-pytorch/OpenEnv6 7docs_dir: .8site_dir: ../site9 10theme:11  name: material12  font:13    text: Inter14  logo: https://github.com/user-attachments/assets/2700a971-e5d6-4036-b03f-2f89c979160915  palette:16    - scheme: slate17      primary: grey18      accent: blue grey19  features:20    - navigation.expand21    - navigation.top22    - toc.integrate23    - content.code.copy24    - navigation.instant25 26extra_css:27  - styles/theme.css28 29plugins:30  - search31  - include-markdown:32      rewrite_relative_urls: true33      opening_tag: "--8<--"34      closing_tag: ""35      directives:36        include-markdown: ""37  - mkdocstrings:38      handlers:39        python:40          paths:41            - ../src42          options:43            show_source: false44            members_order: source45 46markdown_extensions:47  - admonition48  - attr_list49  - pymdownx.details50  - pymdownx.superfences51  - def_list52  - footnotes53  - tables54  - toc:55      permalink: true56      toc_depth: 157  - pymdownx.blocks.admonition:58      types:59        - name: note60        - name: tip61        - name: important62        - name: warning63        - name: caution64  - meta65 66watch:67  - ../src/openenv/core68  - ../src/openenv/cli69  - ../src/openenv/auto70 71nav:72  - Get Started:73    - What is OpenEnv?: index.md74    - Quick Start: quickstart.md75    - Auto-Discovery API: auto-discovery.md76    - Building an Environment: environment-builder.md77    - Contributing Environments: contributing-envs.md78    - Customizing the Web UI: customizing-web-ui.md79  - Tutorials:80    - OpenEnv Tutorial: tutorials/openenv-tutorial.md81    - Wordle GRPO with TRL: tutorials/wordle-grpo.md82  - Environments: environments.md83 84  - API Reference:85    - Core: core.md86    - CLI: cli.md87 88