app.py
CHANGED
@@ -18,9 +18,7 @@ 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 |
-
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. \
|
|
|
18 |
return response.choices[0].message["content"]
|
19 |
|
20 |
def greet(company, solution, target_customer, problem, features):
|
21 |
+
pitch = f"""My company, {company} is developing {solution} to help {target_customer} {problem} with {features}"""
|
|
|
|
|
22 |
prompt = f"""
|
23 |
Determine the product or solution, the problem being solved, features, target customer that are being discussed in the \
|
24 |
following text, which is delimited by triple backticks. Then, pretend that you are the target customer. \
|