Spaces:
Sleeping
Sleeping
Create modules/codex_viewer.py
Browse files- 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 |
+
}
|