app.py
CHANGED
@@ -18,11 +18,10 @@ def get_completion(prompt, model="gpt-3.5-turbo"):
|
|
18 |
return response.choices[0].message["content"]
|
19 |
|
20 |
def greet(company, solution, target_customer, problem, features):
|
21 |
-
|
22 |
pitch = f"""
|
23 |
My company, {company} is developing {solution} to help {target_customer} {problem} with {features}
|
24 |
"""
|
25 |
-
|
26 |
Determine the product or solution, the problem being solved, features, target customer that are being discussed in the \
|
27 |
following text, which is delimited by triple backticks. Then, pretend that you are the target customer. \
|
28 |
State if you would use this product and elaborate on why. Also state if you would pay for it and elaborate on why.\
|
|
|
18 |
return response.choices[0].message["content"]
|
19 |
|
20 |
def greet(company, solution, target_customer, problem, features):
|
|
|
21 |
pitch = f"""
|
22 |
My company, {company} is developing {solution} to help {target_customer} {problem} with {features}
|
23 |
"""
|
24 |
+
prompt = f"""
|
25 |
Determine the product or solution, the problem being solved, features, target customer that are being discussed in the \
|
26 |
following text, which is delimited by triple backticks. Then, pretend that you are the target customer. \
|
27 |
State if you would use this product and elaborate on why. Also state if you would pay for it and elaborate on why.\
|