Spaces:
Sleeping
Sleeping
Update bullets/generator.py
Browse files- bullets/generator.py +2 -3
bullets/generator.py
CHANGED
@@ -6,10 +6,9 @@ def create_bullet_instruction(product_name=None, uploaded_content=None, target_a
|
|
6 |
The model will randomly choose between different bullet formulas.
|
7 |
|
8 |
Args:
|
9 |
-
|
10 |
product_name: Name of the product or service
|
11 |
uploaded_content: Content from uploaded files (if any)
|
12 |
-
target_audience: Specific target audience for the bullets
|
13 |
skills: User's skills and expertise
|
14 |
|
15 |
Returns:
|
@@ -182,7 +181,7 @@ def create_bullet_instruction(product_name=None, uploaded_content=None, target_a
|
|
182 |
AVAILABLE INFORMATION FOR ANALYSIS:
|
183 |
|
184 |
1. TARGET AUDIENCE DESCRIPTION:
|
185 |
-
{
|
186 |
|
187 |
2. PRODUCT/SERVICE NAME:
|
188 |
{product_name if product_name else "No specific product name provided."}
|
|
|
6 |
The model will randomly choose between different bullet formulas.
|
7 |
|
8 |
Args:
|
9 |
+
target_audience: Description of the target audience
|
10 |
product_name: Name of the product or service
|
11 |
uploaded_content: Content from uploaded files (if any)
|
|
|
12 |
skills: User's skills and expertise
|
13 |
|
14 |
Returns:
|
|
|
181 |
AVAILABLE INFORMATION FOR ANALYSIS:
|
182 |
|
183 |
1. TARGET AUDIENCE DESCRIPTION:
|
184 |
+
{target_audience if target_audience else "No specific target audience provided."}
|
185 |
|
186 |
2. PRODUCT/SERVICE NAME:
|
187 |
{product_name if product_name else "No specific product name provided."}
|