glitchfilter commited on
Commit
ce249e9
·
verified ·
1 Parent(s): 04121f8

Upload mkdocs.yml with huggingface_hub

Browse files
Files changed (1) hide show
  1. mkdocs.yml +66 -0
mkdocs.yml ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ site_name: Methanol APC Environment
2
+ site_description: RL-Powered Autonomous Process Control for Industrial Methanol Reactors
3
+ site_url: https://bhavneet1492.github.io/openenv-methanol-apc/
4
+ repo_url: https://github.com/Bhavneet1492/openenv-methanol-apc
5
+ repo_name: Bhavneet1492/openenv-methanol-apc
6
+
7
+ theme:
8
+ name: material
9
+ palette:
10
+ - scheme: slate
11
+ primary: blue
12
+ accent: teal
13
+ toggle:
14
+ icon: material/brightness-7
15
+ name: Light mode
16
+ - scheme: default
17
+ primary: blue
18
+ accent: teal
19
+ toggle:
20
+ icon: material/brightness-4
21
+ name: Dark mode
22
+ features:
23
+ - navigation.tabs
24
+ - navigation.sections
25
+ - navigation.expand
26
+ - navigation.top
27
+ - search.highlight
28
+ - content.code.copy
29
+ icon:
30
+ repo: fontawesome/brands/github
31
+
32
+ markdown_extensions:
33
+ - admonition
34
+ - pymdownx.details
35
+ - pymdownx.superfences
36
+ - pymdownx.tabbed:
37
+ alternate_style: true
38
+ - pymdownx.highlight:
39
+ anchor_linenums: true
40
+ - pymdownx.inlinehilite
41
+ - tables
42
+ - attr_list
43
+ - md_in_html
44
+
45
+ nav:
46
+ - Home: index.md
47
+ - Getting Started:
48
+ - Quick Start: quickstart.md
49
+ - Installation: installation.md
50
+ - Integrations:
51
+ - Overview: integrations/index.md
52
+ - DWSIM: integrations/dwsim.md
53
+ - Cantera: integrations/cantera.md
54
+ - ChemSep: integrations/chemsep.md
55
+ - Azure Digital Twins: integrations/azure-digital-twins.md
56
+ - OPC-UA Bridge: integrations/opcua.md
57
+ - Redis State Store: integrations/redis-state-store.md
58
+ - API Reference:
59
+ - Action & Observation: api/models.md
60
+ - Environment: api/environment.md
61
+ - Agents: api/agents.md
62
+ - Physics Engine: api/reactor.md
63
+ - Examples:
64
+ - Baselines: examples/baselines.md
65
+ - TRL / Unsloth Training: examples/trl-training.md
66
+ - TRL / Unsloth: examples/trl-training.md