app.py
CHANGED
|
@@ -17,7 +17,7 @@ def get_completion(prompt, model="gpt-3.5-turbo"):
|
|
| 17 |
)
|
| 18 |
return response.choices[0].message["content"]
|
| 19 |
|
| 20 |
-
def greet(company, solution,
|
| 21 |
pitch = f"""My company, {company} is developing {solution} to help {target_customer} {problem} with {features}"""
|
| 22 |
return json.dumps(pitch)
|
| 23 |
|
|
|
|
| 17 |
)
|
| 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 |
return json.dumps(pitch)
|
| 23 |
|