Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -113,7 +113,7 @@ def get_instructions_for_param(param_value, df, col):
|
|
113 |
|
114 |
def format_instruction_string(instr):
|
115 |
terms = [t.strip() for t in instr.split(',') if t.strip()]
|
116 |
-
return "
|
117 |
|
118 |
def generate_display_prompts(description, product_name, benefits, key_message, chosen_approach,
|
119 |
gender, generation, psychotype, business_stage, industry, opf):
|
|
|
113 |
|
114 |
def format_instruction_string(instr):
|
115 |
terms = [t.strip() for t in instr.split(',') if t.strip()]
|
116 |
+
return ", ".join(terms) if terms else ""
|
117 |
|
118 |
def generate_display_prompts(description, product_name, benefits, key_message, chosen_approach,
|
119 |
gender, generation, psychotype, business_stage, industry, opf):
|