RFTSystems commited on
Commit
4fb3c2e
·
verified ·
1 Parent(s): beae359

Create modules/codex_viewer.py

Browse files
Files changed (1) hide show
  1. modules/codex_viewer.py +11 -0
modules/codex_viewer.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Author: Liam Grinstead
2
+ # Loads symbolic glossary, tier variables, and operator tables
3
+
4
+ from codex.codex_consciousness import SYMBOLIC_GLOSSARY, TIER_VARIABLES, SYMBOLIC_OPERATORS
5
+
6
+ def load_codex():
7
+ return {
8
+ "Glossary": SYMBOLIC_GLOSSARY,
9
+ "Tier Variables": TIER_VARIABLES,
10
+ "Operators": SYMBOLIC_OPERATORS
11
+ }