daniellegauthier commited on
Commit
ca33b05
·
verified ·
1 Parent(s): 617928b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -98,15 +98,16 @@ CSV_PATH = "la matrice plus.csv"
98
  SEQUENCE_ALIASES = {
99
  "Auto (recommend)": "auto",
100
  "Direct": "direct",
101
- "Fem": "feminine", # CSV row is 'feminine', image is 'fem pathway.png'
102
  "Knot": "knot",
103
- "Masc": "masc",
104
  "Pain": "pain",
105
  "Prayer": "prayer",
106
  "Precise": "precise",
107
  "Practical": "practical",
108
  "Plot": "plot",
109
- # add more later (e.g., "Spiritual", "Sad") if/when images are added
 
110
  }
111
 
112
  SEQUENCE_IMAGE_FILES = {
@@ -119,7 +120,8 @@ SEQUENCE_IMAGE_FILES = {
119
  "precise": "precise pathway.png",
120
  "practical": "practical pathway.png",
121
  "plot": "plot pathway.png",
122
- # add "spiritual": "...png", "sad": "...png" when you drop them in
 
123
  }
124
 
125
  def load_pathway_phrases(csv_path: str) -> Dict[str, str]:
 
98
  SEQUENCE_ALIASES = {
99
  "Auto (recommend)": "auto",
100
  "Direct": "direct",
101
+ "Fem": "feminine",
102
  "Knot": "knot",
103
+ "Masc": "masculine",
104
  "Pain": "pain",
105
  "Prayer": "prayer",
106
  "Precise": "precise",
107
  "Practical": "practical",
108
  "Plot": "plot",
109
+ "Spiritual": "spiritual",
110
+ "Sad": "sad"
111
  }
112
 
113
  SEQUENCE_IMAGE_FILES = {
 
120
  "precise": "precise pathway.png",
121
  "practical": "practical pathway.png",
122
  "plot": "plot pathway.png",
123
+ "spiritual": "spiritual pathway.png",
124
+ "sad": "sad pathway.png"
125
  }
126
 
127
  def load_pathway_phrases(csv_path: str) -> Dict[str, str]: