Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -178,7 +178,7 @@ def generate_transformed_output(prompt, gender_option, top_cat, sub_cat, species
|
|
178 |
furry_path = f"{top_cat} > {sub_cat} > {species_item}" if (top_cat and sub_cat and species_item) else "unknown"
|
179 |
species_data = FURRY_DATA.get(top_cat, {}).get(sub_cat, [])
|
180 |
species_details = next((item["Details"] for item in species_data if item["Name"] == species_item), "unknown details")
|
181 |
-
gender_desc =
|
182 |
extra_line = f"\nfurry {gender_desc} {furry_path} {species_details} anthro character\n"
|
183 |
else:
|
184 |
extra_line = ""
|
|
|
178 |
furry_path = f"{top_cat} > {sub_cat} > {species_item}" if (top_cat and sub_cat and species_item) else "unknown"
|
179 |
species_data = FURRY_DATA.get(top_cat, {}).get(sub_cat, [])
|
180 |
species_details = next((item["Details"] for item in species_data if item["Name"] == species_item), "unknown details")
|
181 |
+
gender_desc = furry_gender.lower() if furry_gender else "neutral"
|
182 |
extra_line = f"\nfurry {gender_desc} {furry_path} {species_details} anthro character\n"
|
183 |
else:
|
184 |
extra_line = ""
|